@regulaforensics/idv-gui 3.2.293-nightly → 3.2.294-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 +3 -1
- package/dist/main.iife.js +4 -4
- package/dist/main.js +807 -786
- package/dist/main.umd.cjs +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -89,6 +89,8 @@ export declare const GuiModuleError: {
|
|
|
89
89
|
export declare type GuiModuleError = (typeof GuiModuleError)[keyof typeof GuiModuleError];
|
|
90
90
|
|
|
91
91
|
export declare type GuiModuleProps = {
|
|
92
|
+
locale: string;
|
|
93
|
+
} & ({
|
|
92
94
|
templateId: typeof GuiIdvSteps.INFO;
|
|
93
95
|
templateLayout: UIInfoScreenClientConfig;
|
|
94
96
|
} | {
|
|
@@ -119,7 +121,7 @@ export declare type GuiModuleProps = {
|
|
|
119
121
|
templateLayout: UIQuestionsScreenClientConfig;
|
|
120
122
|
dataSource?: QuestionsDataSource | null;
|
|
121
123
|
properties?: SessionPropertiesItem[];
|
|
122
|
-
};
|
|
124
|
+
});
|
|
123
125
|
|
|
124
126
|
export declare const IDV_UI_ICONS: {
|
|
125
127
|
readonly WARNING: "warning_icon";
|