|
@@ -1,6 +1,5 @@
|
|
|
import { Injectable, OnDestroy } from '@angular/core';
|
|
import { Injectable, OnDestroy } from '@angular/core';
|
|
|
import { ActivatedRoute, Data, NavigationEnd, Params, PRIMARY_OUTLET, Router } from '@angular/router';
|
|
import { ActivatedRoute, Data, NavigationEnd, Params, PRIMARY_OUTLET, Router } from '@angular/router';
|
|
|
-import { DataService } from '@vendure/admin-ui/core';
|
|
|
|
|
import { flatten } from 'lodash';
|
|
import { flatten } from 'lodash';
|
|
|
import {
|
|
import {
|
|
|
combineLatest as observableCombineLatest,
|
|
combineLatest as observableCombineLatest,
|
|
@@ -10,6 +9,7 @@ import {
|
|
|
Subject,
|
|
Subject,
|
|
|
} from 'rxjs';
|
|
} from 'rxjs';
|
|
|
import { filter, map, startWith, switchMap, takeUntil } from 'rxjs/operators';
|
|
import { filter, map, startWith, switchMap, takeUntil } from 'rxjs/operators';
|
|
|
|
|
+import { DataService } from '../../data/providers/data.service';
|
|
|
|
|
|
|
|
export type BreadcrumbString = string;
|
|
export type BreadcrumbString = string;
|
|
|
|
|
|