@igo2/geo 20.1.0-next.17 → 20.1.0-next.18

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.
@@ -17593,7 +17593,6 @@ class DirectionsComponent {
17593
17593
  directionsSourceService = inject(DirectionsSourceService);
17594
17594
  searchService = inject(SearchService);
17595
17595
  queryService = inject(QueryService);
17596
- messageService = inject(MessageService);
17597
17596
  projection = 'EPSG:4326';
17598
17597
  twoSourcesAvailable = false;
17599
17598
  storeEmpty$$;
@@ -17606,7 +17605,6 @@ class DirectionsComponent {
17606
17605
  isTranslating = false;
17607
17606
  previousStops = [];
17608
17607
  searchs$$ = [];
17609
- authenticated$$;
17610
17608
  contextUri = input(undefined, ...(ngDevMode ? [{ debugName: "contextUri" }] : []));
17611
17609
  stopsStore = input.required(...(ngDevMode ? [{ debugName: "stopsStore" }] : []));
17612
17610
  stopsFeatureStore = input.required(...(ngDevMode ? [{ debugName: "stopsFeatureStore" }] : []));
@@ -17646,10 +17644,9 @@ class DirectionsComponent {
17646
17644
  }
17647
17645
  ngOnDestroy() {
17648
17646
  this.queryService.queryEnabled = true;
17649
- this.storeEmpty$$.unsubscribe();
17650
- this.storeChange$$.unsubscribe();
17651
- this.routesQueries$$.map((u) => u.unsubscribe());
17652
- this.authenticated$$.unsubscribe();
17647
+ this.storeEmpty$$?.unsubscribe();
17648
+ this.storeChange$$?.unsubscribe();
17649
+ this.routesQueries$$?.map((u) => u.unsubscribe());
17653
17650
  this.freezeStores();
17654
17651
  const stopsFeatureStore = this.stopsFeatureStore();
17655
17652
  if (stopsFeatureStore.empty) {