2023-08-01 10:40:55 +02:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {FormsModule} from '@angular/forms';
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
import {SearchFilterComponent} from './searchFilter.component';
|
2023-08-01 10:40:55 +02:00
|
|
|
import {SearchFilterModalComponent} from './searchFilterModal.component';
|
2017-12-19 13:53:46 +01:00
|
|
|
import {ModalModule} from '../../utils/modal/modal.module';
|
2020-10-20 11:11:15 +02:00
|
|
|
import {RouterModule} from "@angular/router";
|
2022-04-05 14:26:26 +02:00
|
|
|
import {InputModule} from '../../sharedComponents/input/input.module';
|
2022-06-09 15:45:39 +02:00
|
|
|
import {IconsModule} from "../../utils/icons/icons.module";
|
2023-12-14 17:14:57 +01:00
|
|
|
import {LoadingModule} from "../../utils/loading/loading.module";
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2023-08-01 10:40:55 +02:00
|
|
|
CommonModule, FormsModule, ModalModule, RouterModule,
|
2023-12-14 17:14:57 +01:00
|
|
|
InputModule, IconsModule, LoadingModule
|
2017-12-19 13:53:46 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
SearchFilterComponent, SearchFilterModalComponent
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
SearchFilterComponent, SearchFilterModalComponent
|
2023-08-01 10:40:55 +02:00
|
|
|
]
|
2017-12-19 13:53:46 +01:00
|
|
|
})
|
2023-08-01 10:40:55 +02:00
|
|
|
export class SearchFilterModule {
|
|
|
|
}
|