]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/dashboard.module.ts
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / dashboard / dashboard.module.ts
1 import { CommonModule } from '@angular/common';
2 import { NgModule } from '@angular/core';
3 import { FormsModule, ReactiveFormsModule } from '@angular/forms';
4 import { RouterModule } from '@angular/router';
5
6 import { NgbNavModule, NgbPopoverModule } from '@ng-bootstrap/ng-bootstrap';
7 import { ChartsModule } from 'ng2-charts';
8
9 import { SharedModule } from '~/app/shared/shared.module';
10 import { DashboardV3Module } from '../dashboard-v3/dashboard-v3.module';
11 import { CephSharedModule } from '../shared/ceph-shared.module';
12 import { FeedbackComponent } from '../shared/feedback/feedback.component';
13 import { DashboardComponent } from './dashboard/dashboard.component';
14 import { HealthPieComponent } from './health-pie/health-pie.component';
15 import { HealthComponent } from './health/health.component';
16 import { InfoCardComponent } from './info-card/info-card.component';
17 import { InfoGroupComponent } from './info-group/info-group.component';
18 import { MdsSummaryPipe } from './mds-summary.pipe';
19 import { MgrSummaryPipe } from './mgr-summary.pipe';
20 import { MonSummaryPipe } from './mon-summary.pipe';
21 import { OsdSummaryPipe } from './osd-summary.pipe';
22
23 @NgModule({
24 imports: [
25 CephSharedModule,
26 CommonModule,
27 NgbNavModule,
28 SharedModule,
29 ChartsModule,
30 RouterModule,
31 NgbPopoverModule,
32 FormsModule,
33 ReactiveFormsModule,
34 DashboardV3Module
35 ],
36
37 declarations: [
38 HealthComponent,
39 DashboardComponent,
40 MonSummaryPipe,
41 OsdSummaryPipe,
42 MgrSummaryPipe,
43 MdsSummaryPipe,
44 HealthPieComponent,
45 InfoCardComponent,
46 InfoGroupComponent,
47 FeedbackComponent
48 ]
49 })
50 export class DashboardModule {}