2020-02-11 12:58:51 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {FormsModule} from '@angular/forms';
|
|
|
|
import {RouterModule} from '@angular/router';
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2020-02-11 12:58:51 +01:00
|
|
|
import {AdvancedSearchFormComponent} from './advancedSearchForm.component';
|
2017-12-19 13:53:46 +01:00
|
|
|
import {EntitiesAutocompleteModule} from '../../utils/entitiesAutoComplete/entitiesAutoComplete.module';
|
|
|
|
import {StaticAutocompleteModule} from '../../utils/staticAutoComplete/staticAutoComplete.module';
|
|
|
|
import {DateFilterModule} from './dateFilter.module';
|
2020-02-11 12:58:51 +01:00
|
|
|
import {SearchFormModule} from './searchForm.module';
|
|
|
|
import {QuickSelectionsModule} from "./quick-selections.module";
|
2020-02-13 15:44:51 +01:00
|
|
|
import {EntitiesSelectionModule} from "./entitiesSelection.module";
|
2020-03-05 14:21:01 +01:00
|
|
|
import {MatSelectModule} from "@angular/material";
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2020-03-05 14:21:01 +01:00
|
|
|
CommonModule, FormsModule, RouterModule, EntitiesAutocompleteModule, StaticAutocompleteModule, DateFilterModule, SearchFormModule, QuickSelectionsModule, EntitiesSelectionModule, MatSelectModule
|
2017-12-19 13:53:46 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
AdvancedSearchFormComponent,
|
|
|
|
],
|
|
|
|
|
|
|
|
providers:[
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
AdvancedSearchFormComponent
|
|
|
|
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class AdvancedSearchFormModule { }
|