@regulaforensics/idv-gui 3.2.283 → 3.2.285-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 +5 -2
- package/dist/main.iife.js +4 -4
- package/dist/main.js +1462 -1451
- package/dist/main.umd.cjs +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -97,6 +97,7 @@ export declare type GuiModuleProps = {
|
|
|
97
97
|
serviceToken?: string;
|
|
98
98
|
backgroundColor?: string;
|
|
99
99
|
selectionLimit?: number;
|
|
100
|
+
getLocationTimeout?: number;
|
|
100
101
|
};
|
|
101
102
|
}[keyof GuiModulePropsMap];
|
|
102
103
|
|
|
@@ -119,6 +120,7 @@ export declare type GuiModulePropsUnknown = {
|
|
|
119
120
|
serviceToken?: string;
|
|
120
121
|
backgroundColor?: string;
|
|
121
122
|
selectionLimit?: number;
|
|
123
|
+
getLocationTimeout?: number;
|
|
122
124
|
};
|
|
123
125
|
|
|
124
126
|
export declare const IDV_UI_ICONS: {
|
|
@@ -171,9 +173,9 @@ declare type JsonObject = {
|
|
|
171
173
|
|
|
172
174
|
declare type JsonValue = string | number | boolean | null | JsonObject | JsonArray;
|
|
173
175
|
|
|
174
|
-
declare type PerformType = (typeof
|
|
176
|
+
declare type PerformType = (typeof PerformTypes)[keyof typeof PerformTypes] | undefined;
|
|
175
177
|
|
|
176
|
-
declare const
|
|
178
|
+
declare const PerformTypes: {
|
|
177
179
|
readonly FORM: "form";
|
|
178
180
|
readonly DATA: "data";
|
|
179
181
|
};
|
|
@@ -358,6 +360,7 @@ declare type UIGeolocationScreenClientConfig = {
|
|
|
358
360
|
backgroundColor?: string;
|
|
359
361
|
popups: [UIGeolocationPopupSystemRestrictedOnly];
|
|
360
362
|
askEveryTime?: boolean;
|
|
363
|
+
getLocationTimeout?: number;
|
|
361
364
|
};
|
|
362
365
|
|
|
363
366
|
declare type UIImage = {
|