monkey-front-core 0.0.397 → 0.0.398

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.
@@ -2755,13 +2755,18 @@ class MonkeyEcxCommonsService {
2755
2755
  };
2756
2756
  console.log('clearOnChangeRoute');
2757
2757
  console.log(clearOnChangeRoute);
2758
+ this.otherArgs.router.events.subscribe((resp) => {
2759
+ console.log('====');
2760
+ console.log(resp);
2761
+ });
2758
2762
  this.otherArgs.router.events
2759
2763
  .pipe(filter((event) => {
2760
2764
  return event instanceof NavigationStart;
2761
2765
  }), take(1))
2762
2766
  .subscribe(() => {
2767
+ console.log('veio destruir o schedule');
2763
2768
  if (this.__schedule && clearOnChangeRoute) {
2764
- console.log('veio destruir o schedule');
2769
+ console.log('destruiu o schedule');
2765
2770
  this.otherArgs?.schedule?.service?.removeSchedule(this.__schedule);
2766
2771
  this.__schedule = null;
2767
2772
  }