Updated Angular to 7.2.0

Updated Angular Material to 7.2.1
Updated AngularCLI related files
(Calendar) Small style tweak
This commit is contained in:
sercan 2019-01-09 13:55:58 +03:00
parent 5870131ab2
commit 8dbd71f122
11 changed files with 460 additions and 541 deletions

920
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -19,19 +19,19 @@
"private": true,
"dependencies": {
"@agm/core": "1.0.0-beta.5",
"@angular/animations": "7.1.4",
"@angular/cdk": "7.2.0",
"@angular/common": "7.1.4",
"@angular/compiler": "7.1.4",
"@angular/core": "7.1.4",
"@angular/animations": "7.2.0",
"@angular/cdk": "7.2.1",
"@angular/common": "7.2.0",
"@angular/compiler": "7.2.0",
"@angular/core": "7.2.0",
"@angular/flex-layout": "7.0.0-beta.22",
"@angular/forms": "7.1.4",
"@angular/http": "7.1.4",
"@angular/material": "7.2.0",
"@angular/material-moment-adapter": "7.2.0",
"@angular/platform-browser": "7.1.4",
"@angular/platform-browser-dynamic": "7.1.4",
"@angular/router": "7.1.4",
"@angular/forms": "7.2.0",
"@angular/http": "7.2.0",
"@angular/material": "7.2.1",
"@angular/material-moment-adapter": "7.2.1",
"@angular/platform-browser": "7.2.0",
"@angular/platform-browser-dynamic": "7.2.0",
"@angular/router": "7.2.0",
"@ngrx/effects": "7.0.0",
"@ngrx/router-store": "7.0.0",
"@ngrx/store": "7.0.0",
@ -54,7 +54,7 @@
"moment": "2.23.0",
"ng2-charts": "1.6.0",
"ngrx-store-freeze": "0.2.4",
"ngx-color-picker": "7.2.0",
"ngx-color-picker": "7.2.3",
"ngx-cookie-service": "2.1.0",
"perfect-scrollbar": "1.4.0",
"prismjs": "1.15.0",
@ -64,10 +64,10 @@
"zone.js": "0.8.26"
},
"devDependencies": {
"@angular/cli": "7.1.4",
"@angular/compiler-cli": "7.1.4",
"@angular/language-service": "7.1.4",
"@angular-devkit/build-angular": "0.11.4",
"@angular/cli": "7.2.0",
"@angular/compiler-cli": "7.2.0",
"@angular/language-service": "7.2.0",
"@angular-devkit/build-angular": "0.12.0",
"@angularclass/hmr": "2.1.3",
"@types/jasmine": "2.8.14",
"@types/jasminewd2": "2.0.6",
@ -85,7 +85,7 @@
"ts-node": "7.0.1",
"tslib": "1.9.3",
"tslint": "5.11.0",
"typescript": "3.1.6",
"typescript": "3.2.2",
"webpack-bundle-analyzer": "3.0.3"
}
}

View File

@ -38,7 +38,7 @@
display: flex;
flex-direction: row;
align-items: center;
justify-content: start;
justify-content: flex-start;
@include mat-elevation(1);
transition: box-shadow 300ms ease;

View File

@ -26,7 +26,7 @@
<div class="title">
<span class="version">v7.1.0</span>
<span class="date">(...)</span>
<span class="date">2019.01.09</span>
</div>
<div class="groups">
@ -34,16 +34,19 @@
<div class="new">
<span class="title">New</span>
<ul>
<li>Updated Angular to 7.1.4</li>
<li>Updated Angular Material to 7.2.0</li>
<li>Updated Angular to 7.2.0</li>
<li>Updated Angular Material to 7.2.1</li>
<li>Updated ngrx to 7.0.0</li>
<li>Updated typescript to 3.2.2</li>
<li>Updated various other packages to latest versions</li>
<li>Updated various AngularCLI related files</li>
</ul>
</div>
<div class="fixed">
<span class="title">Fixed</span>
<ul>
<li>(Calendar) Small style fix</li>
<li>(ngx-datatable) Sort arrow icons are not showing correctly and they are not aligned</li>
</ul>
</div>

View File

@ -869,7 +869,7 @@ export const navigation: FuseNavigation[] = [
icon : 'update',
url : '/documentation/changelog',
badge: {
title: '7.0.1',
title: '7.1.0',
bg : '#EC0C8E',
fg : '#FFFFFF'
}

View File

@ -1,5 +1,5 @@
// This file can be replaced during build by using the `fileReplacements` array.
// `ng build ---prod` replaces `environment.ts` with `environment.prod.ts`.
// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`.
// The list of file replacements can be found in `angular.json`.
export const environment = {
@ -8,9 +8,10 @@ export const environment = {
};
/*
* In development mode, to ignore zone related error stack frames such as
* `zone.run`, `zoneDelegate.invokeTask` for easier debugging, you can
* import the following file, but please comment it out in production mode
* because it will have performance impact when throw error
* For easier debugging in development mode, you can import the following file
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
*
* This import should be commented out in production mode because it will have a negative impact
* on performance if an error is thrown.
*/
// import 'zone.js/dist/zone-error'; // Included with Angular CLI.

View File

@ -18,7 +18,7 @@ module.exports = function (config)
},
coverageIstanbulReporter: {
dir : require('path').join(__dirname, '../coverage'),
reports : ['html', 'lcovonly'],
reports : ['html', 'lcovonly', 'text-summary'],
fixWebpackSourcePaths: true
},
reporters : ['progress', 'kjhtml'],

View File

@ -1,8 +1,8 @@
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from 'app/app.module';
import { environment } from 'environments/environment';
import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
import { hmrBootstrap } from 'hmr';
if ( environment.production )

View File

@ -1,8 +1,7 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/app",
"module": "es2015"
"outDir": "../out-tsc/app"
},
"exclude": [
"test.ts",

View File

@ -5,9 +5,11 @@
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "es2015",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"paths": {
"@fuse": [
"@fuse/"

View File

@ -1,6 +1,6 @@
{
"rulesDirectory": [
"node_modules/codelyzer"
"codelyzer"
],
"rules": {
"arrow-return-shorthand": true,