AAE-44761 Remove unused imports (#11829)

This commit is contained in:
Darren Thornton
2026-04-22 06:41:40 -05:00
committed by GitHub
parent 64826c3a99
commit c09edd71ff
2 changed files with 3 additions and 16 deletions
@@ -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'],
@@ -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]
})