idmission-web-sdk 1.0.309 → 1.0.310

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.
@@ -1,10 +1,11 @@
1
1
  import * as React from 'react';
2
- import { ThemeInput } from '../../../themes';
3
- import { IdVideoCaptureGuidesProps } from '../../../components/video_id/IdVideoCaptureGuides';
2
+ import { ThemeInput } from '../../themes';
3
+ import { IdVideoCaptureGuidesProps } from '../../components/video_id/IdVideoCaptureGuides';
4
4
  declare const meta: {
5
5
  title: string;
6
6
  component: (args: IdVideoCaptureGuidesProps & {
7
7
  theme?: ThemeInput;
8
+ transition?: boolean;
8
9
  }) => React.JSX.Element;
9
10
  args: {
10
11
  assets: {
@@ -18,7 +19,22 @@ declare const meta: {
18
19
  argTypes: {};
19
20
  };
20
21
  export default meta;
21
- export declare const DefaultTheme: {};
22
+ export declare const AllStates: {
23
+ args: {
24
+ transition: true;
25
+ };
26
+ };
27
+ export declare const IDCardFront: {};
28
+ export declare const IDCardBack: {
29
+ args: {
30
+ requestedAction: "SHOW_ID_BACK";
31
+ };
32
+ };
33
+ export declare const FlipIdCard: {
34
+ args: {
35
+ requestedAction: "FLIP_ID";
36
+ };
37
+ };
22
38
  export declare const NoTheme: {
23
39
  args: {
24
40
  theme: "none";
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const webSdkVersion = "1.0.309";
1
+ export declare const webSdkVersion = "1.0.310";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "idmission-web-sdk",
3
- "version": "1.0.309",
3
+ "version": "1.0.310",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/sdk2.esm.js",
@@ -1,34 +0,0 @@
1
- import * as React from 'react';
2
- import { FlipIdPromptProps } from '../../../components/id_capture/FlipIdPrompt';
3
- import { ThemeInput } from '../../../themes';
4
- declare const meta: {
5
- title: string;
6
- component: (props: FlipIdPromptProps & {
7
- theme?: ThemeInput;
8
- }) => React.JSX.Element;
9
- args: {
10
- assets: {
11
- frontPortraitGuidesImageUrl: string;
12
- frontLandscapeGuidesImageUrl: string;
13
- backPortraitGuidesImageUrl: string;
14
- backLandscapeGuidesImageUrl: string;
15
- };
16
- };
17
- };
18
- export default meta;
19
- export declare const DefaultTheme: {};
20
- export declare const NoTheme: {
21
- args: {
22
- theme: "none";
23
- };
24
- };
25
- export declare const WithUserSuppliedPadding: {
26
- args: {
27
- padding: number;
28
- };
29
- };
30
- export declare const WithUserSuppliedGuideBoxPadding: {
31
- args: {
32
- imagePadding: number;
33
- };
34
- };
@@ -1,21 +0,0 @@
1
- import * as React from 'react';
2
- import { IdCaptureGuideOverlayProps } from '../../../components/id_capture/IdCaptureGuideOverlay';
3
- import { ThemeInput } from '../../../themes';
4
- declare const meta: {
5
- title: string;
6
- component: (args: IdCaptureGuideOverlayProps & {
7
- theme?: ThemeInput;
8
- }) => React.JSX.Element;
9
- args: {
10
- instruction: string;
11
- portraitGuidesImageUrl: string;
12
- landscapeGuidesImageUrl: string;
13
- };
14
- };
15
- export default meta;
16
- export declare const DefaultTheme: {};
17
- export declare const NoTheme: {
18
- args: {
19
- theme: "none";
20
- };
21
- };