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