mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
58 lines
1.9 KiB
TypeScript
58 lines
1.9 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { DocumentSetUpMeetingPageRoutingModule } from './document-set-up-meeting-routing.module';
|
|
import { DocumentSetUpMeetingPage } from './document-set-up-meeting.page';
|
|
import { EmptyContainerPageModule } from 'src/app/shared/empty-container/empty-container.module';
|
|
import { BtnModalDismissPageModule } from 'src/app/shared/btn-modal-dismiss/btn-modal-dismiss.module';
|
|
import { AttendeeModalPageModule } from 'src/app/shared/event/attendee-modal/attendee-modal.module';
|
|
|
|
|
|
import { MatNativeDateModule } from '@angular/material/core';
|
|
import {
|
|
NgxMatDateFormats,
|
|
NgxMatDatetimePickerModule,
|
|
NgxMatNativeDateModule,
|
|
NgxMatTimepickerModule,
|
|
NGX_MAT_DATE_FORMATS
|
|
} 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';
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
DocumentSetUpMeetingPageRoutingModule,
|
|
//
|
|
|
|
EmptyContainerPageModule,
|
|
|
|
AttendeeModalPageModule,
|
|
EmptyContainerPageModule,
|
|
BtnModalDismissPageModule,
|
|
// Angular material
|
|
MatDatepickerModule,
|
|
MatInputModule,
|
|
MatNativeDateModule,
|
|
NgxMatDatetimePickerModule,
|
|
NgxMatTimepickerModule,
|
|
NgxMatNativeDateModule,
|
|
NgxMatMomentModule,
|
|
MatSelectModule,
|
|
MatButtonModule,
|
|
ReactiveFormsModule
|
|
],
|
|
declarations: [DocumentSetUpMeetingPage]
|
|
})
|
|
export class DocumentSetUpMeetingPageModule {}
|