-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathcalendar-examples.module.ts
44 lines (41 loc) · 2.27 KB
/
calendar-examples.module.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { NgModule, NO_ERRORS_SCHEMA } from '@angular/core';
import { NativeScriptModule } from "nativescript-angular/nativescript.module";
import { NativeScriptRouterModule } from "nativescript-angular/router";
import { NativeScriptUICalendarModule } from "nativescript-ui-calendar/angular";
import { NativeScriptUIListViewModule } from "nativescript-ui-listview/angular";
import { CalendarLocalizationComponent } from './calendar-localization/calendar-localization.component';
import { CalendarCellStylingComponent } from './cell-styling/calendar-cell-styling.component';
import { CalendarEventsViewModesComponent } from './events-view-modes/calendar-events-view-modes.component';
import { CalendarGettingStartedComponent } from './getting-started/calendar-getting-started.component';
import { CalendarPopulatingWithDataComponent } from './populating-with-data/calendar-populating-with-data.component';
import { CalendarProgrammaticControlComponent } from './programmatic-control/calendar-programmatic-control.component';
import { CalendarSelectionModesComponent } from './selection-modes/calendar-selection-modes.component';
import { CalendarTransitionModesComponent } from './transition-modes/calendar-transition-modes.component';
import { CalendarViewModesComponent } from './view-modes/calendar-view-modes.component';
import { CalendarDayViewComponent } from './day-view/calendar-day-view.component';
import { routes } from './calendar-examples.routing';
import { CommonDirectivesModule } from '../navigation/directives/common-directives.module';
@NgModule({
schemas: [NO_ERRORS_SCHEMA],
imports: [
NativeScriptModule,
CommonDirectivesModule,
NativeScriptUICalendarModule,
NativeScriptUIListViewModule,
NativeScriptRouterModule,
NativeScriptRouterModule.forChild(routes)
],
declarations: [
CalendarLocalizationComponent,
CalendarCellStylingComponent,
CalendarEventsViewModesComponent,
CalendarGettingStartedComponent,
CalendarPopulatingWithDataComponent,
CalendarProgrammaticControlComponent,
CalendarSelectionModesComponent,
CalendarTransitionModesComponent,
CalendarViewModesComponent,
CalendarDayViewComponent
]
})
export class CalendarExamplesModule { }