2020-08-11 04:11:42 +01:00
|
|
|
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
2020-08-05 15:39:16 +01:00
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { SearchPageRoutingModule } from './search-routing.module';
|
|
|
|
|
|
|
|
|
|
import { SearchPage } from './search.page';
|
2021-06-10 15:38:08 +01:00
|
|
|
import { BtnModalDismissPageModule } from 'src/app/shared/btn-modal-dismiss/btn-modal-dismiss.module';
|
2021-07-28 09:29:14 +01:00
|
|
|
/* */
|
2021-01-22 16:39:32 +01:00
|
|
|
/* import { TagCloudModule } from 'angular-tag-cloud-module'; */
|
2023-03-09 15:15:06 +01:00
|
|
|
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
|
|
|
import { MatInputModule } from '@angular/material/input';
|
|
|
|
|
|
|
|
|
|
import { MatNativeDateModule } from '@angular/material/core';
|
|
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
NgxMatDatetimePickerModule,
|
|
|
|
|
NgxMatNativeDateModule,
|
|
|
|
|
NgxMatTimepickerModule
|
|
|
|
|
} from '@angular-material-components/datetime-picker';
|
|
|
|
|
|
|
|
|
|
import { ReactiveFormsModule } from '@angular/forms';
|
|
|
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
|
|
|
import { MatSelectModule } from '@angular/material/select';
|
|
|
|
|
import { NgxMatMomentModule } from '@angular-material-components/moment-adapter';
|
2020-08-05 15:39:16 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-01-22 16:39:32 +01:00
|
|
|
/* TagCloudModule, */
|
2021-07-28 09:29:14 +01:00
|
|
|
/* */
|
2021-06-10 15:38:08 +01:00
|
|
|
SearchPageRoutingModule,
|
|
|
|
|
BtnModalDismissPageModule,
|
2023-03-09 15:15:06 +01:00
|
|
|
NgxMatDatetimePickerModule,
|
|
|
|
|
NgxMatNativeDateModule,
|
|
|
|
|
NgxMatTimepickerModule,
|
|
|
|
|
NgxMatMomentModule,
|
|
|
|
|
MatDatepickerModule,
|
|
|
|
|
MatInputModule,
|
|
|
|
|
MatNativeDateModule,
|
|
|
|
|
ReactiveFormsModule,
|
|
|
|
|
MatButtonModule,
|
|
|
|
|
MatSelectModule
|
2020-08-05 15:39:16 +01:00
|
|
|
],
|
2020-08-11 04:11:42 +01:00
|
|
|
declarations: [SearchPage],
|
|
|
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
2020-08-05 15:39:16 +01:00
|
|
|
})
|
|
|
|
|
export class SearchPageModule {}
|