2017-12-19 13:53:46 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
|
|
|
import { SharedModule } from '../../shared/shared.module';
|
|
|
|
import { ClaimContextSearchFormComponent } from './claimContextSearchForm.component';
|
|
|
|
import {StaticAutocompleteModule} from '../../utils/staticAutoComplete/staticAutoComplete.module';
|
|
|
|
import { RouterModule } from '@angular/router';
|
2018-02-13 15:52:23 +01:00
|
|
|
import {HelperModule} from '../../utils/helper/helper.module';
|
2022-03-16 17:54:22 +01:00
|
|
|
import {ClaimProjectsSearchFormModule} from "./claimProjectSearchForm.module";
|
2022-04-08 15:55:22 +02:00
|
|
|
import {AdvancedSearchInputModule} from "../../sharedComponents/advanced-search-input/advanced-search-input.module";
|
|
|
|
import {InputModule} from "../../sharedComponents/input/input.module";
|
2022-05-12 16:59:13 +02:00
|
|
|
import {CommunitiesService} from "../../connect/communities/communities.service";
|
|
|
|
import {LogoUrlPipeModule} from "../../utils/pipes/logoUrlPipe.module";
|
|
|
|
import {IconsModule} from "../../utils/icons/icons.module";
|
|
|
|
import {AlertModalModule} from "../../utils/modal/alertModal.module";
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2022-03-16 17:54:22 +01:00
|
|
|
SharedModule, RouterModule,
|
2018-02-13 15:52:23 +01:00
|
|
|
StaticAutocompleteModule,
|
2022-05-12 16:59:13 +02:00
|
|
|
HelperModule, ClaimProjectsSearchFormModule, AdvancedSearchInputModule, InputModule, LogoUrlPipeModule, IconsModule, AlertModalModule
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
],
|
2022-05-12 16:59:13 +02:00
|
|
|
providers: [CommunitiesService],
|
2017-12-19 13:53:46 +01:00
|
|
|
declarations: [
|
|
|
|
ClaimContextSearchFormComponent
|
|
|
|
], exports: [ClaimContextSearchFormComponent ]
|
|
|
|
})
|
|
|
|
export class ClaimContextSearchFormModule { }
|