Skip to content

Commit

Permalink
Add PrimeNG components
Browse files Browse the repository at this point in the history
  • Loading branch information
dstaflund committed Dec 29, 2018
1 parent 0c771d5 commit 1c8aeb5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 8 additions & 2 deletions nts-client-web/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@
"src/assets"
],
"styles": [
"src/styles.css"
"src/styles.css",
"node_modules/primeicons/primeicons.css",
"node_modules/primeng/resources/themes/nova-light/theme.css",
"node_modules/primeng/resources/primeng.min.css"
],
"scripts": []
},
Expand Down Expand Up @@ -79,7 +82,10 @@
"tsConfig": "src/tsconfig.spec.json",
"karmaConfig": "src/karma.conf.js",
"styles": [
"src/styles.css"
"src/styles.css",
"node_modules/primeicons/primeicons.css",
"node_modules/primeng/resources/themes/nova-light/theme.css",
"node_modules/primeng/resources/primeng.min.css"
],
"scripts": [],
"assets": [
Expand Down
4 changes: 3 additions & 1 deletion nts-client-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"private": true,
"dependencies": {
"@agm/core": "^1.0.0-beta.5",
"@angular/animations": "~7.1.0",
"@angular/animations": "^7.1.4",
"@angular/common": "~7.1.0",
"@angular/compiler": "~7.1.0",
"@angular/core": "~7.1.0",
Expand All @@ -21,6 +21,8 @@
"@angular/platform-browser-dynamic": "~7.1.0",
"@angular/router": "~7.1.0",
"core-js": "^2.5.4",
"primeicons": "^1.0.0",
"primeng": "^7.0.3",
"rxjs": "~6.3.3",
"tslib": "^1.9.0",
"tslint": "^5.11.0",
Expand Down
2 changes: 2 additions & 0 deletions nts-client-web/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {CommonModule} from '@angular/common';
import {FormsModule} from '@angular/forms';
import {AgmCoreModule} from '@agm/core';
import {HttpClientModule} from '@angular/common/http';
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';

@NgModule({
declarations: [
Expand All @@ -17,6 +18,7 @@ import {HttpClientModule} from '@angular/common/http';
}),
CommonModule,
BrowserModule,
BrowserAnimationsModule,
FormsModule,
HttpClientModule
],
Expand Down

0 comments on commit 1c8aeb5

Please sign in to comment.