dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_ListModule cluster_ListModule_declarations cluster_ListModule_exports cluster_ListModule_providers cluster_ListModule_imports GroupPipe GroupPipe ListModule ListModule GroupPipe->ListModule ListComponent ListComponent ListComponent->ListModule ListHeaderComponent ListHeaderComponent ListHeaderComponent->ListModule ListItemsComponent ListItemsComponent ListItemsComponent->ListModule PaginationComponent PaginationComponent PaginationComponent->ListModule SearchbarComponent SearchbarComponent SearchbarComponent->ListModule FormModule FormModule ListModule->FormModule GroupPipe GroupPipe ListModule->GroupPipe ListComponent ListComponent ListModule->ListComponent ListHeaderComponent ListHeaderComponent ListModule->ListHeaderComponent ListItemsComponent ListItemsComponent ListModule->ListItemsComponent PaginationComponent PaginationComponent ListModule->PaginationComponent SearchbarComponent SearchbarComponent ListModule->SearchbarComponent FormModule FormModule FormModule->ListModule IconModule IconModule IconModule->ListModule SymbolModule SymbolModule SymbolModule->ListModule UtilityModule UtilityModule UtilityModule->ListModule ListConfigService ListConfigService ListConfigService->ListModule
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FormModule } from '../form/form.module';
import { IconModule } from '../icon/icon.module';
import { SymbolModule } from '../symbol/symbol.module';
import { UtilityModule } from '../utility/utility.module';
import { GroupPipe } from './group.pipe';
import { ListHeaderComponent } from './list-header/list-header.component';
import { ListItemsComponent } from './list-items/list-items.component';
import { ListComponent } from './list.component';
import { PaginationComponent } from './pagination/pagination.component';
import { SearchbarComponent } from './searchbar/searchbar.component';
import { ListConfigService } from './list-config.service';
import { FormsModule } from '@angular/forms';

@NgModule({
  declarations: [
    ListComponent,
    ListItemsComponent,
    ListHeaderComponent,
    PaginationComponent,
    SearchbarComponent,
    GroupPipe,
  ],
  imports: [CommonModule, FormsModule, FormModule, IconModule, SymbolModule, UtilityModule],
  exports: [
    ListComponent,
    ListItemsComponent,
    ListHeaderComponent,
    PaginationComponent,
    SearchbarComponent,
    GroupPipe,
    FormModule,
  ],
  providers: [ListConfigService],
})
export class ListModule {}

result-matching ""

    No results matching ""