idmission-web-sdk 2.1.37 → 2.1.39

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.
Files changed (29) hide show
  1. package/dist/components/common/LoaderButton.d.ts +1 -1
  2. package/dist/components/face_liveness/FaceCaptureGuideOverlay.d.ts +2 -6
  3. package/dist/components/face_liveness/FaceLivenessCapture.d.ts +2 -8
  4. package/dist/components/face_liveness/FaceLivenessFailure.d.ts +1 -2
  5. package/dist/components/face_liveness/FaceLivenessWizard.d.ts +2 -6
  6. package/dist/components/id_capture/IdCaptureStateProvider.d.ts +2 -0
  7. package/dist/components/selfie_capture/SelfieCapture.d.ts +3 -8
  8. package/dist/components/selfie_capture/SelfieCaptureLoadingGraphic.d.ts +1 -14
  9. package/dist/components/selfie_capture/SelfieGuidanceModelsProvider.d.ts +2 -2
  10. package/dist/components/video_id/IdVideoCaptureFlipIdPrompt.d.ts +5 -10
  11. package/dist/components/video_id/IdVideoCaptureGuides.d.ts +3 -11
  12. package/dist/lib/locales/es/translation.d.ts +1 -2
  13. package/dist/lib/locales/index.d.ts +1 -2
  14. package/dist/lib/models/DocumentDetection.d.ts +7 -3
  15. package/dist/lib/models/Focus.d.ts +4 -0
  16. package/dist/sdk2.cjs.development.js +924 -1439
  17. package/dist/sdk2.cjs.development.js.map +1 -1
  18. package/dist/sdk2.cjs.production.js +1 -1
  19. package/dist/sdk2.cjs.production.js.map +1 -1
  20. package/dist/sdk2.esm.js +924 -1439
  21. package/dist/sdk2.esm.js.map +1 -1
  22. package/dist/sdk2.umd.development.js +924 -1439
  23. package/dist/sdk2.umd.development.js.map +1 -1
  24. package/dist/sdk2.umd.production.js +1 -1
  25. package/dist/sdk2.umd.production.js.map +1 -1
  26. package/dist/themes/index.d.ts +0 -5
  27. package/dist/version.d.ts +1 -1
  28. package/package.json +1 -1
  29. package/dist/components/video_id/IdVideoCaptureGuidesCommon.d.ts +0 -20
@@ -41,10 +41,6 @@ export interface Theme {
41
41
  backgroundColor?: string;
42
42
  textColor?: string;
43
43
  };
44
- outline?: {
45
- backgroundColor?: string;
46
- textColor?: string;
47
- };
48
44
  };
49
45
  guidanceMessages?: {
50
46
  default?: {
@@ -111,7 +107,6 @@ export interface Theme {
111
107
  guides?: {
112
108
  unsatisfiedColor?: string;
113
109
  satisfiedColor?: string;
114
- failureColor?: string;
115
110
  };
116
111
  capturePreview?: {
117
112
  disabled?: boolean;
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const webSdkVersion = "2.1.37";
1
+ export declare const webSdkVersion = "2.1.39";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "idmission-web-sdk",
3
- "version": "2.1.37",
3
+ "version": "2.1.39",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/sdk2.esm.js",
@@ -1,20 +0,0 @@
1
- import React from 'react';
2
- export declare const IdCardGuideImageContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<React.HTMLAttributes<HTMLDivElement> & {
3
- status?: IdCardGuideStatus;
4
- borderWidth?: number;
5
- borderRadius?: number;
6
- borderColor?: string;
7
- }, {
8
- $isVisible?: boolean;
9
- }>> & string & Omit<typeof IdCardBorder, keyof React.Component<any, {}, any>>;
10
- export declare const IdCardGuideImage: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {
11
- $isMirrored?: boolean;
12
- }>> & string;
13
- export type IdCardGuideStatus = 'disabled' | 'ready' | 'capturing';
14
- declare function IdCardBorder({ children, status, borderWidth, borderRadius, borderColor, ...props }: React.HTMLAttributes<HTMLDivElement> & {
15
- status?: IdCardGuideStatus;
16
- borderWidth?: number;
17
- borderRadius?: number;
18
- borderColor?: string;
19
- }): React.JSX.Element;
20
- export {};