forked from fetrarij/ngx-daterangepicker-material
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.module.ts
80 lines (79 loc) · 3.65 KB
/
app.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import { NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { MatButtonModule } from '@angular/material/button';
import { MatCardModule } from '@angular/material/card';
import { MatCheckboxModule } from '@angular/material/checkbox';
import { MatFormFieldModule } from '@angular/material/form-field';
import { MatGridListModule } from '@angular/material/grid-list';
import { MatInputModule } from '@angular/material/input';
import { MatSelectModule } from '@angular/material/select';
import { MatToolbarModule } from '@angular/material/toolbar';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { RouterModule } from '@angular/router';
import { HighlightModule } from 'ngx-highlightjs';
import { NgxDaterangepickerMd } from './../../../src/daterangepicker';
import { AppComponent } from './app.component';
import { appRoutes } from './app.routing';
import { CustomRangesComponent } from './custom-ranges/custom-ranges.component';
import { ExampleComponent } from './example/example.component';
import { CustomRangesExampleComponent } from './examples/custom-ranges-example.component';
import { CustomRangesInlineExampleComponent } from './examples/custom-ranges-inline-example.component';
import { FullExampleComponent } from './examples/full-example.component';
import { ReactiveFormMultiSelectExample } from './examples/reactive-form-multi-select-example.component';
import { ReactiveFormSingleSelectExample } from './examples/reactive-form-single-select-example.component';
import { SimpleExampleComponent } from './examples/simple-example.component';
import { SimpleInlineExampleComponent } from './examples/simple-inline-example.component';
import { SimpleInlineTimepickerExampleComponent } from './examples/simple-inline-timepicker-example.component';
import { SingleDatepickerExampleComponent } from './examples/single-datepicker-example.component';
import { TimepickerExampleComponent } from './examples/timepicker-example.component';
import { FooterModule } from './footer/footer';
import { FullComponent } from './full/full.component';
import { NavBarModule } from './navbar/navbar';
import { ReactiveFormComponent } from './reactive-form/reactive-form.component';
import { SimpleComponent } from './simple/simple.component';
import { SingleDatepickerComponent } from './single-datepicker/single-datepicker.component';
import { TimepickerComponent } from './timepicker/timepicker.component';
@NgModule({
declarations: [
AppComponent,
SimpleComponent,
ExampleComponent,
FullComponent,
CustomRangesExampleComponent,
CustomRangesInlineExampleComponent,
FullExampleComponent,
SingleDatepickerComponent,
SingleDatepickerExampleComponent,
SimpleExampleComponent,
SimpleInlineExampleComponent,
SimpleInlineTimepickerExampleComponent,
ReactiveFormMultiSelectExample,
ReactiveFormSingleSelectExample,
TimepickerExampleComponent,
CustomRangesComponent,
ReactiveFormComponent,
TimepickerComponent,
],
imports: [
BrowserModule,
BrowserAnimationsModule,
FooterModule,
FormsModule,
HighlightModule,
ReactiveFormsModule,
MatButtonModule,
MatCheckboxModule,
MatToolbarModule,
MatFormFieldModule,
MatCardModule,
MatGridListModule,
MatInputModule,
MatSelectModule,
NavBarModule,
NgxDaterangepickerMd,
RouterModule.forRoot(appRoutes),
],
bootstrap: [AppComponent],
})
export class AppModule {}