2020-12-01 14:03:15 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { NewActionPageRoutingModule } from './new-action-routing.module';
|
|
|
|
|
|
|
|
|
|
import { NewActionPage } from './new-action.page';
|
|
|
|
|
|
2021-07-06 16:18:00 +01:00
|
|
|
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';
|
|
|
|
|
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
|
|
|
import { MatInputModule } from '@angular/material/input';
|
|
|
|
|
import { MatDialogModule } from '@angular/material/dialog';
|
|
|
|
|
|
|
|
|
|
|
2020-12-01 14:03:15 +01:00
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-07-06 16:18:00 +01:00
|
|
|
NewActionPageRoutingModule,
|
|
|
|
|
// Angular material
|
|
|
|
|
MatDatepickerModule,
|
|
|
|
|
MatInputModule,
|
|
|
|
|
MatNativeDateModule,
|
|
|
|
|
NgxMatDatetimePickerModule,
|
|
|
|
|
NgxMatTimepickerModule,
|
|
|
|
|
NgxMatNativeDateModule,
|
|
|
|
|
NgxMatMomentModule,
|
|
|
|
|
MatSelectModule,
|
|
|
|
|
MatButtonModule,
|
|
|
|
|
ReactiveFormsModule,
|
|
|
|
|
MatDialogModule,
|
2020-12-01 14:03:15 +01:00
|
|
|
],
|
2021-06-03 12:08:49 +01:00
|
|
|
exports: [NewActionPage],
|
|
|
|
|
declarations: [NewActionPage]
|
2020-12-01 14:03:15 +01:00
|
|
|
})
|
|
|
|
|
export class NewActionPageModule {}
|