Compare commits

..

3 Commits

Author SHA1 Message Date
sercan
08aec7c3db Increased the version number 2021-08-31 16:43:38 +03:00
sercan
0f249f287e Increased the version number and updated the changelog 2021-08-31 16:43:18 +03:00
sercan
c7b8a4564b (QuickChat) Fixed: Wrong css causing a lot of problems 2021-08-31 16:42:57 +03:00
6 changed files with 19 additions and 6 deletions

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "@fuse/demo",
"version": "13.6.1",
"version": "13.6.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -1,6 +1,6 @@
{
"name": "@fuse/demo",
"version": "13.6.1",
"version": "13.6.2",
"description": "Fuse - Angular Admin Template and Starter Project",
"author": "https://themeforest.net/user/srcn",
"license": "https://themeforest.net/licenses/standard",

View File

@@ -1,3 +1,3 @@
import { Version } from '@fuse/version/version';
export const FUSE_VERSION = new Version('13.6.1').full;
export const FUSE_VERSION = new Version('13.6.2').full;

View File

@@ -12,7 +12,7 @@ quick-chat {
}
}
:not(&.quick-chat-opened) {
&:not(.quick-chat-opened) {
> div {
overflow: visible;

View File

@@ -981,7 +981,7 @@ export const defaultNavigation: FuseNavigationItem[] = [
icon : 'heroicons_outline:speakerphone',
link : '/docs/changelog',
badge: {
title : '13.6.1',
title : '13.6.2',
classes: 'px-2 bg-yellow-300 text-black rounded-full'
}
},

View File

@@ -10,9 +10,22 @@ export class ChangelogComponent
{
changelog: any[] = [
// v13.6.2
{
version : 'v13.6.2',
releaseDate: 'Sep 01, 2021',
changes : [
{
type: 'Fixed',
list: [
'(QuickChat) Fixed: Wrong css rule causing a lot of problems'
]
}
]
},
// v13.6.1
{
version : 'v13.6.0',
version : 'v13.6.1',
releaseDate: 'Aug 31, 2021',
changes : [
{