@incodetech/web 0.0.0-dev-20260624-b4a7d4cb → 0.0.0-dev-20260625-d0b37b1e
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/flow/flow.es.js
CHANGED
|
@@ -400,6 +400,10 @@ var IncodeFlowContent = ({ config, onFinish, onError }) => {
|
|
|
400
400
|
class: "IncodeFlow",
|
|
401
401
|
children: /* @__PURE__ */ u(TerminalErrorPage, { message: flowState.error })
|
|
402
402
|
});
|
|
403
|
+
if (flowState.status === "completing") return /* @__PURE__ */ u("div", {
|
|
404
|
+
class: "IncodeFlow",
|
|
405
|
+
children: /* @__PURE__ */ u(TransitionSpinner, {})
|
|
406
|
+
});
|
|
403
407
|
if (flowState.status === "finished") return null;
|
|
404
408
|
if (flowState?.status === "ready") {
|
|
405
409
|
const { currentStep, config: flowConfig, flow } = flowState;
|
|
@@ -376,6 +376,10 @@ var IncodeWorkflowReady = ({ config, workflowManager: initialManager, onFinish,
|
|
|
376
376
|
class: "IncodeWorkflow",
|
|
377
377
|
children: /* @__PURE__ */ u(TerminalErrorPage, { message: workflowState.error })
|
|
378
378
|
});
|
|
379
|
+
if (workflowState.status === "completing") return /* @__PURE__ */ u("div", {
|
|
380
|
+
class: "IncodeWorkflow",
|
|
381
|
+
children: /* @__PURE__ */ u(TransitionSpinner, {})
|
|
382
|
+
});
|
|
379
383
|
if (workflowState.status === "finished") {
|
|
380
384
|
if (showFinishScreen) return /* @__PURE__ */ u("div", {
|
|
381
385
|
class: "IncodeWorkflow",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@incodetech/web",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20260625-d0b37b1e",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/IncodeTechnologies/incode-web-sdk.git"
|
|
@@ -264,7 +264,7 @@
|
|
|
264
264
|
"qrcode": "^1.5.4",
|
|
265
265
|
"signature_pad": "^5.1.3",
|
|
266
266
|
"tailwindcss": "^4.1.17",
|
|
267
|
-
"@incodetech/core": "0.0.0-dev-
|
|
267
|
+
"@incodetech/core": "0.0.0-dev-20260625-d0b37b1e"
|
|
268
268
|
},
|
|
269
269
|
"devDependencies": {
|
|
270
270
|
"@microsoft/api-extractor": "^7.53.3",
|