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