]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/catalog/catalog.module.ts
LP1615805 No inputs after submit in patron search (AngularJS)
[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
39 @NgModule({
40   declarations: [
41     CatalogComponent,
42     ResultsComponent,
43     RecordComponent,
44     CopiesComponent,
45     SearchFormComponent,
46     ResultRecordComponent,
47     ResultFacetsComponent,
48     ResultPaginationComponent,
49     RecordPaginationComponent,
50     RecordActionsComponent,
51     BasketActionsComponent,
52     HoldComponent,
53     PartsComponent,
54     NotesComponent,
55     AddToCarouselDialogComponent,
56     UploadJacketImageDialogComponent,
57     PartMergeDialogComponent,
58     BrowseComponent,
59     BrowseResultsComponent,
60     ConjoinedComponent,
61     HoldingsMaintenanceComponent,
62     SearchTemplatesComponent,
63     CnBrowseComponent,
64     PreferencesComponent,
65     CnBrowseResultsComponent,
66     BrowsePagerComponent
67   ],
68   imports: [
69     StaffCommonModule,
70     FmRecordEditorModule,
71     CatalogRoutingModule,
72     HoldsModule,
73     HoldingsModule,
74     BookingModule,
75     PatronModule,
76     MarcEditModule,
77     HttpClientModule
78   ],
79   providers: [
80     StaffCatalogService
81   ]
82 })
83
84 export class CatalogModule {
85
86 }