mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
29 lines
961 B
TypeScript
29 lines
961 B
TypeScript
import {
|
|
AsyncPipe,
|
|
NgClass,
|
|
NgComponentOutlet,
|
|
NgFor,
|
|
NgIf,
|
|
} from '@angular/common';
|
|
import { Component } from '@angular/core';
|
|
import { NgbDropdownModule } from '@ng-bootstrap/ng-bootstrap';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
import { NavbarComponent as BaseComponent } from '../../../../app/navbar/navbar.component';
|
|
import { slideMobileNav } from '../../../../app/shared/animations/slide';
|
|
import { ThemedUserMenuComponent } from '../../../../app/shared/auth-nav-menu/user-menu/themed-user-menu.component';
|
|
|
|
/**
|
|
* Component representing the public navbar
|
|
*/
|
|
@Component({
|
|
selector: 'ds-themed-navbar',
|
|
styleUrls: ['./navbar.component.scss'],
|
|
templateUrl: './navbar.component.html',
|
|
animations: [slideMobileNav],
|
|
standalone: true,
|
|
imports: [NgbDropdownModule, NgClass, NgIf, ThemedUserMenuComponent, NgFor, NgComponentOutlet, AsyncPipe, TranslateModule],
|
|
})
|
|
export class NavbarComponent extends BaseComponent {
|
|
}
|