You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.7 KiB
47 lines
1.7 KiB
import { CommonModule } from '@angular/common';
|
|
import { NgModule } from '@angular/core';
|
|
import { ReactiveFormsModule } from '@angular/forms';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
import { SharedModule } from '../../shared/shared.module';
|
|
import { AdministrationRoutingModule } from './administration-routing.module';
|
|
import { AdministrationComponent } from './administration.component';
|
|
import { StepperComponent } from './stepper/stepper.component';
|
|
import { FormComponent } from './form/form.component';
|
|
import { DateValueAccessorModule } from 'angular-date-value-accessor';
|
|
import { ClassicChoicesComponent } from './form/classic-choices/classic-choices.component';
|
|
import { StepOneComponent } from './form/step-one/step-one.component';
|
|
import { StepTwoComponent } from './form/step-two/step-two.component';
|
|
import { StepThreeComponent } from './form/step-three/step-three.component';
|
|
import { StepFourComponent } from './form/step-four/step-four.component';
|
|
import { StepFiveComponent } from './form/step-five/step-five.component';
|
|
import { DevMenuComponent } from './dev-menu/dev-menu.component';
|
|
import { CalendarModule } from 'primeng/calendar';
|
|
import { DateViewsComponent } from './form/date-views/date-views.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AdministrationComponent,
|
|
StepperComponent,
|
|
FormComponent,
|
|
ClassicChoicesComponent,
|
|
StepOneComponent,
|
|
StepTwoComponent,
|
|
StepThreeComponent,
|
|
StepFourComponent,
|
|
StepFiveComponent,
|
|
DevMenuComponent,
|
|
DateViewsComponent,
|
|
],
|
|
imports: [
|
|
AdministrationRoutingModule,
|
|
CommonModule,
|
|
CalendarModule,
|
|
ReactiveFormsModule,
|
|
SharedModule,
|
|
TranslateModule.forChild({ extend: true }),
|
|
DateValueAccessorModule,
|
|
],
|
|
})
|
|
export class AdministrationModule {}
|