@cqa-lib/cqa-ui 1.1.128 → 1.1.129

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.
@@ -6283,8 +6283,8 @@ class StepRendererComponent {
6283
6283
  instance.activeBranchStepId = this.step.activeBranchStepId;
6284
6284
  }
6285
6285
  }
6286
- // Wire up common event emitters for api, ai-agent, and loop steps
6287
- if (this.step.type === 'api' || this.step.type === 'ai-agent' || this.step.type === 'loop' || this.step.type === 'condition') {
6286
+ // Wire up common event emitters for api, ai-agent, loop, condition, and basic steps
6287
+ if (this.step.type === 'api' || this.step.type === 'ai-agent' || this.step.type === 'loop' || this.step.type === 'condition' || this.step.type === 'basic') {
6288
6288
  // Subscribe to common output events and call handlers
6289
6289
  // EventEmitters are Subjects, so we can subscribe to them
6290
6290
  if (instance.makeCurrentBaseline && this.onMakeCurrentBaselineHandler) {