annotate src/app/app.module.ts @ 62:7787ca310644 webpack tip

update @angular to 4.4.5.
author Robert Casties <casties@mpiwg-berlin.mpg.de>
date Wed, 18 Oct 2017 17:46:41 +0200
parents d7c947909ab8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
47
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
1 import { NgModule } from '@angular/core';
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
2 import { BrowserModule } from '@angular/platform-browser';
48
f8d6f8479e77 first working version with angular 2.4 (using old table w/o pager).
casties
parents: 47
diff changeset
3 import { FormsModule } from '@angular/forms';
f8d6f8479e77 first working version with angular 2.4 (using old table w/o pager).
casties
parents: 47
diff changeset
4 import { HttpModule } from '@angular/http';
47
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
5
51
1245781e2575 working on updating ng2-table.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 48
diff changeset
6 import { Ng2TableModule } from 'ng2-table/ng2-table';
62
7787ca310644 update @angular to 4.4.5.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
7 import { PaginationModule } from 'ngx-bootstrap';
51
1245781e2575 working on updating ng2-table.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 48
diff changeset
8
47
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
9 import { QueryAppComponent } from './query-app.component';
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
10 import { QuerySelectComponent } from './query-select.component';
51
1245781e2575 working on updating ng2-table.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 48
diff changeset
11 //import { QueryResultComponent } from './query-result.component';
1245781e2575 working on updating ng2-table.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 48
diff changeset
12 //import { QueryResultRowComponent } from './query-result-row.component';
1245781e2575 working on updating ng2-table.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 48
diff changeset
13 import { QueryResultTableComponent } from './query-result-table.component';
48
f8d6f8479e77 first working version with angular 2.4 (using old table w/o pager).
casties
parents: 47
diff changeset
14 import { QueryService } from './query.service';
f8d6f8479e77 first working version with angular 2.4 (using old table w/o pager).
casties
parents: 47
diff changeset
15 import { NormalizationService } from './normalization.service';
47
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
16
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
17
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
18 @NgModule({
51
1245781e2575 working on updating ng2-table.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 48
diff changeset
19 imports: [ BrowserModule, FormsModule, HttpModule,
52
738e90238443 ng2-table version mostly works (without page-n-of-m, problems with columns).
casties
parents: 51
diff changeset
20 Ng2TableModule, PaginationModule.forRoot() ],
47
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
21 declarations: [ QueryAppComponent, QuerySelectComponent,
51
1245781e2575 working on updating ng2-table.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 48
diff changeset
22 // QueryResultComponent, QueryResultRowComponent
1245781e2575 working on updating ng2-table.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 48
diff changeset
23 QueryResultTableComponent ],
48
f8d6f8479e77 first working version with angular 2.4 (using old table w/o pager).
casties
parents: 47
diff changeset
24 providers: [ QueryService, NormalizationService ],
47
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
25 bootstrap: [ QueryAppComponent ]
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
26 })
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
27 export class AppModule { }