]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/catalog/catalog.module.ts
LP 2061136 follow-up: ng lint --fix
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / catalog / catalog.module.ts
1 import {NgModule} from '@angular/core';
2 import {FmRecordEditorModule} from '@eg/share/fm-editor/fm-editor.module';
3 import {StaffCommonModule} from '@eg/staff/common.module';
4 import {CatalogRoutingModule} from './routing.module';
5 import {HoldsModule} from '@eg/staff/share/holds/holds.module';
6 import {HoldingsModule} from '@eg/staff/share/holdings/holdings.module';
7 import {BookingModule} from '@eg/staff/share/booking/booking.module';
8 import {PatronModule} from '@eg/staff/share/patron/patron.module';
9 import {CatalogComponent} from './catalog.component';
10 import {SearchFormComponent} from './search-form.component';
11 import {ResultsComponent} from './result/results.component';
12 import {RecordComponent} from './record/record.component';
13 import {CopiesComponent} from './record/copies.component';
14 import {ResultPaginationComponent} from './result/pagination.component';
15 import {ResultFacetsComponent} from './result/facets.component';
16 import {ResultRecordComponent} from './result/record.component';
17 import {StaffCatalogService} from './catalog.service';
18 import {RecordPaginationComponent} from './record/pagination.component';
19 import {RecordActionsComponent} from './record/actions.component';
20 import {BasketActionsComponent} from './basket-actions.component';
21 import {HoldComponent} from './hold/hold.component';
22 import {PartsComponent} from './record/parts.component';
23 import {NotesComponent} from './record/notes.component';
24 import {AddToCarouselDialogComponent} from './record/add-to-carousel-dialog.component';
25 import {UploadJacketImageDialogComponent} from './record/upload-jacket-image-dialog.component';
26 import {PartMergeDialogComponent} from './record/part-merge-dialog.component';
27 import {BrowseComponent} from './browse.component';
28 import {BrowseResultsComponent} from './browse/results.component';
29 import {HoldingsMaintenanceComponent} from './record/holdings.component';
30 import {ConjoinedComponent} from './record/conjoined.component';
31 import {CnBrowseComponent} from './cnbrowse.component';
32 import {CnBrowseResultsComponent} from './cnbrowse/results.component';
33 import {SearchTemplatesComponent} from './search-templates.component';
34 import {MarcEditModule} from '@eg/staff/share/marc-edit/marc-edit.module';
35 import {PreferencesComponent} from './prefs.component';
36 import {BrowsePagerComponent} from './result/browse-pager.component';
37 import {HttpClientModule} from '@angular/common/http';
38 import {BarcodesModule} from '@eg/staff/share/barcodes/barcodes.module';
39 import {WorkLogModule} from '@eg/staff/share/worklog/worklog.module';
40 import {VolCopyModule} from '@eg/staff/cat/volcopy/volcopy.module';
41
42 @NgModule({
43     declarations: [
44         CatalogComponent,
45         ResultsComponent,
46         RecordComponent,
47         CopiesComponent,
48         SearchFormComponent,
49         ResultRecordComponent,
50         ResultFacetsComponent,
51         ResultPaginationComponent,
52         RecordPaginationComponent,
53         RecordActionsComponent,
54         BasketActionsComponent,
55         HoldComponent,
56         PartsComponent,
57         NotesComponent,
58         AddToCarouselDialogComponent,
59         UploadJacketImageDialogComponent,
60         PartMergeDialogComponent,
61         BrowseComponent,
62         BrowseResultsComponent,
63         ConjoinedComponent,
64         HoldingsMaintenanceComponent,
65         SearchTemplatesComponent,
66         CnBrowseComponent,
67         PreferencesComponent,
68         CnBrowseResultsComponent,
69         BrowsePagerComponent
70     ],
71     imports: [
72         StaffCommonModule,
73         FmRecordEditorModule,
74         CatalogRoutingModule,
75         HoldsModule,
76         HoldingsModule,
77         BookingModule,
78         PatronModule,
79         MarcEditModule,
80         HttpClientModule,
81         BarcodesModule,
82         WorkLogModule,
83         VolCopyModule
84     ],
85     providers: [
86         StaffCatalogService
87     ]
88 })
89
90 export class CatalogModule {
91
92 }