@ixo/editor 5.20.0-experimental.1 → 5.20.0-experimental.2
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/{chunk-IALS3KWH.mjs → chunk-5U32TIJW.mjs} +13 -4
- package/dist/chunk-5U32TIJW.mjs.map +1 -0
- package/dist/{chunk-XGQRYGA3.mjs → chunk-OK3ILV2C.mjs} +76 -8
- package/dist/chunk-OK3ILV2C.mjs.map +1 -0
- package/dist/core/index.d.ts +4 -4
- package/dist/core/index.mjs +1 -1
- package/dist/{graphql-client-Dhxgv06u.d.ts → graphql-client-DGtC9Ajk.d.ts} +1 -1
- package/dist/{index-DMNPdv6v.d.ts → index-gDm2GWBG.d.ts} +20 -8
- package/dist/index.d.ts +3 -3
- package/dist/index.mjs +2 -2
- package/dist/mantine/index.d.ts +3 -3
- package/dist/mantine/index.mjs +2 -2
- package/dist/{store-Bx5ezUFS.d.ts → store-B5l8ciUz.d.ts} +1 -1
- package/package.json +1 -1
- package/dist/chunk-IALS3KWH.mjs.map +0 -1
- package/dist/chunk-XGQRYGA3.mjs.map +0 -1
|
@@ -42,7 +42,7 @@ import {
|
|
|
42
42
|
setActiveEditor,
|
|
43
43
|
tempDomainCreatorSurvey,
|
|
44
44
|
transformSurveyToCredentialSubject
|
|
45
|
-
} from "./chunk-
|
|
45
|
+
} from "./chunk-OK3ILV2C.mjs";
|
|
46
46
|
|
|
47
47
|
// src/mantine/hooks/useCreateIxoEditor.ts
|
|
48
48
|
import { useCreateBlockNote } from "@blocknote/react";
|
|
@@ -30915,9 +30915,10 @@ var STEP_LABELS = {
|
|
|
30915
30915
|
signing: "Signing credential...",
|
|
30916
30916
|
uploading: "Uploading to storage...",
|
|
30917
30917
|
updating: "Adding domain card...",
|
|
30918
|
+
linking: "Linking to parent entity...",
|
|
30918
30919
|
importing: "Importing flow templates..."
|
|
30919
30920
|
};
|
|
30920
|
-
var FLOW_STEPS = ["creating", "sourcing", "signing", "uploading", "updating", "importing"];
|
|
30921
|
+
var FLOW_STEPS = ["creating", "sourcing", "signing", "uploading", "updating", "linking", "importing"];
|
|
30921
30922
|
var DomainSignFlowDetail = ({
|
|
30922
30923
|
inputs,
|
|
30923
30924
|
editor,
|
|
@@ -31031,6 +31032,10 @@ var DomainSignFlowDetail = ({
|
|
|
31031
31032
|
setActiveStep("updating");
|
|
31032
31033
|
return handlers.executeTransaction(...args);
|
|
31033
31034
|
} : void 0,
|
|
31035
|
+
createAddLinkedEntityMessage: handlers.createAddLinkedEntityMessage ? async (...args) => {
|
|
31036
|
+
setActiveStep("linking");
|
|
31037
|
+
return handlers.createAddLinkedEntityMessage(...args);
|
|
31038
|
+
} : void 0,
|
|
31034
31039
|
importProtocolTemplatesToSpace: handlers.importProtocolTemplatesToSpace ? async (...args) => {
|
|
31035
31040
|
setActiveStep("importing");
|
|
31036
31041
|
return handlers.importProtocolTemplatesToSpace(...args);
|
|
@@ -31044,7 +31049,11 @@ var DomainSignFlowDetail = ({
|
|
|
31044
31049
|
governanceConfig: pendingPayload?.governanceConfig || void 0,
|
|
31045
31050
|
memberConfig: pendingPayload?.memberConfig || void 0,
|
|
31046
31051
|
flowTemplateConfig: pendingPayload?.flowTemplateConfig || void 0,
|
|
31047
|
-
linkedEntities: pendingPayload?.linkedEntities || void 0
|
|
31052
|
+
linkedEntities: pendingPayload?.linkedEntities || void 0,
|
|
31053
|
+
selectedEntityDid: pendingPayload?.selectedEntityDid || void 0,
|
|
31054
|
+
selectedEntityName: pendingPayload?.selectedEntityName || void 0,
|
|
31055
|
+
selectedEntityType: pendingPayload?.selectedEntityType || void 0,
|
|
31056
|
+
skipped: pendingPayload?.skipped || void 0
|
|
31048
31057
|
},
|
|
31049
31058
|
pendingInvocationId: activePendingInvocation?.id,
|
|
31050
31059
|
handlers: wrappedHandlers
|
|
@@ -44918,4 +44927,4 @@ export {
|
|
|
44918
44927
|
getExtraSlashMenuItems,
|
|
44919
44928
|
useCreateIxoEditor
|
|
44920
44929
|
};
|
|
44921
|
-
//# sourceMappingURL=chunk-
|
|
44930
|
+
//# sourceMappingURL=chunk-5U32TIJW.mjs.map
|