2021-03-16 12:14:46 +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 12:26:45 +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 { MAT_DATE_LOCALE } from '@angular/material/core';
|
|
|
|
|
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
|
|
|
import { MatInputModule } from '@angular/material/input';
|
|
|
|
|
import { MatDialogModule } from '@angular/material/dialog';
|
|
|
|
|
|
2021-03-16 12:14:46 +01:00
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-07-06 12:26:45 +01:00
|
|
|
NewActionPageRoutingModule,
|
|
|
|
|
// Angular material
|
|
|
|
|
MatDatepickerModule,
|
|
|
|
|
MatInputModule,
|
|
|
|
|
MatNativeDateModule,
|
|
|
|
|
NgxMatDatetimePickerModule,
|
|
|
|
|
NgxMatTimepickerModule,
|
|
|
|
|
NgxMatNativeDateModule,
|
|
|
|
|
NgxMatMomentModule,
|
|
|
|
|
MatSelectModule,
|
|
|
|
|
MatButtonModule,
|
|
|
|
|
ReactiveFormsModule,
|
|
|
|
|
MatDialogModule,
|
2021-03-16 12:14:46 +01:00
|
|
|
],
|
2021-06-03 10:41:25 +01:00
|
|
|
exports: [NewActionPage],
|
|
|
|
|
declarations: [NewActionPage]
|
2021-03-16 12:14:46 +01:00
|
|
|
})
|
|
|
|
|
export class NewActionPageModule {}
|