-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/v1.0.0-beta.5'
- Loading branch information
Showing
150 changed files
with
5,045 additions
and
2,485 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "covalent", | ||
"version": "1.0.0-beta.4", | ||
"version": "1.0.0-beta.5", | ||
"private": true, | ||
"description": "Teradata UI Platform built on Angular Material", | ||
"keywords": [ | ||
|
@@ -15,7 +15,7 @@ | |
"postinstall": "webdriver-manager update", | ||
"reinstall": "rm -rf node_modules tmp deploy dist && npm i", | ||
"webdriver-update": "bash ./node_modules/.bin/webdriver-manager update", | ||
"test": "ng test --code-coverage --single-run", | ||
"test": "ng test --code-coverage --single-run --sourcemap=false", | ||
"coverage-win": "start chrome ./coverage/index.html", | ||
"coverage-mac": "open -a \"Google Chrome\" coverage/index.html", | ||
"coveralls": "cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js", | ||
|
@@ -55,33 +55,33 @@ | |
"Steven Ov <[email protected]>" | ||
], | ||
"dependencies": { | ||
"@angular/animations": "^4.1.0", | ||
"@angular/common": "^4.1.0", | ||
"@angular/compiler": "^4.1.0", | ||
"@angular/core": "^4.1.0", | ||
"@angular/forms": "^4.1.0", | ||
"@angular/http": "^4.1.0", | ||
"@angular/material": "2.0.0-beta.5", | ||
"@angular/platform-browser": "^4.1.0", | ||
"@angular/platform-browser-dynamic": "^4.1.0", | ||
"@angular/platform-server": "^4.1.0", | ||
"@angular/router": "^4.1.0", | ||
"@ngx-translate/core": "6.0.0", | ||
"@ngx-translate/http-loader": "0.0.3", | ||
"@swimlane/ngx-charts": "5.0.0", | ||
"@angular/animations": "^4.2.0", | ||
"@angular/common": "^4.2.0", | ||
"@angular/compiler": "^4.2.0", | ||
"@angular/core": "^4.2.0", | ||
"@angular/forms": "^4.2.0", | ||
"@angular/http": "^4.2.0", | ||
"@angular/material": "2.0.0-beta.6", | ||
"@angular/platform-browser": "^4.2.0", | ||
"@angular/platform-browser-dynamic": "^4.2.0", | ||
"@angular/platform-server": "^4.2.0", | ||
"@angular/router": "^4.2.0", | ||
"@ngx-translate/core": "7.0.0", | ||
"@ngx-translate/http-loader": "0.1.0", | ||
"@swimlane/ngx-charts": "5.3.1", | ||
"core-js": "^2.4.1", | ||
"d3": "^4.4.0", | ||
"hammerjs": "^2.0.8", | ||
"highlight.js": "9.11.0", | ||
"rxjs": "^5.2.0", | ||
"showdown": "1.6.4", | ||
"web-animations-js": "2.2.2", | ||
"zone.js": "^0.8.6" | ||
"web-animations-js": "2.2.5", | ||
"zone.js": "^0.8.12" | ||
}, | ||
"devDependencies": { | ||
"@angular/cli": "1.0.3", | ||
"@angular/compiler-cli": "^4.1.0", | ||
"@angular/language-service": "^4.1.0", | ||
"@angular/cli": "1.1.1", | ||
"@angular/compiler-cli": "^4.2.0", | ||
"@angular/language-service": "^4.2.0", | ||
"@types/hammerjs": "^2.0.30", | ||
"@types/jasmine": "2.5.38", | ||
"@types/node": "~6.0.60", | ||
|
@@ -117,6 +117,6 @@ | |
"semver": "5.2.0", | ||
"ts-node": "~2.0.0", | ||
"tslint": "^5.2.0", | ||
"typescript": "^2.3.1" | ||
"typescript": "^2.3.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,37 @@ | ||
import { Routes, RouterModule } from '@angular/router'; | ||
|
||
import { HomeComponent } from './components/home/home.component'; | ||
import { TemplatesComponent } from './components/templates/templates.component'; | ||
import { SelectivePreloadingStrategyService } from './services'; | ||
|
||
const routes: Routes = [{ | ||
component: HomeComponent, | ||
path: '', | ||
}, { | ||
path: '', loadChildren: './components/docs/docs.module#DocsModule', | ||
component: TemplatesComponent, | ||
path: 'templates', | ||
}, { | ||
path: '', loadChildren: './components/style-guide/style-guide.module#StyleGuideModule', | ||
// preload: true loads the module immediately | ||
path: '', data: { preload: false, }, loadChildren: './components/docs/docs.module#DocsModule', | ||
}, { | ||
path: '', loadChildren: './components/layouts/layouts.module#LayoutsModule', | ||
// preload: true loads the module immediately | ||
path: '', data: { preload: false, }, loadChildren: './components/style-guide/style-guide.module#StyleGuideModule', | ||
}, { | ||
path: '', loadChildren: './components/components/components.module#ComponentsModule', | ||
// preload: true loads the module immediately | ||
path: '', data: { preload: false, }, loadChildren: './components/layouts/layouts.module#LayoutsModule', | ||
}, { | ||
// preload: true loads the module immediately | ||
path: '', data: { preload: true, }, loadChildren: './components/components/components.module#ComponentsModule', | ||
}, { | ||
path: '**', redirectTo: '/', | ||
}, | ||
]; | ||
|
||
export const appRoutingProviders: any[] = [ | ||
|
||
]; | ||
|
||
export const appRoutes: any = RouterModule.forRoot(routes, { useHash: true }); | ||
export const appRoutes: any = RouterModule.forRoot(routes, { | ||
useHash: true, | ||
preloadingStrategy: SelectivePreloadingStrategyService, | ||
}); |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.