@ixo/editor 5.20.0-experimental.3 → 5.20.0-experimental.4
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-6CBTLK7K.mjs → chunk-25XKVLR3.mjs} +3 -28
- package/dist/chunk-25XKVLR3.mjs.map +1 -0
- package/dist/{chunk-B32AHE5F.mjs → chunk-GK3FNKQL.mjs} +2 -2
- package/dist/core/index.mjs +1 -1
- package/dist/index.mjs +2 -2
- package/dist/mantine/index.mjs +2 -2
- package/package.json +1 -1
- package/dist/chunk-6CBTLK7K.mjs.map +0 -1
- /package/dist/{chunk-B32AHE5F.mjs.map → chunk-GK3FNKQL.mjs.map} +0 -0
|
@@ -397,23 +397,13 @@ registerAction({
|
|
|
397
397
|
{ path: "skipped", displayName: "Skipped", type: "boolean", description: "False when a parent entity was selected" }
|
|
398
398
|
],
|
|
399
399
|
pendingDisplayFields: ["selectedEntityName", "selectedEntityDid"]
|
|
400
|
-
},
|
|
401
|
-
{
|
|
402
|
-
name: "skipped",
|
|
403
|
-
displayName: "Selection Skipped",
|
|
404
|
-
description: "Fires when parent entity selection is skipped.",
|
|
405
|
-
payloadSchema: [
|
|
406
|
-
{ path: "selectedEntityDid", displayName: "Selected Entity DID", type: "string", description: "Null when skipped" },
|
|
407
|
-
{ path: "skipped", displayName: "Skipped", type: "boolean", description: "True when skipped" }
|
|
408
|
-
],
|
|
409
|
-
pendingDisplayFields: ["skipped"]
|
|
410
400
|
}
|
|
411
401
|
],
|
|
412
402
|
run: async (inputs) => {
|
|
413
403
|
const skipped = !!inputs.skipped;
|
|
414
404
|
if (skipped) {
|
|
415
405
|
const output2 = { selectedEntityDid: null, selectedEntityName: "", selectedEntityType: "", skipped: true };
|
|
416
|
-
return { output: output2, events: [
|
|
406
|
+
return { output: output2, events: [] };
|
|
417
407
|
}
|
|
418
408
|
const selectedEntityDid = String(inputs.selectedEntityDid || "").trim();
|
|
419
409
|
if (!selectedEntityDid) throw new Error("selectedEntityDid is required when not skipping");
|
|
@@ -605,24 +595,10 @@ registerAction({
|
|
|
605
595
|
{ path: "flowTemplateConfig", displayName: "Flow Template Config", type: "object", description: "Event payload consumed by POD signing/import steps" }
|
|
606
596
|
],
|
|
607
597
|
events: [
|
|
608
|
-
{
|
|
609
|
-
name: "configured",
|
|
610
|
-
displayName: "Flow Templates Configured",
|
|
611
|
-
description: "Fires when protocol flow templates are selected for the POD.",
|
|
612
|
-
payloadSchema: [
|
|
613
|
-
{
|
|
614
|
-
path: "flowTemplateConfig",
|
|
615
|
-
displayName: "Flow Template Config",
|
|
616
|
-
type: "object",
|
|
617
|
-
description: "Selected templates grouped by their protocol DID for later import"
|
|
618
|
-
}
|
|
619
|
-
],
|
|
620
|
-
pendingDisplayFields: ["flowTemplateConfig.templateCount", "flowTemplateConfig.protocolCount"]
|
|
621
|
-
},
|
|
622
598
|
{
|
|
623
599
|
name: "selected",
|
|
624
600
|
displayName: "Flow Templates Selected",
|
|
625
|
-
description: "Fires
|
|
601
|
+
description: "Fires when the flow template selection is confirmed, including an empty selection.",
|
|
626
602
|
payloadSchema: [
|
|
627
603
|
{
|
|
628
604
|
path: "flowTemplateConfig",
|
|
@@ -658,7 +634,6 @@ registerAction({
|
|
|
658
634
|
return {
|
|
659
635
|
output: { selectedProtocolTemplates, selectedFlowDids, flowTemplateConfig },
|
|
660
636
|
events: [
|
|
661
|
-
{ name: "configured", payload: { flowTemplateConfig } },
|
|
662
637
|
{
|
|
663
638
|
name: "selected",
|
|
664
639
|
payload: {
|
|
@@ -10230,4 +10205,4 @@ export {
|
|
|
10230
10205
|
executeQueuedFlowAgentCoreCommands,
|
|
10231
10206
|
FlowAgentService
|
|
10232
10207
|
};
|
|
10233
|
-
//# sourceMappingURL=chunk-
|
|
10208
|
+
//# sourceMappingURL=chunk-25XKVLR3.mjs.map
|