@regulaforensics/idv-gui 3.2.242-nightly → 3.2.244-nightly

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/index.d.ts CHANGED
@@ -72,7 +72,7 @@ export declare class GuiIdv extends BaseModule<GuiModuleProps, GuiModuleConfig>
72
72
  private render;
73
73
  disconnectedCallback(): void;
74
74
  static isReady(): boolean;
75
- static getSupportedTemplates: () => ("INFO" | "INFO_DETAILS" | "STATUS" | "PROGRESS" | "QUESTIONS" | "CAMERA" | "GALLERY")[];
75
+ static getSupportedTemplates: () => ("INFO" | "INFO_DETAILS" | "STATUS" | "PROGRESS" | "QUESTIONS" | "CAMERA" | "GALLERY" | "GEOLOCATION")[];
76
76
  static initialize(_modulesConfig: Record<string, unknown>): void;
77
77
  static deinitialize(): void;
78
78
  static getIdentifier: () => string;
@@ -88,6 +88,7 @@ export declare const GuiIdvSteps: {
88
88
  readonly QUESTIONS: "QUESTIONS";
89
89
  readonly CAMERA: "CAMERA";
90
90
  readonly GALLERY: "GALLERY";
91
+ readonly GEOLOCATION: "GEOLOCATION";
91
92
  };
92
93
 
93
94
  export declare type GuiIdvSteps = (typeof GuiIdvSteps)[keyof typeof GuiIdvSteps];
@@ -123,6 +124,7 @@ declare type GuiModulePropsMap = {
123
124
  [GuiIdvSteps.QUESTIONS]: UIQuestionsScreenClientConfig;
124
125
  [GuiIdvSteps.CAMERA]: UICameraScreenClientConfig;
125
126
  [GuiIdvSteps.GALLERY]: UIGalleryScreenClientConfig;
127
+ [GuiIdvSteps.GEOLOCATION]: UIGeolocationScreenClientConfig;
126
128
  };
127
129
 
128
130
  export declare type GuiModulePropsUnknown = {
@@ -402,6 +404,24 @@ declare type UIGalleryScreenClientConfig = {
402
404
  selectionLimit?: number;
403
405
  };
404
406
 
407
+ declare type UIGeolocationScreenClientConfig = {
408
+ header?: UIInfoHeaderView;
409
+ title?: UILabel;
410
+ image?: UIImage;
411
+ description?: UILabel;
412
+ buttons?: UIButton[];
413
+ footer?: UIInfoFooterView;
414
+ backgroundColor?: string;
415
+ popup: {
416
+ image?: UIImage;
417
+ title?: UILabel;
418
+ message?: UILabel;
419
+ backgroundColor?: string;
420
+ closeButton: UIButton;
421
+ cornerRadius: number;
422
+ };
423
+ };
424
+
405
425
  declare type UIImage = {
406
426
  imageURL?: string;
407
427
  base64?: string;