dependencies dependencies cluster_BudgetDetailsModule cluster_BudgetDetailsModule_BudgetDetailsComponent_providers cluster_BudgetDetailsModule_imports BudgetDetailsComponent BudgetDetailsComponent BudgetDetailsModule BudgetDetailsModule BudgetDetailsComponent->BudgetDetailsModule {    provide: ItemService, useExisting: BudgetItemService, } {    provide: ItemService, useExisting: BudgetItemService, } {    provide: ItemService, useExisting: BudgetItemService, }->BudgetDetailsComponent CardModule CardModule CardModule->BudgetDetailsModule DisableInfoModule DisableInfoModule DisableInfoModule->BudgetDetailsModule I18nModule I18nModule I18nModule->BudgetDetailsModule ItemExistsModule ItemExistsModule ItemExistsModule->BudgetDetailsModule KeyboardFocusModule KeyboardFocusModule KeyboardFocusModule->BudgetDetailsModule ToggleStatusModule ToggleStatusModule ToggleStatusModule->BudgetDetailsModule UrlModule UrlModule UrlModule->BudgetDetailsModule

File

feature-libs/organization/administration/components/budget/details/budget-details.module.ts

import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { I18nModule, UrlModule } from '@spartacus/core';
import { KeyboardFocusModule } from '@spartacus/storefront';
import { ItemExistsModule } from '../../shared/item-exists.module';
import { CardModule } from '../../shared/card/card.module';
import { ToggleStatusModule } from '../../shared/detail/toggle-status-action/toggle-status.module';
import { BudgetDetailsComponent } from './budget-details.component';
import { DisableInfoModule } from '../../shared/detail/disable-info/disable-info.module';

@NgModule({
  imports: [
    CommonModule,
    CardModule,
    RouterModule,
    UrlModule,
    I18nModule,
    ToggleStatusModule,
    ItemExistsModule,
    DisableInfoModule,
    KeyboardFocusModule,
  ],
  declarations: [BudgetDetailsComponent],
})
export class BudgetDetailsModule {}

result-matching ""

    No results matching ""