mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2026-03-09 15:28:41 +00:00
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:
@@ -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;
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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'
|
||||
}
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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'],
|
||||
@@ -29,4 +29,4 @@ module.exports = function (config)
|
||||
browsers : ['Chrome'],
|
||||
singleRun : false
|
||||
});
|
||||
};
|
||||
};
|
||||
|
||||
@@ -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 )
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../out-tsc/app",
|
||||
"module": "es2015"
|
||||
"outDir": "../out-tsc/app"
|
||||
},
|
||||
"exclude": [
|
||||
"test.ts",
|
||||
|
||||
Reference in New Issue
Block a user