From 8ae3cdfbea635d84f672d5c1b1a89f6643565baf Mon Sep 17 00:00:00 2001 From: Sercan Yemen <117369+srcn@users.noreply.github.com> Date: Fri, 18 Nov 2022 11:07:04 +0300 Subject: [PATCH 1/3] Updated the changelog --- src/app/modules/admin/docs/changelog/changelog.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/modules/admin/docs/changelog/changelog.ts b/src/app/modules/admin/docs/changelog/changelog.ts index 9c760155..14876529 100644 --- a/src/app/modules/admin/docs/changelog/changelog.ts +++ b/src/app/modules/admin/docs/changelog/changelog.ts @@ -13,7 +13,7 @@ export class ChangelogComponent // v17.0.0 { version : 'v17.0.0', - releaseDate: 'TBA', + releaseDate: 'Nov 18, 2022', changes : [ { type: 'Breaking', @@ -29,6 +29,7 @@ export class ChangelogComponent list: [ '(Dependencies) Updated Angular & Angular Material to v15.0.0', '(Dependencies) Updated various other packages', + '(Dependencies) Removed ngx-markdown from the package.json, it still can be used within Fuse, it\'s a part of the effort to make releasing Fuse updates easier', '(General) Matched the files and folders with a newly created Angular v15 project to make things easier for the newcomers', '(Angular Material) Re-wrote the override styles to make sure everything look the same as before (compatibility for MDC components)', '(Theming) Re-wrote the theming system to make sure to keep everything working as before without any breaking changes' From de7a598c07a051fb2d77950645cc31dbe36dcbb9 Mon Sep 17 00:00:00 2001 From: Sercan Yemen <117369+srcn@users.noreply.github.com> Date: Fri, 18 Nov 2022 11:14:00 +0300 Subject: [PATCH 2/3] Updated the meta tags for the Demo --- src/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.html b/src/index.html index 4849e03b..f90aa016 100644 --- a/src/index.html +++ b/src/index.html @@ -8,7 +8,7 @@ content="Admin Template and Starter Kit with Angular, Angular Material Components and TailwindCSS"> + content="Fuse,HTML,CSS,Angular,Angular 13,Angular 14,Angular 15,Material,Angular Components,Tailwind,Tailwind CSS,TailwindCSS,Admin Template,Admin Starter Kit"> From 28180c7491bd97b1c8ec56e149d6cd84c398dadf Mon Sep 17 00:00:00 2001 From: Sercan Yemen <117369+srcn@users.noreply.github.com> Date: Sun, 20 Nov 2022 14:11:00 +0300 Subject: [PATCH 3/3] (@fuse/confirmation-dialog) Fixed: Dialog padding is broken because of MDC component class names --- .../services/confirmation/dialog/dialog.component.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/@fuse/services/confirmation/dialog/dialog.component.ts b/src/@fuse/services/confirmation/dialog/dialog.component.ts index 9c45252b..d429a098 100644 --- a/src/@fuse/services/confirmation/dialog/dialog.component.ts +++ b/src/@fuse/services/confirmation/dialog/dialog.component.ts @@ -8,12 +8,16 @@ import { FuseConfirmationConfig } from '@fuse/services/confirmation/confirmation styles : [ ` .fuse-confirmation-dialog-panel { + @screen md { @apply w-128; } - .mat-dialog-container { - padding: 0 !important; + .mat-mdc-dialog-container { + + .mat-mdc-dialog-surface { + padding: 0 !important; + } } } `