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 { NewEventPageRoutingModule } from './new-event-routing.module';
|
2021-01-18 14:59:09 +01:00
|
|
|
|
2021-01-29 09:45:27 +01:00
|
|
|
import { NewEventPage } from './new-event.page';
|
2022-01-21 14:30:03 +01:00
|
|
|
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
|
|
|
|
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';
|
2023-08-15 17:12:50 +01:00
|
|
|
import { MatDialogModule } from '@angular/material/dialog';
|
2021-01-18 14:59:09 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-06-16 22:38:37 +01:00
|
|
|
NewEventPageRoutingModule,
|
2023-08-15 17:12:50 +01:00
|
|
|
//
|
2022-01-21 14:30:03 +01:00
|
|
|
MatDatepickerModule,
|
|
|
|
|
MatInputModule,
|
|
|
|
|
MatNativeDateModule,
|
|
|
|
|
NgxMatDatetimePickerModule,
|
|
|
|
|
NgxMatTimepickerModule,
|
|
|
|
|
NgxMatNativeDateModule,
|
|
|
|
|
NgxMatMomentModule,
|
|
|
|
|
MatSelectModule,
|
|
|
|
|
MatButtonModule,
|
2023-08-15 17:12:50 +01:00
|
|
|
ReactiveFormsModule,
|
|
|
|
|
MatDialogModule,
|
2021-01-18 14:59:09 +01:00
|
|
|
],
|
2021-01-29 09:45:27 +01:00
|
|
|
declarations: [NewEventPage]
|
2021-01-18 14:59:09 +01:00
|
|
|
})
|
2021-01-29 09:45:27 +01:00
|
|
|
export class NewEventPageModule {}
|