Angular 8.1.0 compatibility update

Various small fixes
This commit is contained in:
sercan
2019-07-04 18:11:05 +03:00
parent 00e228ab5a
commit 72fd2dd22d
15 changed files with 745 additions and 542 deletions

View File

@@ -144,7 +144,7 @@
.datatable-footer-inner {
padding: 0 24px;
@include media-breakpoint('sm') {
@include media-breakpoint('lt-md') {
flex-direction: column;
padding: 16px 0;
height: auto !important;
@@ -166,7 +166,18 @@
li {
a {
display: flex;
align-items: center;
justify-content: center;
text-decoration: none !important;
i {
width: 20px;
min-width: 20px;
height: 20px;
min-height: 20px;
padding: 0;
}
}
}
}

View File

@@ -19,6 +19,34 @@
<div class="changelog">
<!-- --------------------------------------------------------------------------------------------- -->
<!-- @ v8.1.0 -->
<!-- --------------------------------------------------------------------------------------------- -->
<div class="entry">
<div class="title">
<span class="version">v8.1.0</span>
<span class="date">2019.07.04</span>
</div>
<div class="groups">
<div class="new">
<span class="title">New</span>
<ul>
<li>Updated Angular to 8.1.0</li>
<li>Updated Angular Material to 8.0.2</li>
<li>Use proper version on web-animations-js package</li>
<li>Updated various other packages to latest versions</li>
<li>Updated various AngularCLI related files</li>
<li>Updated various project related files</li>
</ul>
</div>
</div>
</div>
<!-- --------------------------------------------------------------------------------------------- -->
<!-- @ v8.0.0 -->
<!-- --------------------------------------------------------------------------------------------- -->

View File

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

View File

@@ -26,5 +26,5 @@ if ( environment.hmr )
}
else
{
bootstrap().catch(err => console.log(err));
bootstrap().catch(err => console.error(err));
}

View File

@@ -57,6 +57,7 @@ import 'web-animations-js'; // Run `npm install --save web-animations-js`.
*/
import 'zone.js/dist/zone'; // Included with Angular CLI.
/***************************************************************************************************
* APPLICATION IMPORTS
*/