Compare commits

..

4 Commits

Author SHA1 Message Date
sercan
8e4e4bf401 Updated the changelog navigation item badge 2018-11-16 10:29:35 +03:00
sercan
b184c839da Updated Angular, Angular Material and various other packages
Upadte the changelog
Increased the Fuse version
2018-11-16 10:21:37 +03:00
sercan
017ce59254 (FuseNavigation) Trigger observables on item add
(Docs) Fixed Material Color Picker input for the documentation
2018-11-16 09:53:31 +03:00
sercan
842cb37fcb Fixed: Wrong link to the fuse-config service docs page
Removed no-redundant-jsdoc rule from the tslint
2018-10-24 11:20:05 +03:00
8 changed files with 588 additions and 298 deletions

766
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "fuse",
"version": "7.0.0",
"version": "7.0.1",
"license": "https://themeforest.net/licenses/terms/regular",
"scripts": {
"ng": "ng",
@@ -19,31 +19,31 @@
"private": true,
"dependencies": {
"@agm/core": "1.0.0-beta.5",
"@angular/animations": "7.0.0",
"@angular/cdk": "7.0.0",
"@angular/common": "7.0.0",
"@angular/compiler": "7.0.0",
"@angular/core": "7.0.0",
"@angular/animations": "7.0.4",
"@angular/cdk": "7.0.4",
"@angular/common": "7.0.4",
"@angular/compiler": "7.0.4",
"@angular/core": "7.0.4",
"@angular/flex-layout": "7.0.0-beta.19",
"@angular/forms": "7.0.0",
"@angular/http": "7.0.0",
"@angular/material": "7.0.0",
"@angular/material-moment-adapter": "7.0.0",
"@angular/platform-browser": "7.0.0",
"@angular/platform-browser-dynamic": "7.0.0",
"@angular/router": "7.0.0",
"@ngrx/effects": "6.1.0",
"@ngrx/router-store": "6.1.0",
"@ngrx/store": "6.1.0",
"@ngrx/store-devtools": "6.1.0",
"@ngx-translate/core": "10.0.2",
"@angular/forms": "7.0.4",
"@angular/http": "7.0.4",
"@angular/material": "7.0.4",
"@angular/material-moment-adapter": "7.0.4",
"@angular/platform-browser": "7.0.4",
"@angular/platform-browser-dynamic": "7.0.4",
"@angular/router": "7.0.4",
"@ngrx/effects": "6.1.2",
"@ngrx/router-store": "6.1.2",
"@ngrx/store": "6.1.2",
"@ngrx/store-devtools": "6.1.2",
"@ngx-translate/core": "11.0.1",
"@swimlane/dragula": "3.7.3",
"@swimlane/ngx-charts": "9.0.0",
"@swimlane/ngx-datatable": "13.1.0",
"@swimlane/ngx-dnd": "5.1.0",
"@swimlane/ngx-charts": "10.0.0",
"@swimlane/ngx-datatable": "14.0.0",
"@swimlane/ngx-dnd": "6.0.0",
"@types/prismjs": "1.9.0",
"angular-calendar": "0.26.3",
"angular-in-memory-web-api": "0.6.1",
"angular-calendar": "0.26.4",
"angular-in-memory-web-api": "0.7.0",
"chart.js": "2.7.3",
"classlist.js": "1.1.20150312",
"core-js": "2.5.7",
@@ -54,8 +54,8 @@
"moment": "2.22.2",
"ng2-charts": "1.6.0",
"ngrx-store-freeze": "0.2.4",
"ngx-color-picker": "6.7.0",
"ngx-cookie-service": "1.0.10",
"ngx-color-picker": "7.0.2",
"ngx-cookie-service": "2.0.0",
"perfect-scrollbar": "1.4.0",
"prismjs": "1.15.0",
"rxjs": "6.3.3",
@@ -64,14 +64,14 @@
"zone.js": "0.8.26"
},
"devDependencies": {
"@angular/cli": "7.0.1",
"@angular/compiler-cli": "7.0.0",
"@angular/language-service": "7.0.0",
"@angular-devkit/build-angular": "0.10.1",
"@angular/cli": "7.0.6",
"@angular/compiler-cli": "7.0.4",
"@angular/language-service": "7.0.4",
"@angular-devkit/build-angular": "0.10.6",
"@angularclass/hmr": "2.1.3",
"@types/jasmine": "2.8.9",
"@types/jasminewd2": "2.0.5",
"@types/lodash": "4.14.117",
"@types/jasmine": "2.8.11",
"@types/jasminewd2": "2.0.6",
"@types/lodash": "4.14.118",
"@types/node": "8.9.5",
"codelyzer": "4.5.0",
"jasmine-core": "2.99.1",
@@ -84,7 +84,7 @@
"protractor": "5.4.1",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"typescript": "3.1.3",
"typescript": "3.1.6",
"webpack-bundle-analyzer": "3.0.3"
}
}

