2021-01-18 14:59:09 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
2021-01-29 09:45:27 +01:00
|
|
|
import { EditEventPageRoutingModule } from './edit-event-routing.module';
|
2021-01-18 14:59:09 +01:00
|
|
|
|
2021-01-29 09:45:27 +01:00
|
|
|
import { EditEventPage } from './edit-event.page';
|
2021-06-03 16:09:27 +01:00
|
|
|
import { AttendeeModalPageModule } from 'src/app/shared/event/attendee-modal/attendee-modal.module';
|
2022-01-21 15:54:53 +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';
|
2021-01-18 14:59:09 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-06-03 16:09:27 +01:00
|
|
|
EditEventPageRoutingModule,
|
2022-01-21 15:54:53 +01:00
|
|
|
MatDatepickerModule,
|
|
|
|
|
MatInputModule,
|
|
|
|
|
MatNativeDateModule,
|
|
|
|
|
NgxMatDatetimePickerModule,
|
|
|
|
|
NgxMatTimepickerModule,
|
|
|
|
|
NgxMatNativeDateModule,
|
|
|
|
|
NgxMatMomentModule,
|
|
|
|
|
MatSelectModule,
|
|
|
|
|
MatButtonModule,
|
|
|
|
|
ReactiveFormsModule,
|
2021-06-03 16:09:27 +01:00
|
|
|
//
|
|
|
|
|
AttendeeModalPageModule
|
2021-01-18 14:59:09 +01:00
|
|
|
],
|
2021-04-06 11:28:46 +01:00
|
|
|
declarations: [
|
2021-06-02 21:22:26 +01:00
|
|
|
EditEventPage
|
2021-04-06 11:28:46 +01:00
|
|
|
]
|
2021-01-18 14:59:09 +01:00
|
|
|
})
|
2021-01-29 09:45:27 +01:00
|
|
|
export class EditEventPageModule {}
|