dependencies dependencies cluster_ConfiguratorOverviewNotificationBannerModule cluster_ConfiguratorOverviewNotificationBannerModule_exports cluster_ConfiguratorOverviewNotificationBannerModule_declarations cluster_ConfiguratorOverviewNotificationBannerModule_imports ConfiguratorOverviewNotificationBannerComponent ConfiguratorOverviewNotificationBannerComponent ConfiguratorOverviewNotificationBannerModule ConfiguratorOverviewNotificationBannerModule ConfiguratorOverviewNotificationBannerComponent->ConfiguratorOverviewNotificationBannerModule ConfiguratorOverviewNotificationBannerComponent ConfiguratorOverviewNotificationBannerComponent ConfiguratorOverviewNotificationBannerModule->ConfiguratorOverviewNotificationBannerComponent I18nModule I18nModule I18nModule->ConfiguratorOverviewNotificationBannerModule IconModule IconModule IconModule->ConfiguratorOverviewNotificationBannerModule UrlModule UrlModule UrlModule->ConfiguratorOverviewNotificationBannerModule

File

feature-libs/product-configurator/rulebased/components/overview-notification-banner/configurator-overview-notification-banner.module.ts

import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import {
  CmsConfig,
  I18nModule,
  provideDefaultConfig,
  UrlModule,
} from '@spartacus/core';
import { IconModule } from '@spartacus/storefront';
import { ConfiguratorOverviewNotificationBannerComponent } from './configurator-overview-notification-banner.component';

@NgModule({
  imports: [CommonModule, I18nModule, UrlModule, IconModule, RouterModule],
  providers: [
    provideDefaultConfig(<CmsConfig>{
      cmsComponents: {
        ConfiguratorOverviewBanner: {
          component: ConfiguratorOverviewNotificationBannerComponent,
        },
      },
    }),
  ],
  declarations: [ConfiguratorOverviewNotificationBannerComponent],
  exports: [ConfiguratorOverviewNotificationBannerComponent],
})
export class ConfiguratorOverviewNotificationBannerModule {}

result-matching ""

    No results matching ""