From 77170feb961f866b18cd5cf4b57983017ccb82a4 Mon Sep 17 00:00:00 2001 From: Darren Thornton <6361057+dthornton-hyl@users.noreply.github.com> Date: Wed, 22 Apr 2026 06:41:40 -0500 Subject: [PATCH] AAE-44761 Remove unused imports (#11829) --- lib/core/src/lib/info-drawer/info-drawer.component.ts | 11 ++--------- .../src/lib/viewer/components/viewer.component.ts | 8 +------- 2 files changed, 3 insertions(+), 16 deletions(-) diff --git a/lib/core/src/lib/info-drawer/info-drawer.component.ts b/lib/core/src/lib/info-drawer/info-drawer.component.ts index af35a00d25..b534b42c20 100644 --- a/lib/core/src/lib/info-drawer/info-drawer.component.ts +++ b/lib/core/src/lib/info-drawer/info-drawer.component.ts @@ -29,12 +29,7 @@ import { } from '@angular/core'; import { MatTabChangeEvent, MatTabsModule } from '@angular/material/tabs'; import { CommonModule } from '@angular/common'; -import { - InfoDrawerButtonsDirective, - InfoDrawerContentDirective, - InfoDrawerLayoutComponent, - InfoDrawerTitleDirective -} from './info-drawer-layout.component'; +import { InfoDrawerContentDirective, InfoDrawerLayoutComponent, InfoDrawerTitleDirective } from './info-drawer-layout.component'; import { TranslatePipe } from '@ngx-translate/core'; import { IconModule } from '../icon/icon.module'; @@ -64,10 +59,8 @@ export class InfoDrawerTabComponent { TranslatePipe, MatTabsModule, IconModule, - InfoDrawerButtonsDirective, InfoDrawerTitleDirective, - InfoDrawerContentDirective, - InfoDrawerTabComponent + InfoDrawerContentDirective ], templateUrl: './info-drawer.component.html', styleUrls: ['./info-drawer.component.scss'], diff --git a/lib/core/src/lib/viewer/components/viewer.component.ts b/lib/core/src/lib/viewer/components/viewer.component.ts index 22cf719265..4b084da0f6 100644 --- a/lib/core/src/lib/viewer/components/viewer.component.ts +++ b/lib/core/src/lib/viewer/components/viewer.component.ts @@ -53,8 +53,6 @@ import { ViewerOpenWithComponent } from './viewer-open-with.component'; import { ViewerRenderComponent } from './viewer-render/viewer-render.component'; import { ViewerSidebarComponent } from './viewer-sidebar.component'; import { ViewerToolbarComponent } from './viewer-toolbar.component'; -import { ViewerToolbarActionsComponent } from './viewer-toolbar-actions.component'; -import { ViewerToolbarCustomActionsComponent } from './viewer-toolbar-custom-actions.component'; import { ThumbnailService } from '../../common'; import { takeUntilDestroyed } from '@angular/core/rxjs-interop'; import { IconModule } from '../../icon/icon.module'; @@ -83,11 +81,7 @@ const DEFAULT_NON_PREVIEW_CONFIG = { MatMenuModule, ToolbarDividerComponent, ViewerRenderComponent, - NgTemplateOutlet, - ViewerToolbarComponent, - ViewerSidebarComponent, - ViewerToolbarActionsComponent, - ViewerToolbarCustomActionsComponent + NgTemplateOutlet ], providers: [ViewUtilService] })