From 3a5367b2c9ff2b24d14ff8764568c77a61121d77 Mon Sep 17 00:00:00 2001 From: Akanksha Singh Date: Mon, 15 Dec 2025 14:17:45 +0530 Subject: [PATCH] feat(core): emit updated actions groups to parent --- .../workflows-creator/src/lib/builder/builder.component.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/projects/workflows-creator/src/lib/builder/builder.component.ts b/projects/workflows-creator/src/lib/builder/builder.component.ts index 4ddf0c3..bbe56bd 100644 --- a/projects/workflows-creator/src/lib/builder/builder.component.ts +++ b/projects/workflows-creator/src/lib/builder/builder.component.ts @@ -91,6 +91,9 @@ export class BuilderComponent implements OnInit, OnChanges { @Output() stateChange = new EventEmitter>(); + @Output() + actionGroupsAdded = new EventEmitter[]>(); + @Output() diagramChange = new EventEmitter(); @@ -200,6 +203,7 @@ export class BuilderComponent implements OnInit, OnChanges { action: action.node as WorkflowAction, }); }); + this.actionGroupsAdded.emit(this.actionGroups); this.hideElseBlockIfRequired(); this.updateDiagram(); }