@energycap/components 0.39.10 → 0.39.11-ECAP-24439-Bill-Capture-Tour.20240321-1456

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.
@@ -9327,6 +9327,14 @@ class TourComponent {
9327
9327
  await this.endTour();
9328
9328
  }
9329
9329
  }
9330
+ else if (event.tourAction === 'append') {
9331
+ if (this.currentTour) {
9332
+ this.tours = this.tours.concat(event.tours);
9333
+ }
9334
+ else {
9335
+ await this.setupTourComponent(event);
9336
+ }
9337
+ }
9330
9338
  });
9331
9339
  }
9332
9340
  ngOnDestroy() {