From 693e44dbaf543ff28768021a9cf1cacb7fd2cd45 Mon Sep 17 00:00:00 2001 From: sercan Date: Tue, 31 Aug 2021 15:47:35 +0300 Subject: [PATCH 1/2] (QuickChat) Fixed: Overflowing issue --- .../quick-chat/quick-chat.component.html | 4 +-- .../quick-chat/quick-chat.component.scss | 32 +++++++++++++++++++ 2 files changed, 34 insertions(+), 2 deletions(-) diff --git a/src/app/layout/common/quick-chat/quick-chat.component.html b/src/app/layout/common/quick-chat/quick-chat.component.html index 7b55c534..9af73b71 100644 --- a/src/app/layout/common/quick-chat/quick-chat.component.html +++ b/src/app/layout/common/quick-chat/quick-chat.component.html @@ -1,6 +1,6 @@ -
+
diff --git a/src/app/layout/common/quick-chat/quick-chat.component.scss b/src/app/layout/common/quick-chat/quick-chat.component.scss index 62befd66..a59ee18e 100644 --- a/src/app/layout/common/quick-chat/quick-chat.component.scss +++ b/src/app/layout/common/quick-chat/quick-chat.component.scss @@ -1,5 +1,25 @@ quick-chat { z-index: 399; + + > div { + overflow: hidden; + } + + &.quick-chat-opened { + + > div { + overflow: visible; + } + } + + :not(&.quick-chat-opened) { + + > div { + overflow: visible; + animation: addOverflowHidden 1ms linear 400ms; + animation-fill-mode: forwards; + } + } } /* Adjustments depending on the selected layout */ @@ -24,3 +44,15 @@ quick-chat { opacity: 1; background-color: transparent; } + +@keyframes addOverflowHidden { + 0% { + overflow: visible + } + 99% { + overflow: visible; + } + 100% { + overflow: hidden; + } +} From b6a3023ebd364a9b8ed91f43056449d75bf994e2 Mon Sep 17 00:00:00 2001 From: sercan Date: Tue, 31 Aug 2021 15:49:10 +0300 Subject: [PATCH 2/2] Increase the version number --- package-lock.json | 2 +- package.json | 2 +- src/@fuse/version/fuse-version.ts | 2 +- src/app/mock-api/common/navigation/data.ts | 2 +- src/app/modules/admin/docs/changelog/changelog.ts | 13 +++++++++++++ 5 files changed, 17 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index d91331f2..a3f26892 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@fuse/demo", - "version": "13.6.0", + "version": "13.6.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 33e8c6b3..0feeca3f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fuse/demo", - "version": "13.6.0", + "version": "13.6.1", "description": "Fuse - Angular Admin Template and Starter Project", "author": "https://themeforest.net/user/srcn", "license": "https://themeforest.net/licenses/standard", diff --git a/src/@fuse/version/fuse-version.ts b/src/@fuse/version/fuse-version.ts index e5745d8c..48095f0f 100644 --- a/src/@fuse/version/fuse-version.ts +++ b/src/@fuse/version/fuse-version.ts @@ -1,3 +1,3 @@ import { Version } from '@fuse/version/version'; -export const FUSE_VERSION = new Version('13.6.0').full; +export const FUSE_VERSION = new Version('13.6.1').full; diff --git a/src/app/mock-api/common/navigation/data.ts b/src/app/mock-api/common/navigation/data.ts index 75bcdf33..7f25d1e5 100644 --- a/src/app/mock-api/common/navigation/data.ts +++ b/src/app/mock-api/common/navigation/data.ts @@ -981,7 +981,7 @@ export const defaultNavigation: FuseNavigationItem[] = [ icon : 'heroicons_outline:speakerphone', link : '/docs/changelog', badge: { - title : '13.6.0', + title : '13.6.1', classes: 'px-2 bg-yellow-300 text-black rounded-full' } }, diff --git a/src/app/modules/admin/docs/changelog/changelog.ts b/src/app/modules/admin/docs/changelog/changelog.ts index 65e3ecbc..f33dfed8 100644 --- a/src/app/modules/admin/docs/changelog/changelog.ts +++ b/src/app/modules/admin/docs/changelog/changelog.ts @@ -10,6 +10,19 @@ export class ChangelogComponent { changelog: any[] = [ + // v13.6.1 + { + version : 'v13.6.0', + releaseDate: 'Aug 31, 2021', + changes : [ + { + type: 'Fixed', + list: [ + '(QuickChat) Fixed: Overflowing issue' + ] + } + ] + }, // v13.6.0 { version : 'v13.6.0',