]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/catalog/catalog.module.ts
LP1825851 Server managed/processed print templates
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / catalog / catalog.module.ts
1 import {NgModule} from '@angular/core';
2 import {StaffCommonModule} from '@eg/staff/common.module';
3 import {CatalogCommonModule} from '@eg/share/catalog/catalog-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 {CatalogComponent} from './catalog.component';
9 import {SearchFormComponent} from './search-form.component';
10 import {ResultsComponent} from './result/results.component';
11 import {RecordComponent} from './record/record.component';
12 import {CopiesComponent} from './record/copies.component';
13 import {ResultPaginationComponent} from './result/pagination.component';
14 import {ResultFacetsComponent} from './result/facets.component';
15 import {ResultRecordComponent} from './result/record.component';
16 import {StaffCatalogService} from './catalog.service';
17 import {RecordPaginationComponent} from './record/pagination.component';
18 import {RecordActionsComponent} from './record/actions.component';
19 import {BasketActionsComponent} from './basket-actions.component';
20 import {HoldComponent} from './hold/hold.component';
21 import {PartsComponent} from './record/parts.component';
22 import {PartMergeDialogComponent} from './record/part-merge-dialog.component';
23 import {BrowseComponent} from './browse.component';
24 import {BrowseResultsComponent} from './browse/results.component';
25 import {HoldingsMaintenanceComponent} from './record/holdings.component';
26 import {ConjoinedComponent} from './record/conjoined.component';
27 import {CnBrowseComponent} from './cnbrowse.component';
28 import {CnBrowseResultsComponent} from './cnbrowse/results.component';
29 import {SearchTemplatesComponent} from './search-templates.component';
30 import {MarcEditModule} from '@eg/staff/share/marc-edit/marc-edit.module';
31
32 @NgModule({
33   declarations: [
34     CatalogComponent,
35     ResultsComponent,
36     RecordComponent,
37     CopiesComponent,
38     SearchFormComponent,
39     ResultRecordComponent,
40     ResultFacetsComponent,
41     ResultPaginationComponent,
42     RecordPaginationComponent,
43     RecordActionsComponent,
44     BasketActionsComponent,
45     HoldComponent,
46     PartsComponent,
47     PartMergeDialogComponent,
48     BrowseComponent,
49     BrowseResultsComponent,
50     ConjoinedComponent,
51     HoldingsMaintenanceComponent,
52     SearchTemplatesComponent,
53     CnBrowseComponent,
54     CnBrowseResultsComponent
55   ],
56   imports: [
57     StaffCommonModule,
58     CatalogCommonModule,
59     CatalogRoutingModule,
60     HoldsModule,
61     HoldingsModule,
62     BookingModule,
63     MarcEditModule
64   ],
65   providers: [
66     StaffCatalogService
67   ]
68 })
69
70 export class CatalogModule {
71
72 }