@regulaforensics/idv-gui 3.10.523-nightly → 3.10.526-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 +9 -0
- package/dist/main.iife.js +3 -3
- package/dist/main.js +954 -932
- package/dist/main.umd.cjs +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -147,6 +147,7 @@ export declare type GuiModuleProps = {
|
|
|
147
147
|
templateId: typeof GuiIdvSteps.GEOLOCATION;
|
|
148
148
|
templateLayout: UIGeolocationScreenClientConfig;
|
|
149
149
|
getLocationTimeout?: number;
|
|
150
|
+
locationAccuracy?: LocationAccuracy;
|
|
150
151
|
} | {
|
|
151
152
|
templateId: typeof GuiIdvSteps.QUESTIONS;
|
|
152
153
|
templateLayout: UIQuestionsScreenClientConfig;
|
|
@@ -218,9 +219,17 @@ declare type JsonObject = {
|
|
|
218
219
|
|
|
219
220
|
declare type JsonValue = string | number | boolean | null | JsonObject | JsonArray;
|
|
220
221
|
|
|
222
|
+
declare enum LocationAccuracy {
|
|
223
|
+
HIGH = "HIGH",
|
|
224
|
+
BALANCED = "BALANCED",
|
|
225
|
+
LOW = "LOW",
|
|
226
|
+
PASSIVE = "PASSIVE"
|
|
227
|
+
}
|
|
228
|
+
|
|
221
229
|
declare type LocationSettings = {
|
|
222
230
|
askEveryTime: boolean;
|
|
223
231
|
getLocationTimeout: number;
|
|
232
|
+
locationAccuracy: LocationAccuracy;
|
|
224
233
|
};
|
|
225
234
|
|
|
226
235
|
declare type PopupActionButton = {
|