Merge branch 'main' into item-back-button

This commit is contained in:
Michael W Spalti
2023-01-13 10:17:03 -08:00
108 changed files with 1047 additions and 1229 deletions

View File

@@ -48,6 +48,11 @@ import { OrcidSyncSettingsComponent } from './orcid-page/orcid-sync-settings/orc
import { OrcidQueueComponent } from './orcid-page/orcid-queue/orcid-queue.component';
import { UploadModule } from '../shared/upload/upload.module';
import { ResultsBackButtonModule } from '../shared/results-back-button/results-back-button.module';
import { ItemAlertsComponent } from './alerts/item-alerts.component';
import { ItemVersionsModule } from './versions/item-versions.module';
import { BitstreamRequestACopyPageComponent } from './bitstreams/request-a-copy/bitstream-request-a-copy-page.component';
import { FileSectionComponent } from './simple/field-components/file-section/file-section.component';
import { ItemSharedModule } from './item-shared.module';
const ENTRY_COMPONENTS = [
@@ -57,6 +62,7 @@ const ENTRY_COMPONENTS = [
];
const DECLARATIONS = [
FileSectionComponent,
ThemedFileSectionComponent,
ItemPageComponent,
ThemedItemPageComponent,
@@ -83,7 +89,10 @@ const DECLARATIONS = [
OrcidPageComponent,
OrcidAuthComponent,
OrcidSyncSettingsComponent,
OrcidQueueComponent
OrcidQueueComponent,
ItemAlertsComponent,
VersionedItemComponent,
BitstreamRequestACopyPageComponent,
];
@NgModule({
@@ -92,6 +101,8 @@ const DECLARATIONS = [
SharedModule.withEntryComponents(),
ItemPageRoutingModule,
EditItemPageModule,
ItemVersionsModule,
ItemSharedModule,
StatisticsModule.forRoot(),
JournalEntitiesModule.withEntryComponents(),
ResearchEntitiesModule.withEntryComponents(),
@@ -102,10 +113,10 @@ const DECLARATIONS = [
],
declarations: [
...DECLARATIONS,
VersionedItemComponent
],
exports: [
...DECLARATIONS
...DECLARATIONS,
]
})
export class ItemPageModule {