From b8803a055fcf4671cf57f405b206827d269e7873 Mon Sep 17 00:00:00 2001 From: Sercan Yemen Date: Thu, 12 Jul 2018 13:27:26 +0300 Subject: [PATCH] Removed side panel from auth pages Updated the changelog Theme options button adjustments --- src/app/app.component.html | 3 +- src/app/app.component.scss | 5 +- .../changelog/changelog.component.html | 46 ++++++++++++++++++- .../forgot-password-2.component.ts | 9 ++-- .../forgot-password.component.ts | 9 ++-- .../authentication/lock/lock.component.ts | 9 ++-- .../login-2/login-2.component.ts | 9 ++-- .../authentication/login/login.component.ts | 9 ++-- .../mail-confirm/mail-confirm.component.ts | 9 ++-- .../register-2/register-2.component.ts | 9 ++-- .../register/register.component.ts | 9 ++-- .../reset-password-2.component.ts | 9 ++-- .../reset-password.component.ts | 9 ++-- .../coming-soon/coming-soon.component.ts | 9 ++-- .../pages/errors/404/error-404.component.ts | 9 ++-- .../pages/errors/500/error-500.component.ts | 9 ++-- .../maintenance/maintenance.component.ts | 9 ++-- src/app/navigation/navigation.ts | 2 +- 18 files changed, 135 insertions(+), 47 deletions(-) diff --git a/src/app/app.component.html b/src/app/app.component.html index fe46258b..8e2890eb 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -20,7 +20,8 @@ diff --git a/src/app/app.component.scss b/src/app/app.component.scss index a3c28b9f..e1b40cd1 100644 --- a/src/app/app.component.scss +++ b/src/app/app.component.scss @@ -23,7 +23,6 @@ opacity: .90; z-index: 998; - &.right-side-panel { @include media-breakpoint-up('lg') { @@ -31,6 +30,10 @@ } } + &.side-panel-hidden { + right: 0 !important; + } + mat-icon { animation: rotating 3s linear infinite; } diff --git a/src/app/main/documentation/changelog/changelog.component.html b/src/app/main/documentation/changelog/changelog.component.html index 7386ede1..cd38391e 100644 --- a/src/app/main/documentation/changelog/changelog.component.html +++ b/src/app/main/documentation/changelog/changelog.component.html @@ -20,12 +20,12 @@
- +
- v6.2.1 + v6.2.2 (2018-07-12)
@@ -58,6 +58,48 @@
+ + + +
+ +
+ v6.2.1 + (2018-07-12) +
+ +
+ +
+ New +
    +
  • + (Layout) Added SidePanel position to the layout for controlling Chat Panel and possible + other panels +
  • +
+
+ +
+ Fixed +
    +
      +
    • (Chat Panel) Mobile width issues
    • +
    +
+
+ +
+ Improved +
    +
  • Removed chat panel from auth pages using layout options
  • +
