From 9b3ff6a7244aa4d43c94c603ad0b935739e741d5 Mon Sep 17 00:00:00 2001 From: sercan Date: Fri, 16 Jul 2021 12:56:35 +0300 Subject: [PATCH 1/3] Updated changelog --- .../modules/admin/docs/changelog/changelog.ts | 36 ++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/src/app/modules/admin/docs/changelog/changelog.ts b/src/app/modules/admin/docs/changelog/changelog.ts index 3102040a..a04f65be 100644 --- a/src/app/modules/admin/docs/changelog/changelog.ts +++ b/src/app/modules/admin/docs/changelog/changelog.ts @@ -11,6 +11,40 @@ export class ChangelogComponent { changelog: any[] = [ + // v13.3.0 + { + version : 'v13.3.0', + releaseDate: 'July 16, 2021', + changes : [ + { + type: 'Added', + list: [ + '(fuse/confirmation) A service to quickly configure and show confirmation dialogs' + ] + }, + { + type: 'Changed', + list: [ + '(dependencies) Updated Angular & Angular Material to v12.1.2', + '(dependencies) Updated various other packages', + '(dashboards/analytics) Removed unused chart options declarations', + '(apps/contacts) Added confirmation to the "Delete contact" action using FuseConfirmationService', + '(apps/ecommerce/inventory) Added confirmation to the "Delete product" action using FuseConfirmationService', + '(apps/scrumboard) Added confirmation to the "Delete list" action using FuseConfirmationService', + '(apps/tasks) Added confirmation to the "Delete task" action using FuseConfirmationService', + '(ui/confirmation-dialog) Created a separate page for FuseConfirmationService and put the example configurator in there for better visibility', + '(docs) Moved Fuse Components and Other Components into UI for better visibility and better categorization' + ] + }, + { + type: 'Fixed', + list: [ + '(transloco) Undefined fallback language causes issues in some cases', + '(tailwindcss) Ordered lists with "s" modifier causes builder to throw errors' + ] + } + ] + }, // v13.2.0 { version : 'v13.2.0', @@ -37,7 +71,7 @@ export class ChangelogComponent '(apps/tasks) Explicitly define the overlay position strategy properties', '(tailwindcss) Breaking: Removed 5, 6 & 12 fractional spacing values since they are not used in Demo by default and they are mostly not needed because of Flex and Grid. If you happen to use them, you can manually add them back.', '(docs) Updated docs', - '(package.json) Added "description" and "author" fields', + '(package.json) Added "description" and "author" fields' ] }, { From 952b64297b9fee991aef60565171b40c2ac14ed2 Mon Sep 17 00:00:00 2001 From: sercan Date: Fri, 16 Jul 2021 20:45:35 +0300 Subject: [PATCH 2/3] (fuse/confirmation) Fixed: Confirmation dialog colors are not correct for the Dark mode --- .../confirmation/dialog/dialog.component.html | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/@fuse/services/confirmation/dialog/dialog.component.html b/src/@fuse/services/confirmation/dialog/dialog.component.html index af0fee6d..f8de9884 100644 --- a/src/@fuse/services/confirmation/dialog/dialog.component.html +++ b/src/@fuse/services/confirmation/dialog/dialog.component.html @@ -20,14 +20,14 @@
- + -
+
From 49cccde93b9361801e63ad26b56a254feb8b2763 Mon Sep 17 00:00:00 2001 From: sercan Date: Fri, 16 Jul 2021 20:47:50 +0300 Subject: [PATCH 3/3] Increased the version number & updated the changelog --- 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 664f37bb..49ebbb46 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@fuse/demo", - "version": "13.3.0", + "version": "13.3.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index aa164662..b158a778 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fuse/demo", - "version": "13.3.0", + "version": "13.3.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 757bd8e4..5f462133 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.3.0').full; +export const FUSE_VERSION = new Version('13.3.1').full; diff --git a/src/app/mock-api/common/navigation/data.ts b/src/app/mock-api/common/navigation/data.ts index 850a2621..478dab97 100644 --- a/src/app/mock-api/common/navigation/data.ts +++ b/src/app/mock-api/common/navigation/data.ts @@ -967,7 +967,7 @@ export const defaultNavigation: FuseNavigationItem[] = [ icon : 'heroicons_outline:speakerphone', link : '/docs/changelog', badge: { - title : '13.3.0', + title : '13.3.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 a04f65be..4cbda5d3 100644 --- a/src/app/modules/admin/docs/changelog/changelog.ts +++ b/src/app/modules/admin/docs/changelog/changelog.ts @@ -11,6 +11,19 @@ export class ChangelogComponent { changelog: any[] = [ + // v13.3.1 + { + version : 'v13.3.1', + releaseDate: 'July 17, 2021', + changes : [ + { + type: 'Fixed', + list: [ + '(fuse/confirmation) Confirmation dialog colors are not optimized for the Dark mode' + ] + } + ] + }, // v13.3.0 { version : 'v13.3.0',