dependencies dependencies cluster_ProductImagesModule cluster_ProductImagesModule_exports cluster_ProductImagesModule_declarations cluster_ProductImagesModule_imports ProductImagesComponent ProductImagesComponent ProductImagesModule ProductImagesModule ProductImagesComponent->ProductImagesModule ProductImagesComponent ProductImagesComponent ProductImagesModule->ProductImagesComponent CarouselModule CarouselModule CarouselModule->ProductImagesModule MediaModule MediaModule MediaModule->ProductImagesModule OutletModule OutletModule OutletModule->ProductImagesModule

File

projects/storefrontlib/cms-components/product/product-images/product-images.module.ts

import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { CmsConfig, provideDefaultConfig } from '@spartacus/core';
import { OutletModule } from '../../../cms-structure/outlet/index';
import { CarouselModule } from '../../../shared/components/carousel/index';
import { MediaModule } from '../../../shared/components/media/media.module';
import { ProductImagesComponent } from './product-images.component';

@NgModule({
  imports: [
    CommonModule,
    RouterModule,
    MediaModule,
    OutletModule,
    CarouselModule,
  ],
  providers: [
    provideDefaultConfig(<CmsConfig>{
      cmsComponents: {
        ProductImagesComponent: {
          component: ProductImagesComponent,
        },
      },
    }),
  ],
  declarations: [ProductImagesComponent],
  exports: [ProductImagesComponent],
})
export class ProductImagesModule {}

result-matching ""

    No results matching ""