+
+ +
+ +
+ diff --git a/src/app/main/pages/authentication/forgot-password-2/forgot-password-2.component.ts b/src/app/main/pages/authentication/forgot-password-2/forgot-password-2.component.ts index 17c4950d..4c4fdee9 100644 --- a/src/app/main/pages/authentication/forgot-password-2/forgot-password-2.component.ts +++ b/src/app/main/pages/authentication/forgot-password-2/forgot-password-2.component.ts @@ -28,13 +28,16 @@ export class ForgotPassword2Component implements OnInit // Configure the layout this._fuseConfigService.config = { layout: { - navbar : { + navbar : { hidden: true }, - toolbar: { + toolbar : { hidden: true }, - footer : { + footer : { + hidden: true + }, + sidepanel: { hidden: true } } diff --git a/src/app/main/pages/authentication/forgot-password/forgot-password.component.ts b/src/app/main/pages/authentication/forgot-password/forgot-password.component.ts index 3557ef8f..107b6e79 100644 --- a/src/app/main/pages/authentication/forgot-password/forgot-password.component.ts +++ b/src/app/main/pages/authentication/forgot-password/forgot-password.component.ts @@ -28,13 +28,16 @@ export class ForgotPasswordComponent implements OnInit // Configure the layout this._fuseConfigService.config = { layout: { - navbar : { + navbar : { hidden: true }, - toolbar: { + toolbar : { hidden: true }, - footer : { + footer : { + hidden: true + }, + sidepanel: { hidden: true } } diff --git a/src/app/main/pages/authentication/lock/lock.component.ts b/src/app/main/pages/authentication/lock/lock.component.ts index 086d7078..f1c1c995 100644 --- a/src/app/main/pages/authentication/lock/lock.component.ts +++ b/src/app/main/pages/authentication/lock/lock.component.ts @@ -28,13 +28,16 @@ export class LockComponent implements OnInit // Configure the layout this._fuseConfigService.config = { layout: { - navbar : { + navbar : { hidden: true }, - toolbar: { + toolbar : { hidden: true }, - footer : { + footer : { + hidden: true + }, + sidepanel: { hidden: true } } diff --git a/src/app/main/pages/authentication/login-2/login-2.component.ts b/src/app/main/pages/authentication/login-2/login-2.component.ts index 5fe9ca97..201b8ecc 100644 --- a/src/app/main/pages/authentication/login-2/login-2.component.ts +++ b/src/app/main/pages/authentication/login-2/login-2.component.ts @@ -28,13 +28,16 @@ export class Login2Component implements OnInit // Configure the layout this._fuseConfigService.config = { layout: { - navbar : { + navbar : { hidden: true }, - toolbar: { + toolbar : { hidden: true }, - footer : { + footer : { + hidden: true + }, + sidepanel: { hidden: true } } diff --git a/src/app/main/pages/authentication/login/login.component.ts b/src/app/main/pages/authentication/login/login.component.ts index fc2e2af9..0b4244ab 100644 --- a/src/app/main/pages/authentication/login/login.component.ts +++ b/src/app/main/pages/authentication/login/login.component.ts @@ -28,13 +28,16 @@ export class LoginComponent implements OnInit // Configure the layout this._fuseConfigService.config = { layout: { - navbar : { + navbar : { hidden: true }, - toolbar: { + toolbar : { hidden: true }, - footer : { + footer : { + hidden: true + }, + sidepanel: { hidden: true } } diff --git a/src/app/main/pages/authentication/mail-confirm/mail-confirm.component.ts b/src/app/main/pages/authentication/mail-confirm/mail-confirm.component.ts index e69c2256..6a7bc059 100644 --- a/src/app/main/pages/authentication/mail-confirm/mail-confirm.component.ts +++ b/src/app/main/pages/authentication/mail-confirm/mail-confirm.component.ts @@ -23,13 +23,16 @@ export class MailConfirmComponent // Configure the layout this._fuseConfigService.config = { layout: { - navbar : { + navbar : { hidden: true }, - toolbar: { + toolbar : { hidden: true }, - footer : { + footer : { + hidden: true + }, + sidepanel: { hidden: true } } diff --git a/src/app/main/pages/authentication/register-2/register-2.component.ts b/src/app/main/pages/authentication/register-2/register-2.component.ts index fac699d1..9da7238b 100644 --- a/src/app/main/pages/authentication/register-2/register-2.component.ts +++ b/src/app/main/pages/authentication/register-2/register-2.component.ts @@ -27,13 +27,16 @@ export class Register2Component implements OnInit, OnDestroy // Configure the layout this._fuseConfigService.config = { layout: { - navbar : { + navbar : { hidden: true }, - toolbar: { + toolbar : { hidden: true }, - footer : { + footer : { + hidden: true + }, + sidepanel: { hidden: true } } diff --git a/src/app/main/pages/authentication/register/register.component.ts b/src/app/main/pages/authentication/register/register.component.ts index b201cfcd..c472f1f4 100644 --- a/src/app/main/pages/authentication/register/register.component.ts +++ b/src/app/main/pages/authentication/register/register.component.ts @@ -27,13 +27,16 @@ export class RegisterComponent implements OnInit, OnDestroy // Configure the layout this._fuseConfigService.config = { layout: { - navbar : { + navbar : { hidden: true }, - toolbar: { + toolbar : { hidden: true }, - footer : { + footer : { + hidden: true + }, + sidepanel: { hidden: true } } diff --git a/src/app/main/pages/authentication/reset-password-2/reset-password-2.component.ts b/src/app/main/pages/authentication/reset-password-2/reset-password-2.component.ts index e8d63786..47ae0a52 100644 --- a/src/app/main/pages/authentication/reset-password-2/reset-password-2.component.ts +++ b/src/app/main/pages/authentication/reset-password-2/reset-password-2.component.ts @@ -27,13 +27,16 @@ export class ResetPassword2Component implements OnInit, OnDestroy // Configure the layout this._fuseConfigService.config = { layout: { - navbar : { + navbar : { hidden: true }, - toolbar: { + toolbar : { hidden: true }, - footer : { + footer : { + hidden: true + }, + sidepanel: { hidden: true } } diff --git a/src/app/main/pages/authentication/reset-password/reset-password.component.ts b/src/app/main/pages/authentication/reset-password/reset-password.component.ts index 02726c80..d9b6a474 100644 --- a/src/app/main/pages/authentication/reset-password/reset-password.component.ts +++ b/src/app/main/pages/authentication/reset-password/reset-password.component.ts @@ -27,13 +27,16 @@ export class ResetPasswordComponent implements OnInit, OnDestroy // Configure the layout this._fuseConfigService.config = { layout: { - navbar : { + navbar : { hidden: true }, - toolbar: { + toolbar : { hidden: true }, - footer : { + footer : { + hidden: true + }, + sidepanel: { hidden: true } } diff --git a/src/app/main/pages/coming-soon/coming-soon.component.ts b/src/app/main/pages/coming-soon/coming-soon.component.ts index 39cbe734..0e8ab27a 100644 --- a/src/app/main/pages/coming-soon/coming-soon.component.ts +++ b/src/app/main/pages/coming-soon/coming-soon.component.ts @@ -34,13 +34,16 @@ export class ComingSoonComponent implements OnInit, OnDestroy // Configure the layout this._fuseConfigService.config = { layout: { - navbar : { + navbar : { hidden: true }, - toolbar: { + toolbar : { hidden: true }, - footer : { + footer : { + hidden: true + }, + sidepanel: { hidden: true } } diff --git a/src/app/main/pages/errors/404/error-404.component.ts b/src/app/main/pages/errors/404/error-404.component.ts index 2f8a6986..6e28679b 100644 --- a/src/app/main/pages/errors/404/error-404.component.ts +++ b/src/app/main/pages/errors/404/error-404.component.ts @@ -21,13 +21,16 @@ export class Error404Component // Configure the layout this._fuseConfigService.config = { layout: { - navbar : { + navbar : { hidden: true }, - toolbar: { + toolbar : { hidden: true }, - footer : { + footer : { + hidden: true + }, + sidepanel: { hidden: true } } diff --git a/src/app/main/pages/errors/500/error-500.component.ts b/src/app/main/pages/errors/500/error-500.component.ts index f68e94e3..a0985865 100644 --- a/src/app/main/pages/errors/500/error-500.component.ts +++ b/src/app/main/pages/errors/500/error-500.component.ts @@ -21,13 +21,16 @@ export class Error500Component // Configure the layout this._fuseConfigService.config = { layout: { - navbar : { + navbar : { hidden: true }, - toolbar: { + toolbar : { hidden: true }, - footer : { + footer : { + hidden: true + }, + sidepanel: { hidden: true } } diff --git a/src/app/main/pages/maintenance/maintenance.component.ts b/src/app/main/pages/maintenance/maintenance.component.ts index 4e86c78e..50b7e9a0 100644 --- a/src/app/main/pages/maintenance/maintenance.component.ts +++ b/src/app/main/pages/maintenance/maintenance.component.ts @@ -23,13 +23,16 @@ export class MaintenanceComponent // Configure the layout this._fuseConfigService.config = { layout: { - navbar : { + navbar : { hidden: true }, - toolbar: { + toolbar : { hidden: true }, - footer : { + footer : { + hidden: true + }, + sidepanel: { hidden: true } } diff --git a/src/app/navigation/navigation.ts b/src/app/navigation/navigation.ts index ee1fea20..62f9df0e 100644 --- a/src/app/navigation/navigation.ts +++ b/src/app/navigation/navigation.ts @@ -849,7 +849,7 @@ export const navigation: FuseNavigation[] = [ icon : 'update', url : '/documentation/changelog', badge: { - title: '6.2.0', + title: '6.2.2', bg : '#EC0C8E', fg : '#FFFFFF' }