View File

@@ -332,6 +332,9 @@ export class FuseNavigationService
{
navigation.push(item);
// Trigger the observable
this._onNavigationItemAdded.next(true);
return;
}
@@ -339,6 +342,11 @@ export class FuseNavigationService
if ( id === 'start' )
{
navigation.unshift(item);
// Trigger the observable
this._onNavigationItemAdded.next(true);
return;
}
// Add it to a specific location

View File

@@ -19,6 +19,39 @@
<div class="changelog">
<!-- --------------------------------------------------------------------------------------------- -->
<!-- @ v7.0.1 -->
<!-- --------------------------------------------------------------------------------------------- -->
<div class="entry">
<div class="title">
<span class="version">v7.0.1</span>
<span class="date">(2018-11-16)</span>
</div>
<div class="groups">
<div class="new">
<span class="title">New</span>
<ul>
<li>Updated Angular to 7.0.4</li>
<li>Updated Angular Material to 7.0.4</li>
<li>Updated various other packages to latest versions</li>
</ul>
</div>
<div class="fixed">
<span class="title">Fixed</span>
<ul>
<li>(Docs) Color picker input is wrong</li>
<li>(FuseNavigation) Trigger observables on item add</li>
</ul>
</div>
</div>
</div>
<!-- --------------------------------------------------------------------------------------------- -->
<!-- @ v7.0.0 -->
<!-- --------------------------------------------------------------------------------------------- -->
@@ -26,7 +59,7 @@
<div class="title">
<span class="version">v7.0.0</span>
<span class="date">(TBA)</span>
<span class="date">(2018-10-19)</span>
</div>
<div class="groups">

View File

@@ -33,7 +33,7 @@
<fuse-highlight lang="html">
<textarea #source>
<fuse-material-color-picker [(selectedClass)]="colorClass"
(onValueChange)="onSettingsChange()">
(onColorChanged)="onColorChanged()">
</fuse-material-color-picker>
</textarea>
</fuse-highlight>
@@ -56,7 +56,7 @@
<div class="section-title">Outputs</div>
<p class="py-8" fxLayout="row" fxLayoutAlign="start center">
<code class="mr-16">onValueChange</code>
<code class="mr-16">onColorChanged</code>
<span>
Event that triggered when a color selected. Returns an object that holds palette, hue, class name,
background and foreground colors.

View File

@@ -63,10 +63,10 @@
<p>
You can get more information about the <b>Fuse Config Service</b> and its usage from
<a routerLink="/documentation/services/config">Config</a> documantation page.
<a routerLink="/documentation/services/fuse-config">Config</a> documantation page.
</p>
</div>
<!-- / CONTENT -->
</div>
</div>

View File

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

View File

@@ -65,7 +65,6 @@
],
"no-misused-new": true,
"no-non-null-assertion": true,
"no-redundant-jsdoc": true,
"no-shadowed-variable": true,
"no-string-literal": false,
"no-string-throw": true,