|
|
@@ -10,16 +10,16 @@ import { AssetFileInputComponent } from './components/asset-file-input/asset-fil
|
|
|
import { AssetGalleryComponent } from './components/asset-gallery/asset-gallery.component';
|
|
|
import { AssetListComponent } from './components/asset-list/asset-list.component';
|
|
|
import { AssetPickerDialogComponent } from './components/asset-picker-dialog/asset-picker-dialog.component';
|
|
|
+import { CollectionDetailComponent } from './components/collection-detail/collection-detail.component';
|
|
|
+import { CollectionListComponent } from './components/collection-list/collection-list.component';
|
|
|
+import { CollectionTreeNodeComponent } from './components/collection-tree/collection-tree-node.component';
|
|
|
+import { CollectionTreeComponent } from './components/collection-tree/collection-tree.component';
|
|
|
import { CreateOptionGroupDialogComponent } from './components/create-option-group-dialog/create-option-group-dialog.component';
|
|
|
import { CreateOptionGroupFormComponent } from './components/create-option-group-form/create-option-group-form.component';
|
|
|
import { FacetDetailComponent } from './components/facet-detail/facet-detail.component';
|
|
|
import { FacetListComponent } from './components/facet-list/facet-list.component';
|
|
|
import { GenerateProductVariantsComponent } from './components/generate-product-variants/generate-product-variants.component';
|
|
|
import { ProductAssetsComponent } from './components/product-assets/product-assets.component';
|
|
|
-import { ProductCategoryDetailComponent } from './components/product-category-detail/product-category-detail.component';
|
|
|
-import { ProductCategoryListComponent } from './components/product-category-list/product-category-list.component';
|
|
|
-import { ProductCategoryTreeNodeComponent } from './components/product-category-tree/product-category-tree-node.component';
|
|
|
-import { ProductCategoryTreeComponent } from './components/product-category-tree/product-category-tree.component';
|
|
|
import { ProductDetailComponent } from './components/product-detail/product-detail.component';
|
|
|
import { ProductListComponent } from './components/product-list/product-list.component';
|
|
|
import { ProductVariantsListComponent } from './components/product-variants-list/product-variants-list.component';
|
|
|
@@ -27,8 +27,8 @@ import { ProductVariantsWizardComponent } from './components/product-variants-wi
|
|
|
import { SelectOptionGroupDialogComponent } from './components/select-option-group-dialog/select-option-group-dialog.component';
|
|
|
import { SelectOptionGroupComponent } from './components/select-option-group/select-option-group.component';
|
|
|
import { VariantPriceDetailComponent } from './components/variant-price-detail/variant-price-detail.component';
|
|
|
+import { CollectionResolver } from './providers/routing/collection-resolver';
|
|
|
import { FacetResolver } from './providers/routing/facet-resolver';
|
|
|
-import { ProductCategoryResolver } from './providers/routing/product-category-resolver';
|
|
|
import { ProductResolver } from './providers/routing/product-resolver';
|
|
|
|
|
|
@NgModule({
|
|
|
@@ -53,10 +53,10 @@ import { ProductResolver } from './providers/routing/product-resolver';
|
|
|
AssetPickerDialogComponent,
|
|
|
AssetFileInputComponent,
|
|
|
VariantPriceDetailComponent,
|
|
|
- ProductCategoryListComponent,
|
|
|
- ProductCategoryDetailComponent,
|
|
|
- ProductCategoryTreeComponent,
|
|
|
- ProductCategoryTreeNodeComponent,
|
|
|
+ CollectionListComponent,
|
|
|
+ CollectionDetailComponent,
|
|
|
+ CollectionTreeComponent,
|
|
|
+ CollectionTreeNodeComponent,
|
|
|
],
|
|
|
entryComponents: [
|
|
|
AssetPickerDialogComponent,
|
|
|
@@ -64,6 +64,6 @@ import { ProductResolver } from './providers/routing/product-resolver';
|
|
|
SelectOptionGroupDialogComponent,
|
|
|
ApplyFacetDialogComponent,
|
|
|
],
|
|
|
- providers: [ProductResolver, FacetResolver, ProductCategoryResolver],
|
|
|
+ providers: [ProductResolver, FacetResolver, CollectionResolver],
|
|
|
})
|
|
|
export class CatalogModule {}
|