]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/navigation.module.ts
15f9f8969c9fca6306ed41b04c85ed91389d147c
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / core / navigation / navigation.module.ts
1 import { CommonModule } from '@angular/common';
2 import { NgModule } from '@angular/core';
3 import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
4 import { RouterModule } from '@angular/router';
5
6 import { CollapseModule } from 'ngx-bootstrap/collapse';
7 import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
8 import { PopoverModule } from 'ngx-bootstrap/popover';
9 import { TooltipModule } from 'ngx-bootstrap/tooltip';
10 import { SimplebarAngularModule } from 'simplebar-angular';
11
12 import { AppRoutingModule } from '../../app-routing.module';
13 import { SharedModule } from '../../shared/shared.module';
14 import { AuthModule } from '../auth/auth.module';
15 import { AboutComponent } from './about/about.component';
16 import { AdministrationComponent } from './administration/administration.component';
17 import { BreadcrumbsComponent } from './breadcrumbs/breadcrumbs.component';
18 import { DashboardHelpComponent } from './dashboard-help/dashboard-help.component';
19 import { IdentityComponent } from './identity/identity.component';
20 import { NavigationComponent } from './navigation/navigation.component';
21 import { NotificationsComponent } from './notifications/notifications.component';
22
23 @NgModule({
24 entryComponents: [AboutComponent],
25 imports: [
26 CommonModule,
27 AuthModule,
28 BrowserAnimationsModule,
29 CollapseModule.forRoot(),
30 BsDropdownModule.forRoot(),
31 PopoverModule.forRoot(),
32 TooltipModule.forRoot(),
33 AppRoutingModule,
34 SharedModule,
35 SimplebarAngularModule,
36 RouterModule
37 ],
38 declarations: [
39 AboutComponent,
40 BreadcrumbsComponent,
41 NavigationComponent,
42 NotificationsComponent,
43 DashboardHelpComponent,
44 AdministrationComponent,
45 IdentityComponent
46 ],
47 exports: [NavigationComponent, BreadcrumbsComponent]
48 })
49 export class NavigationModule {}