@regulaforensics/idv-gui 2.3.126-nightly → 2.3.128-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 -2
- package/dist/main.js +6 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9,14 +9,15 @@ declare type ContentMode = keyof typeof ContentMode;
|
|
|
9
9
|
declare const GuiIdv: React.FC<IdvModuleProps<GuiModuleProps | GuiModulePropsUnknown, GuiModuleConfig>> & IdvModuleMethods;
|
|
10
10
|
export default GuiIdv;
|
|
11
11
|
|
|
12
|
-
declare const GuiIdvSteps: {
|
|
12
|
+
export declare const GuiIdvSteps: {
|
|
13
13
|
readonly INFO: "INFO";
|
|
14
14
|
readonly INFO_DETAILS: "INFO_DETAILS";
|
|
15
15
|
readonly STATUS: "STATUS";
|
|
16
16
|
readonly PROGRESS: "PROGRESS";
|
|
17
|
+
readonly QUESTIONS: "QUESTIONS";
|
|
17
18
|
};
|
|
18
19
|
|
|
19
|
-
declare type GuiIdvSteps = keyof typeof GuiIdvSteps;
|
|
20
|
+
export declare type GuiIdvSteps = keyof typeof GuiIdvSteps;
|
|
20
21
|
|
|
21
22
|
declare type GuiModuleConfig = Record<string, any>;
|
|
22
23
|
|
package/dist/main.js
CHANGED
|
@@ -2678,7 +2678,12 @@ function m7() {
|
|
|
2678
2678
|
return o(t), c8;
|
|
2679
2679
|
}
|
|
2680
2680
|
m7();
|
|
2681
|
-
var
|
|
2681
|
+
var pr = {
|
|
2682
|
+
INFO: "INFO",
|
|
2683
|
+
INFO_DETAILS: "INFO_DETAILS",
|
|
2684
|
+
STATUS: "STATUS",
|
|
2685
|
+
PROGRESS: "PROGRESS"
|
|
2686
|
+
}, ee = {
|
|
2682
2687
|
LEFT: "LEFT",
|
|
2683
2688
|
CENTER: "CENTER",
|
|
2684
2689
|
RIGHT: "RIGHT"
|
|
@@ -4128,11 +4133,6 @@ var ni = function(r) {
|
|
|
4128
4133
|
}, children: t && /* @__PURE__ */ a.jsx(Yr, ir({}, t)) }),
|
|
4129
4134
|
o && /* @__PURE__ */ a.jsx(Nn, ir({}, o))
|
|
4130
4135
|
] }) });
|
|
4131
|
-
}, pr = {
|
|
4132
|
-
INFO: "INFO",
|
|
4133
|
-
INFO_DETAILS: "INFO_DETAILS",
|
|
4134
|
-
STATUS: "STATUS",
|
|
4135
|
-
PROGRESS: "PROGRESS"
|
|
4136
4136
|
}, ii = function(r) {
|
|
4137
4137
|
var t = r.templateId, n = r.templateLayout;
|
|
4138
4138
|
return !t && !n ? /* @__PURE__ */ a.jsx(z8, {}) : t === pr.STATUS ? /* @__PURE__ */ a.jsx(Wn, { header: n == null ? void 0 : n.header, footer: n == null ? void 0 : n.footer, image: n == null ? void 0 : n.image, title: n == null ? void 0 : n.title, buttons: n == null ? void 0 : n.buttons, backgroundColor: n == null ? void 0 : n.backgroundColor }) : t === pr.INFO ? /* @__PURE__ */ a.jsx(Jn, { header: n == null ? void 0 : n.header, footer: n == null ? void 0 : n.footer, image: n == null ? void 0 : n.image, title: n == null ? void 0 : n.title, description: n == null ? void 0 : n.description, buttons: n == null ? void 0 : n.buttons, backgroundColor: n == null ? void 0 : n.backgroundColor }) : t === pr.PROGRESS ? /* @__PURE__ */ a.jsx(z8, { header: n == null ? void 0 : n.header, footer: n == null ? void 0 : n.footer, progressView: n == null ? void 0 : n.progressView, backgroundColor: n == null ? void 0 : n.backgroundColor }) : t === pr.INFO_DETAILS ? /* @__PURE__ */ a.jsx(ni, { header: n == null ? void 0 : n.header, title: n == null ? void 0 : n.title, details: n == null ? void 0 : n.details, buttons: n == null ? void 0 : n.buttons, footer: n == null ? void 0 : n.footer, backgroundColor: n == null ? void 0 : n.backgroundColor }) : /* @__PURE__ */ a.jsx("div", { style: {
|
package/package.json
CHANGED