]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/catalog/catalog.module.ts
LP1922120: Add to carousel action in angular catalog
[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 {OpacViewComponent} from './record/opac.component';
15 import {ResultPaginationComponent} from './result/pagination.component';
16 import {ResultFacetsComponent} from './result/facets.component';
17 import {ResultRecordComponent} from './result/record.component';
18 import {StaffCatalogService} from './catalog.service';
19 import {RecordPaginationComponent} from './record/pagination.component';
20 import {RecordActionsComponent} from './record/actions.component';
21 import {BasketActionsComponent} from './basket-actions.component';
22 import {HoldComponent} from './hold/hold.component';
23 import {PartsComponent} from './record/parts.component';
24 import {AddToCarouselDialogComponent} from './record/add-to-carousel-dialog.component';
25 import {PartMergeDialogComponent} from './record/part-merge-dialog.component';
26 import {BrowseComponent} from './browse.component';
27 import {BrowseResultsComponent} from './browse/results.component';
28 import {HoldingsMaintenanceComponent} from './record/holdings.component';
29 import {ConjoinedComponent} from './record/conjoined.component';
30 import {CnBrowseComponent} from './cnbrowse.component';
31 import {CnBrowseResultsComponent} from './cnbrowse/results.component';
32 import {SearchTemplatesComponent} from './search-templates.component';
33 import {MarcEditModule} from '@eg/staff/share/marc-edit/marc-edit.module';
34 import {PreferencesComponent} from './prefs.component';
35
36 @NgModule({
37   declarations: [
38     CatalogComponent,
39     ResultsComponent,
40     RecordComponent,
41     CopiesComponent,
42     SearchFormComponent,
43     ResultRecordComponent,
44     ResultFacetsComponent,
45     ResultPaginationComponent,
46     RecordPaginationComponent,
47     RecordActionsComponent,
48     BasketActionsComponent,
49     HoldComponent,
50     PartsComponent,
51     AddToCarouselDialogComponent,
52     PartMergeDialogComponent,
53     BrowseComponent,
54     BrowseResultsComponent,
55     ConjoinedComponent,
56     HoldingsMaintenanceComponent,
57     SearchTemplatesComponent,
58     CnBrowseComponent,
59     OpacViewComponent,
60     PreferencesComponent,
61     CnBrowseResultsComponent
62   ],
63   imports: [
64     StaffCommonModule,
65     FmRecordEditorModule,
66     CatalogRoutingModule,
67     HoldsModule,
68     HoldingsModule,
69     BookingModule,
70     PatronModule,
71     MarcEditModule
72   ],
73   providers: [
74     StaffCatalogService
75   ]
76 })
77
78 export class CatalogModule {
79
80 }