idmission-web-sdk 2.1.59 → 2.1.60

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.
@@ -0,0 +1,4 @@
1
+ export declare const Card: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
2
+ export declare const FlexCard: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<Omit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
3
+ ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
4
+ }, never>> & string;
@@ -18,3 +18,16 @@ export declare const OverlayContainer: import("styled-components/dist/types").IS
18
18
  export declare const OverlayInner: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
19
19
  export declare const OverlayImageContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
20
20
  export declare const OverlayImageRow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
21
+ export declare const GrayOverlayContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<Omit<Omit<{
22
+ ref?: import("react").RefCallback<HTMLDivElement>;
23
+ children: import("react").ReactNode;
24
+ className?: string;
25
+ heightOffset?: number;
26
+ style?: import("react").CSSProperties;
27
+ onClick?: () => void;
28
+ }, "ref"> & import("react").RefAttributes<HTMLDivElement>, "ref"> & {
29
+ ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
30
+ }, never>, never>> & string;
31
+ export declare const ButtonsColumn: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
32
+ export declare const WideButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("./LoaderButton").LoaderButtonProps, never>> & string & Omit<({ children, className, colors, disabled, finished, onClick, style, variant, }: import("./LoaderButton").LoaderButtonProps) => import("react").JSX.Element, keyof import("react").Component<any, {}, any>>;
33
+ export declare const WideBorderButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("./LoaderButton").LoaderButtonProps, never>, never>> & string;
@@ -1,4 +1,4 @@
1
- import React, { ReactElement } from 'react';
1
+ import { ReactElement } from 'react';
2
2
  import { LoaderButtonColors } from '../common/LoaderButton';
3
3
  import { CustomerSuppliedVerbiage } from '../../lib/locales';
4
4
  export type FaceLivenessFailureAssets = {
@@ -33,4 +33,3 @@ export type FaceLivenessFailureProps = {
33
33
  verbiage?: FaceLivenessFailureVerbiage;
34
34
  };
35
35
  export declare const FaceLivenessFailure: ({ canRetry, onRetryClick, onExitClick, assets, classNames, colors, verbiage: rawVerbiage, }: FaceLivenessFailureProps) => ReactElement;
36
- export declare const ButtonsRow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
@@ -1,11 +1,11 @@
1
- import React, { ReactElement } from 'react';
1
+ import { ReactElement } from 'react';
2
2
  import { CapturedDocuments } from './CapturedDocuments';
3
3
  import { LoaderButtonColors } from '../common/LoaderButton';
4
4
  import { CustomerSuppliedVerbiage } from '../../lib/locales';
5
- export declare const OverlayInstruction: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never>> & string;
6
5
  export type IdCaptureSuccessClassNames = {
7
6
  container?: string;
8
7
  inner?: string;
8
+ card?: string;
9
9
  heading?: string;
10
10
  imageContainer?: string;
11
11
  imageRow?: string;
@@ -2,14 +2,12 @@ import React, { ComponentType } from 'react';
2
2
  import { SignatureData } from '../signature_capture/data';
3
3
  import { CustomerSuppliedVerbiage } from '../../lib/locales';
4
4
  import { FaceCaptureGuideOverlayProps } from '../face_liveness/FaceCaptureGuideOverlay';
5
- import { VideoSignatureGuidesClassNames } from './VideoSignatureGuides';
6
5
  export type VideoSignatureCaptureClassNames = {
7
6
  container?: string;
8
7
  cameraFeed?: string;
9
8
  guidanceMessageContainer?: string;
10
9
  guidanceMessage?: string;
11
10
  exitCaptureBtn?: string;
12
- videoSignatureGuidesClassNames?: VideoSignatureGuidesClassNames;
13
11
  };
14
12
  export type VideoSignatureCaptureColors = {
15
13
  guidanceMessageBackgroundColor?: string;