@regulaforensics/idv-gui 3.3.308 → 3.4.310-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 +18 -1
- package/dist/main.iife.js +4 -4
- package/dist/main.js +3830 -2932
- package/dist/main.umd.cjs +4 -4
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ export declare class GuiIdv extends BaseModule<GuiModuleProps, GuiModuleConfig>
|
|
|
47
47
|
private render;
|
|
48
48
|
disconnectedCallback(): void;
|
|
49
49
|
static isReady(): boolean;
|
|
50
|
-
static getSupportedTemplates: () => ("INFO" | "INFO_DETAILS" | "STATUS" | "PROGRESS" | "QUESTIONS" | "CAMERA" | "GALLERY" | "GEOLOCATION")[];
|
|
50
|
+
static getSupportedTemplates: () => ("INFO" | "INFO_DETAILS" | "STATUS" | "PROGRESS" | "QUESTIONS" | "CAMERA" | "GALLERY" | "GEOLOCATION" | "DEVICE_TRANSFER")[];
|
|
51
51
|
static initialize(_modulesConfig: Record<string, unknown>): void;
|
|
52
52
|
static deinitialize(): void;
|
|
53
53
|
static getIdentifier: () => string;
|
|
@@ -66,6 +66,7 @@ export declare const GuiIdvSteps: {
|
|
|
66
66
|
readonly CAMERA: "CAMERA";
|
|
67
67
|
readonly GALLERY: "GALLERY";
|
|
68
68
|
readonly GEOLOCATION: "GEOLOCATION";
|
|
69
|
+
readonly DEVICE_TRANSFER: "DEVICE_TRANSFER";
|
|
69
70
|
};
|
|
70
71
|
|
|
71
72
|
export declare type GuiIdvSteps = (typeof GuiIdvSteps)[keyof typeof GuiIdvSteps];
|
|
@@ -121,6 +122,10 @@ export declare type GuiModuleProps = {
|
|
|
121
122
|
templateLayout: UIQuestionsScreenClientConfig;
|
|
122
123
|
dataSource?: QuestionsDataSource | null;
|
|
123
124
|
properties?: SessionPropertiesItem[];
|
|
125
|
+
} | {
|
|
126
|
+
templateId: typeof GuiIdvSteps.DEVICE_TRANSFER;
|
|
127
|
+
templateLayout: UIDeviceTransferScreenClientConfig;
|
|
128
|
+
url?: string;
|
|
124
129
|
});
|
|
125
130
|
|
|
126
131
|
export declare const IDV_UI_ICONS: {
|
|
@@ -319,6 +324,18 @@ declare type UIDetailsList = {
|
|
|
319
324
|
cornerRadius: number;
|
|
320
325
|
};
|
|
321
326
|
|
|
327
|
+
declare type UIDeviceTransferScreenClientConfig = {
|
|
328
|
+
header?: UIInfoHeaderView;
|
|
329
|
+
title?: UILabel;
|
|
330
|
+
description?: UILabel;
|
|
331
|
+
buttons?: UIButton[];
|
|
332
|
+
footer?: UIInfoFooterView;
|
|
333
|
+
backgroundColor?: string;
|
|
334
|
+
qr?: {
|
|
335
|
+
color?: string;
|
|
336
|
+
};
|
|
337
|
+
};
|
|
338
|
+
|
|
322
339
|
declare type UIDropdownControl = DropdownControl & {
|
|
323
340
|
title: UILabel;
|
|
324
341
|
};
|