mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 15:03:07 +00:00
46 lines
1.8 KiB
TypeScript
46 lines
1.8 KiB
TypeScript
import {
|
|
AsyncPipe,
|
|
NgClass,
|
|
NgIf,
|
|
} from '@angular/common';
|
|
import { Component } from '@angular/core';
|
|
import { RouterOutlet } from '@angular/router';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
import { ThemedAdminSidebarComponent } from '../../../../app/admin/admin-sidebar/themed-admin-sidebar.component';
|
|
import { ThemedBreadcrumbsComponent } from '../../../../app/breadcrumbs/themed-breadcrumbs.component';
|
|
import { ThemedFooterComponent } from '../../../../app/footer/themed-footer.component';
|
|
import { ThemedHeaderNavbarWrapperComponent } from '../../../../app/header-nav-wrapper/themed-header-navbar-wrapper.component';
|
|
import { RootComponent as BaseComponent } from '../../../../app/root/root.component';
|
|
import { slideSidebarPadding } from '../../../../app/shared/animations/slide';
|
|
import { ThemedLoadingComponent } from '../../../../app/shared/loading/themed-loading.component';
|
|
import { NotificationsBoardComponent } from '../../../../app/shared/notifications/notifications-board/notifications-board.component';
|
|
import { SystemWideAlertBannerComponent } from '../../../../app/system-wide-alert/alert-banner/system-wide-alert-banner.component';
|
|
|
|
@Component({
|
|
selector: 'ds-themed-root',
|
|
// styleUrls: ['./root.component.scss'],
|
|
styleUrls: ['../../../../app/root/root.component.scss'],
|
|
// templateUrl: './root.component.html',
|
|
templateUrl: '../../../../app/root/root.component.html',
|
|
animations: [slideSidebarPadding],
|
|
standalone: true,
|
|
imports: [
|
|
TranslateModule,
|
|
ThemedAdminSidebarComponent,
|
|
SystemWideAlertBannerComponent,
|
|
ThemedHeaderNavbarWrapperComponent,
|
|
ThemedBreadcrumbsComponent,
|
|
NgIf,
|
|
NgClass,
|
|
ThemedLoadingComponent,
|
|
RouterOutlet,
|
|
ThemedFooterComponent,
|
|
NotificationsBoardComponent,
|
|
AsyncPipe,
|
|
],
|
|
})
|
|
export class RootComponent extends BaseComponent {
|
|
|
|
}
|