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(); }