From 97a543904fabd2218718805fb9f5b0124ea64442 Mon Sep 17 00:00:00 2001 From: Fahri Gedik Date: Tue, 15 Jul 2025 15:07:51 +0300 Subject: [PATCH] Add collapseWithMargin animation to account layout Imported and applied the collapseWithMargin animation from @abp/ng.theme.shared to the AccountLayoutComponent. This enhances the component with collapse animation capabilities. --- .../lib/components/account-layout/account-layout.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/npm/ng-packs/packages/theme-basic/src/lib/components/account-layout/account-layout.component.ts b/npm/ng-packs/packages/theme-basic/src/lib/components/account-layout/account-layout.component.ts index e5b68e8901..a6e1b6ad91 100644 --- a/npm/ng-packs/packages/theme-basic/src/lib/components/account-layout/account-layout.component.ts +++ b/npm/ng-packs/packages/theme-basic/src/lib/components/account-layout/account-layout.component.ts @@ -8,10 +8,12 @@ import { NavItemsComponent } from '../nav-items/nav-items.component'; import { AuthWrapperComponent } from './auth-wrapper/auth-wrapper.component'; import { PageAlertContainerComponent } from '../page-alert-container/page-alert-container.component'; import { RouterModule } from '@angular/router'; +import { collapseWithMargin } from '@abp/ng.theme.shared'; @Component({ selector: 'abp-layout-account', templateUrl: './account-layout.component.html', + animations: [collapseWithMargin], providers: [LayoutService, SubscriptionService], imports: [ CommonModule,