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