idmission-web-sdk 2.1.39 → 2.1.41

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 (34) hide show
  1. package/dist/components/common/LoaderButton.d.ts +1 -1
  2. package/dist/components/face_liveness/FaceCaptureGuideOverlay.d.ts +6 -2
  3. package/dist/components/face_liveness/FaceLivenessCapture.d.ts +8 -2
  4. package/dist/components/face_liveness/FaceLivenessFailure.d.ts +2 -1
  5. package/dist/components/face_liveness/FaceLivenessWizard.d.ts +6 -2
  6. package/dist/components/id_capture/FlipIdPrompt.d.ts +12 -17
  7. package/dist/components/id_capture/IdCaptureFitGuide.d.ts +10 -6
  8. package/dist/components/id_capture/IdCaptureGuideOverlay.d.ts +48 -32
  9. package/dist/components/id_capture/IdCaptureGuides.d.ts +14 -7
  10. package/dist/components/id_capture/IdCaptureStateProvider.d.ts +0 -2
  11. package/dist/components/id_capture/IdCaptureWizard.d.ts +4 -4
  12. package/dist/components/selfie_capture/SelfieCapture.d.ts +8 -3
  13. package/dist/components/selfie_capture/SelfieCaptureLoadingGraphic.d.ts +14 -1
  14. package/dist/components/selfie_capture/SelfieGuidanceModelsProvider.d.ts +2 -2
  15. package/dist/components/video_id/IdVideoCaptureFlipIdPrompt.d.ts +25 -6
  16. package/dist/components/video_id/IdVideoCaptureGuides.d.ts +12 -3
  17. package/dist/components/video_id/IdVideoCaptureGuidesCommon.d.ts +23 -0
  18. package/dist/lib/locales/es/translation.d.ts +2 -1
  19. package/dist/lib/locales/index.d.ts +2 -1
  20. package/dist/lib/models/DocumentDetection.d.ts +3 -7
  21. package/dist/lib/models/Focus.d.ts +0 -4
  22. package/dist/sdk2.cjs.development.js +2543 -1861
  23. package/dist/sdk2.cjs.development.js.map +1 -1
  24. package/dist/sdk2.cjs.production.js +1 -1
  25. package/dist/sdk2.cjs.production.js.map +1 -1
  26. package/dist/sdk2.esm.js +2543 -1861
  27. package/dist/sdk2.esm.js.map +1 -1
  28. package/dist/sdk2.umd.development.js +2544 -1862
  29. package/dist/sdk2.umd.development.js.map +1 -1
  30. package/dist/sdk2.umd.production.js +1 -1
  31. package/dist/sdk2.umd.production.js.map +1 -1
  32. package/dist/themes/index.d.ts +5 -0
  33. package/dist/version.d.ts +1 -1
  34. package/package.json +1 -1
@@ -41,6 +41,10 @@ export interface Theme {
41
41
  backgroundColor?: string;
42
42
  textColor?: string;
43
43
  };
44
+ outline?: {
45
+ backgroundColor?: string;
46
+ textColor?: string;
47
+ };
44
48
  };
45
49
  guidanceMessages?: {
46
50
  default?: {
@@ -107,6 +111,7 @@ export interface Theme {
107
111
  guides?: {
108
112
  unsatisfiedColor?: string;
109
113
  satisfiedColor?: string;
114
+ failureColor?: string;
110
115
  };
111
116
  capturePreview?: {
112
117
  disabled?: boolean;
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const webSdkVersion = "2.1.39";
1
+ export declare const webSdkVersion = "2.1.41";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "idmission-web-sdk",
3
- "version": "2.1.39",
3
+ "version": "2.1.41",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/sdk2.esm.js",