2021-04-29 13:58:52 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { CreateProcessPageRoutingModule } from './create-process-routing.module';
|
|
|
|
|
|
|
|
|
|
import { CreateProcessPage } from './create-process.page';
|
2021-06-03 15:35:09 +01:00
|
|
|
import { EmptyContainerPageModule } from 'src/app/shared/empty-container/empty-container.module';
|
|
|
|
|
import { AttendeeModalPageModule } from 'src/app/shared/event/attendee-modal/attendee-modal.module';
|
2021-04-29 13:58:52 +01:00
|
|
|
|
2021-06-23 15:39: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-04-29 13:58:52 +01:00
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-06-03 15:35:09 +01:00
|
|
|
CreateProcessPageRoutingModule,
|
|
|
|
|
EmptyContainerPageModule,
|
2021-06-23 15:39:45 +01:00
|
|
|
AttendeeModalPageModule,
|
|
|
|
|
// Angular material
|
|
|
|
|
MatDatepickerModule,
|
|
|
|
|
MatInputModule,
|
|
|
|
|
MatNativeDateModule,
|
|
|
|
|
NgxMatDatetimePickerModule,
|
|
|
|
|
NgxMatTimepickerModule,
|
|
|
|
|
NgxMatNativeDateModule,
|
|
|
|
|
NgxMatMomentModule,
|
|
|
|
|
MatSelectModule,
|
|
|
|
|
MatButtonModule,
|
|
|
|
|
ReactiveFormsModule,
|
2021-07-08 10:43:40 +01:00
|
|
|
MatDialogModule
|
2021-06-23 15:39:45 +01:00
|
|
|
],
|
|
|
|
|
providers: [
|
|
|
|
|
{ provide: MAT_DATE_LOCALE, useValue: 'pt' },
|
2021-04-29 13:58:52 +01:00
|
|
|
],
|
|
|
|
|
declarations: [
|
2021-06-02 21:22:26 +01:00
|
|
|
CreateProcessPage
|
2021-04-29 13:58:52 +01:00
|
|
|
]
|
|
|
|
|
})
|
|
|
|
|
export class CreateProcessPageModule {}
|