From 6e97375b1325389e743770e2817a94a83d3c6d84 Mon Sep 17 00:00:00 2001 From: Giuseppe Digilio Date: Thu, 29 Feb 2024 15:14:24 +0100 Subject: [PATCH 1/3] [DSC-1565][CST-13645] Fix issue with type-bind when using controlled vocabulary for dc.type --- ...dynamic-type-bind-relation.service.spec.ts | 36 ++++++++++++------- .../ds-dynamic-type-bind-relation.service.ts | 10 +++--- src/config/config.util.spec.ts | 3 +- src/config/default-app-config.ts | 2 +- 4 files changed, 33 insertions(+), 18 deletions(-) diff --git a/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-type-bind-relation.service.spec.ts b/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-type-bind-relation.service.spec.ts index fb4e752866e..f0fd97ce443 100644 --- a/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-type-bind-relation.service.spec.ts +++ b/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-type-bind-relation.service.spec.ts @@ -11,15 +11,14 @@ import { REQUIRED_MATCHER_PROVIDER, } from '@ng-dynamic-forms/core'; -import { - mockInputWithTypeBindModel, MockRelationModel -} from '../../../mocks/form-models.mock'; +import { mockInputWithTypeBindModel, MockRelationModel } from '../../../mocks/form-models.mock'; import { DsDynamicTypeBindRelationService } from './ds-dynamic-type-bind-relation.service'; import { FormFieldMetadataValueObject } from '../models/form-field-metadata-value.model'; -import {UntypedFormControl, ReactiveFormsModule} from '@angular/forms'; +import { ReactiveFormsModule, UntypedFormControl } from '@angular/forms'; import { FormBuilderService } from '../form-builder.service'; import { getMockFormBuilderService } from '../../../mocks/form-builder-service.mock'; import { Injector } from '@angular/core'; +import { VocabularyEntryDetail } from '../../../../core/submission/vocabularies/models/vocabulary-entry-detail.model'; describe('DSDynamicTypeBindRelationService test suite', () => { let service: DsDynamicTypeBindRelationService; @@ -42,17 +41,17 @@ describe('DSDynamicTypeBindRelationService test suite', () => { (relationService: DsDynamicTypeBindRelationService, formRelationService: DynamicFormRelationService, ) => { - service = relationService; - dynamicFormRelationService = formRelationService; - })); + service = relationService; + dynamicFormRelationService = formRelationService; + })); describe('Test getTypeBindValue method', () => { it('Should get type bind "boundType" from the given metadata object value', () => { - const mockMetadataValueObject: FormFieldMetadataValueObject = new FormFieldMetadataValueObject( - 'boundType', null, null, null,'Bound Type' - ); - const bindType = service.getTypeBindValue(mockMetadataValueObject); - expect(bindType).toBe('boundType'); + const mockMetadataValueObject: FormFieldMetadataValueObject = new FormFieldMetadataValueObject( + 'boundType', null, null, null, 'Bound Type' + ); + const bindType = service.getTypeBindValue(mockMetadataValueObject); + expect(bindType).toBe('boundType'); }); it('Should get type authority key "bound-auth-key" from the given metadata object value', () => { const mockMetadataValueObject: FormFieldMetadataValueObject = new FormFieldMetadataValueObject( @@ -61,6 +60,19 @@ describe('DSDynamicTypeBindRelationService test suite', () => { const bindType = service.getTypeBindValue(mockMetadataValueObject); expect(bindType).toBe('bound-auth-key'); }); + it('Should get type bind "boundType" from the given vocabulary entry object value', () => { + const vocabularyEntry = new VocabularyEntryDetail(); + vocabularyEntry.value = vocabularyEntry.display = 'boundType'; + const bindType = service.getTypeBindValue(vocabularyEntry); + expect(bindType).toBe('boundType'); + }); + it('Should get type authority key "bound-auth-key" from the given vocabulary entry object value', () => { + const vocabularyEntry = new VocabularyEntryDetail(); + vocabularyEntry.id = vocabularyEntry.authority = 'bound-auth-key'; + vocabularyEntry.value = vocabularyEntry.display = 'boundType'; + const bindType = service.getTypeBindValue(vocabularyEntry); + expect(bindType).toBe('bound-auth-key'); + }); it('Should get passed string returned directly as string passed instead of metadata', () => { const bindType = service.getTypeBindValue('rawString'); expect(bindType).toBe('rawString'); diff --git a/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-type-bind-relation.service.ts b/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-type-bind-relation.service.ts index 5f7e2e3e228..74f760b9a1e 100644 --- a/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-type-bind-relation.service.ts +++ b/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-type-bind-relation.service.ts @@ -11,14 +11,16 @@ import { DynamicFormControlMatcher, DynamicFormControlModel, DynamicFormControlRelation, - DynamicFormRelationService, MATCH_VISIBLE, + DynamicFormRelationService, + MATCH_VISIBLE, OR_OPERATOR } from '@ng-dynamic-forms/core'; -import {hasNoValue, hasValue} from '../../../empty.util'; +import { hasNoValue, hasValue } from '../../../empty.util'; import { FormBuilderService } from '../form-builder.service'; import { FormFieldMetadataValueObject } from '../models/form-field-metadata-value.model'; import { DYNAMIC_FORM_CONTROL_TYPE_RELATION_GROUP } from './ds-dynamic-form-constants'; +import { VocabularyEntry } from '../../../../core/submission/vocabularies/models/vocabulary-entry.model'; /** * Service to manage type binding for submission input fields @@ -38,11 +40,11 @@ export class DsDynamicTypeBindRelationService { * @param bindModelValue * @private */ - public getTypeBindValue(bindModelValue: string | FormFieldMetadataValueObject): string { + public getTypeBindValue(bindModelValue: string | FormFieldMetadataValueObject | VocabularyEntry): string { let value; if (hasNoValue(bindModelValue) || typeof bindModelValue === 'string') { value = bindModelValue; - } else if (bindModelValue instanceof FormFieldMetadataValueObject + } else if ((bindModelValue instanceof FormFieldMetadataValueObject || bindModelValue instanceof VocabularyEntry) && bindModelValue.hasAuthority()) { value = bindModelValue.authority; } else { diff --git a/src/config/config.util.spec.ts b/src/config/config.util.spec.ts index 4155ee20006..2690d930c01 100644 --- a/src/config/config.util.spec.ts +++ b/src/config/config.util.spec.ts @@ -21,7 +21,8 @@ describe('Config Util', () => { 'dc.identifier.scopus', 'dc.identifier.isi', 'dcterms.dateSubmitted', - 'dc.identifier.applicationnumber' + 'dc.identifier.applicationnumber', + 'dc.type' ]); expect(appConfig.themes.length).toEqual(1); diff --git a/src/config/default-app-config.ts b/src/config/default-app-config.ts index 0dc276b592a..b8022fd13a8 100644 --- a/src/config/default-app-config.ts +++ b/src/config/default-app-config.ts @@ -157,7 +157,7 @@ export class DefaultAppConfig implements AppConfig { submission: SubmissionConfig = { autosave: { // NOTE: which metadata trigger an autosave - metadata: ['dc.title', 'dc.identifier.doi', 'dc.identifier.pmid', 'dc.identifier.arxiv', 'dc.identifier.patentno', 'dc.identifier.scopus', 'dc.identifier.isi', 'dcterms.dateSubmitted', 'dc.identifier.applicationnumber'], + metadata: ['dc.title', 'dc.identifier.doi', 'dc.identifier.pmid', 'dc.identifier.arxiv', 'dc.identifier.patentno', 'dc.identifier.scopus', 'dc.identifier.isi', 'dcterms.dateSubmitted', 'dc.identifier.applicationnumber', 'dc.type'], /** * NOTE: after how many time (milliseconds) submission is saved automatically * eg. timer: 5 * (1000 * 60); // 5 minutes From bcc01f91809a238af0ff0aed33b1d7fb461fda58 Mon Sep 17 00:00:00 2001 From: Giuseppe Digilio Date: Mon, 4 Mar 2024 12:55:09 +0100 Subject: [PATCH 2/3] [DSC-1557] Fix issue with type-bind when dc.type is provided via metadata enrichment --- ...dynamic-form-control-container.component.ts | 16 ++++++++++++---- ...-dynamic-type-bind-relation.service.spec.ts | 2 +- .../ds-dynamic-type-bind-relation.service.ts | 6 ++---- .../form/builder/form-builder.service.ts | 18 +++++++++++++++--- .../shared/mocks/form-builder-service.mock.ts | 4 +++- 5 files changed, 33 insertions(+), 13 deletions(-) diff --git a/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-form-control-container.component.ts b/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-form-control-container.component.ts index c98d327c8ab..d7d94ebb97f 100644 --- a/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-form-control-container.component.ts +++ b/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-form-control-container.component.ts @@ -3,7 +3,8 @@ import { Component, ComponentFactoryResolver, ContentChildren, - EventEmitter, Inject, + EventEmitter, + Inject, Input, NgZone, OnChanges, @@ -58,7 +59,9 @@ import { TranslateService } from '@ngx-translate/core'; import { ReorderableRelationship } from './existing-metadata-list-element/existing-metadata-list-element.component'; import { DYNAMIC_FORM_CONTROL_TYPE_ONEBOX } from './models/onebox/dynamic-onebox.model'; -import { DYNAMIC_FORM_CONTROL_TYPE_SCROLLABLE_DROPDOWN } from './models/scrollable-dropdown/dynamic-scrollable-dropdown.model'; +import { + DYNAMIC_FORM_CONTROL_TYPE_SCROLLABLE_DROPDOWN +} from './models/scrollable-dropdown/dynamic-scrollable-dropdown.model'; import { DYNAMIC_FORM_CONTROL_TYPE_TAG } from './models/tag/dynamic-tag.model'; import { DYNAMIC_FORM_CONTROL_TYPE_DSDATEPICKER } from './models/date-picker/date-picker.model'; import { DYNAMIC_FORM_CONTROL_TYPE_LOOKUP } from './models/lookup/dynamic-lookup.model'; @@ -70,7 +73,9 @@ import { DsDynamicTagComponent } from './models/tag/dynamic-tag.component'; import { DsDatePickerComponent } from './models/date-picker/date-picker.component'; import { DsDynamicListComponent } from './models/list/dynamic-list.component'; import { DsDynamicOneboxComponent } from './models/onebox/dynamic-onebox.component'; -import { DsDynamicScrollableDropdownComponent } from './models/scrollable-dropdown/dynamic-scrollable-dropdown.component'; +import { + DsDynamicScrollableDropdownComponent +} from './models/scrollable-dropdown/dynamic-scrollable-dropdown.component'; import { DsDynamicLookupComponent } from './models/lookup/dynamic-lookup.component'; import { DsDynamicFormGroupComponent } from './models/form-group/dynamic-form-group.component'; import { DsDynamicFormArrayComponent } from './models/array-group/dynamic-form-array.component'; @@ -82,7 +87,9 @@ import { CustomSwitchComponent } from './models/custom-switch/custom-switch.comp import { find, map, startWith, switchMap, take } from 'rxjs/operators'; import { combineLatest as observableCombineLatest, Observable, Subscription } from 'rxjs'; import { DsDynamicTypeBindRelationService } from './ds-dynamic-type-bind-relation.service'; -import { DsDynamicRelationInlineGroupComponent } from './models/relation-inline-group/dynamic-relation-inline-group.components'; +import { + DsDynamicRelationInlineGroupComponent +} from './models/relation-inline-group/dynamic-relation-inline-group.components'; import { SearchResult } from '../../../search/models/search-result.model'; import { DSpaceObject } from '../../../../core/shared/dspace-object.model'; import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap'; @@ -497,6 +504,7 @@ export class DsDynamicFormControlContainerComponent extends DynamicFormControlCo * Unsubscribe from all subscriptions */ ngOnDestroy(): void { + super.ngOnDestroy(); this.subs .filter((sub) => hasValue(sub)) .forEach((sub) => sub.unsubscribe()); diff --git a/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-type-bind-relation.service.spec.ts b/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-type-bind-relation.service.spec.ts index f0fd97ce443..a8292e14755 100644 --- a/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-type-bind-relation.service.spec.ts +++ b/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-type-bind-relation.service.spec.ts @@ -39,7 +39,7 @@ describe('DSDynamicTypeBindRelationService test suite', () => { beforeEach(inject([DsDynamicTypeBindRelationService, DynamicFormRelationService], (relationService: DsDynamicTypeBindRelationService, - formRelationService: DynamicFormRelationService, + formRelationService: DynamicFormRelationService ) => { service = relationService; dynamicFormRelationService = formRelationService; diff --git a/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-type-bind-relation.service.ts b/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-type-bind-relation.service.ts index 74f760b9a1e..15dab8cc857 100644 --- a/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-type-bind-relation.service.ts +++ b/src/app/shared/form/builder/ds-dynamic-form-ui/ds-dynamic-type-bind-relation.service.ts @@ -91,7 +91,6 @@ export class DsDynamicTypeBindRelationService { // Default to OR for operator (OR is explicitly set in field-parser.ts anyway) const operator = relation.operator || OR_OPERATOR; - return relation.when.reduce((hasAlreadyMatched: boolean, condition: DynamicFormControlCondition, index: number) => { // Get the DynamicFormControlModel (typeBindModel) from the form builder service, set in the form builder // in the form model at init time in formBuilderService.modelFromConfiguration (called by other form components @@ -185,9 +184,8 @@ export class DsDynamicTypeBindRelationService { const initValue = (hasNoValue(relatedModel.value) || typeof relatedModel.value === 'string') ? relatedModel.value : (Array.isArray(relatedModel.value) ? relatedModel.value : relatedModel.value.value); - const updateSubject = (relatedModel.type === 'CHECKBOX_GROUP' ? relatedModel.valueUpdates : relatedModel.valueChanges); - const valueChanges = updateSubject.pipe( - startWith(initValue) + const valueChanges = this.formBuilderService.getTypeBindModelUpdates().pipe( + startWith(initValue), ); // Build up the subscriptions to watch for changes; diff --git a/src/app/shared/form/builder/form-builder.service.ts b/src/app/shared/form/builder/form-builder.service.ts index 16d280a94db..aa2bbbab4e1 100644 --- a/src/app/shared/form/builder/form-builder.service.ts +++ b/src/app/shared/form/builder/form-builder.service.ts @@ -21,6 +21,8 @@ import { import isObject from 'lodash/isObject'; import isString from 'lodash/isString'; import mergeWith from 'lodash/mergeWith'; +import { BehaviorSubject, Observable } from 'rxjs'; +import { distinctUntilChanged, switchMap } from 'rxjs/operators'; import { hasNoValue, @@ -50,7 +52,7 @@ import { getFirstCompletedRemoteData } from '../../../core/shared/operators'; @Injectable() export class FormBuilderService extends DynamicFormService { - private typeBindModel: DynamicFormControlModel; + private typeBindModel: BehaviorSubject = new BehaviorSubject(null); /** * This map contains the active forms model @@ -92,11 +94,21 @@ export class FormBuilderService extends DynamicFormService { } getTypeBindModel() { - return this.typeBindModel; + return this.typeBindModel.getValue(); + } + + getTypeBindModelUpdates(): Observable { + return this.typeBindModel.pipe( + distinctUntilChanged(), + switchMap((bindModel: any) => { + return (bindModel.type === 'CHECKBOX_GROUP' ? bindModel.valueUpdates : bindModel.valueChanges); + }), + distinctUntilChanged() + ); } setTypeBindModel(model: DynamicFormControlModel) { - this.typeBindModel = model; + this.typeBindModel.next(model); } findById(id: string, groupModel: DynamicFormControlModel[], arrayIndex = null): DynamicFormControlModel | null { diff --git a/src/app/shared/mocks/form-builder-service.mock.ts b/src/app/shared/mocks/form-builder-service.mock.ts index bd215833dc2..adcc28c27a6 100644 --- a/src/app/shared/mocks/form-builder-service.mock.ts +++ b/src/app/shared/mocks/form-builder-service.mock.ts @@ -1,6 +1,7 @@ import { FormBuilderService } from '../form/builder/form-builder.service'; import { UntypedFormControl, UntypedFormGroup } from '@angular/forms'; import { DsDynamicInputModel } from '../form/builder/ds-dynamic-form-ui/models/ds-dynamic-input.model'; +import { of } from 'rxjs'; export function getMockFormBuilderService(): FormBuilderService { @@ -43,7 +44,8 @@ export function getMockFormBuilderService(): FormBuilderService { removeFormModel: {}, addFormModel: {}, updateValue: {}, - addFormGroups: {} + addFormGroups: {}, + getTypeBindModelUpdates: of('test') }); } From 07b6d05b3503658c6c4ab623eb15d2701e2208b8 Mon Sep 17 00:00:00 2001 From: Giuseppe Digilio Date: Fri, 22 Mar 2024 13:17:25 +0100 Subject: [PATCH 3/3] Remove unintentionally committed file --- nohup.out | 7948 ----------------------------------------------------- 1 file changed, 7948 deletions(-) delete mode 100644 nohup.out diff --git a/nohup.out b/nohup.out deleted file mode 100644 index 02e53eef693..00000000000 --- a/nohup.out +++ /dev/null @@ -1,7948 +0,0 @@ -yarn run v1.22.19 -$ ng config cli.cache.environment local && nodemon --exec "cross-env NODE_ENV=development yarn run serve" -[nodemon] 2.0.22 -[nodemon] to restart at any time, enter `rs` -[nodemon] watching path(s): config/**/* -[nodemon] watching extensions: json -[nodemon] starting `cross-env NODE_ENV=development yarn run serve` -node:events:491 - throw er; // Unhandled 'error' event - ^ - -Error: EBADF: bad file descriptor, read -Emitted 'error' event on ReadStream instance at: - at emitErrorNT (node:internal/streams/destroy:157:8) - at errorOrDestroy (node:internal/streams/destroy:220:7) - at node:internal/fs/streams:262:9 - at FSReqCallback.wrapper [as oncomplete] (node:fs:671:5) { - errno: -9, - code: 'EBADF', - syscall: 'read' -} -error Command failed with exit code 1. -info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. -$ yarn base-href -$ ts-node --project ./tsconfig.ts-node.json scripts/base-href.ts -Building development app config -Overriding app config with /home/giuseppe/development/nodejs/dspace-angular-cris-7/config/config.yml -Overriding app config with /home/giuseppe/development/nodejs/dspace-angular-cris-7/config/config.dev.yml -Setting baseHref to / in angular.json -$ ts-node --project ./tsconfig.ts-node.json scripts/serve.ts -Building development app config -Overriding app config with /home/giuseppe/development/nodejs/dspace-angular-cris-7/config/config.yml -Overriding app config with /home/giuseppe/development/nodejs/dspace-angular-cris-7/config/config.dev.yml - -> dspace-angular@2023.02.00-SNAPSHOT ng-high-memory -> node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng serve --host localhost --port 4000 --serve-path / --ssl false --configuration development - -- Generating browser application bundles (phase: setup)... -Building development app config -Overriding app config with /home/giuseppe/development/nodejs/dspace-angular-cris-7/config/config.yml -Overriding app config with /home/giuseppe/development/nodejs/dspace-angular-cris-7/config/config.dev.yml -Angular config.json file generated correctly at /home/giuseppe/development/nodejs/dspace-angular-cris-7/src/assets/config.json - -✔ Browser application bundle generation complete. - -Initial Chunk Files | Names | Raw Size -main.js | main | 8.51 MB | -vendor.js | vendor | 7.00 MB | -polyfills.js | polyfills | 1.03 MB | -styles.css, styles.js | styles | 215.99 kB | -runtime.js | runtime | 14.46 kB | - -| Initial Total | 16.76 MB - -Lazy Chunk Files | Names | Raw Size -src_app_core_export-service_browser-export_service_ts.js | core-export-service-browser-export-service | 4.68 MB | -node_modules_markdown-it-mathjax3_index_js.js | markdown-it-mathjax3 | 3.16 MB | -default-src_app_item-page_item-page_module_ts.js | item-page-item-page-module | 1.42 MB | -default-src_app_entity-groups_journal-entities_journal-entities_module_ts-src_app_entity-grou-77d389.js | home-page-home-page-module | 1.17 MB | -default-src_app_submission_submission_module_ts.js | submit-page-submit-page-module | 1.09 MB | -default-src_app_core_breadcrumbs_dso-breadcrumb_resolver_ts-src_app_item-page_edit-item-page_-d4e0bc.js | collection-page-collection-page-module | 982.64 kB | -default-src_app_shared_form_builder_ds-dynamic-form-ui_ds-dynamic-form-control-container_comp-f03307.js | home-page-home-page-module | 842.27 kB | -dspace-theme.css, dspace-theme.js | dspace-theme | 735.56 kB | -base-theme.css, base-theme.js | base-theme | 733.32 kB | -custom-theme.css, custom-theme.js | custom-theme | 733.14 kB | -src_app_admin_admin_module_ts-src_app_shared_access-control-form-container_access-control-for-9ad954.js | admin-admin-module | 669.73 kB | -default-src_app_my-dspace-page_my-dspace-search_module_ts.js | item-page-item-page-module | 644.91 kB | -default-src_app_shared_search_search_module_ts.js | home-page-home-page-module | 516.17 kB | -src_app_statistics-page_statistics-page-routing_module_ts.js | statistics-page-statistics-page-routing-module | 515.51 kB | -node_modules_canvg_lib_index_es_js.js | canvg | 444.14 kB | -node_modules_sanitize-html_index_js.js | sanitize-html | 369.70 kB | -src_app_process-page_process-page_module_ts.js | process-page-process-page-module | 360.18 kB | -default-src_app_openaire_openaire_module_ts.js | home-page-home-page-module | 343.72 kB | -node_modules_markdown-it_index_js.js | markdown-it | 256.82 kB | -node_modules_klaro_dist_klaro-no-translations_js.js | klaro-dist-klaro-no-translations | 238.82 kB | -src_app_collection-page_collection-page_module_ts-src_app_core_submission_metadatasecuritycon-e12537.js | collection-page-collection-page-module | 232.04 kB | -default-src_app_shared_context-menu_context-menu_module_ts.js | home-page-home-page-module | 228.58 kB | -default-src_app_item-page_full_full-item-page_component_ts.js | item-page-item-page-module | 221.71 kB | -src_app_community-page_community-page_module_ts-src_app_core_resolving_resolver_actions_ts.js | community-page-community-page-module | 201.16 kB | -src_app_info_info_module_ts.js | info-info-module | 176.82 kB | -src_app_collection-page_edit-collection-page_edit-collection-page_module_ts.js | edit-collection-page-edit-collection-page-module | 168.77 kB | -default-src_app_shared_form_form_module_ts.js | register-page-register-page-module | 155.65 kB | -default-src_app_profile-page_profile-page_module_ts.js | register-page-register-page-module | 154.85 kB | -src_app_health-page_health-page_module_ts.js | health-page-health-page-module | 141.52 kB | -src_app_request-copy_request-copy_module_ts.js | request-copy-request-copy-module | 128.18 kB | -default-src_app_external-log-in_external-login_module_ts.js | external-login-page-external-login-page-module | 124.10 kB | -default-src_app_shared_resource-policies_resource-policies_module_ts.js | collection-page-collection-page-module | 121.96 kB | -src_app_bitstream-page_bitstream-page_module_ts.js | bitstream-page-bitstream-page-module | 116.96 kB | -src_app_browse-by_browse-by-page_module_ts.js | browse-by-browse-by-page-module | 116.38 kB | -default-src_app_shared_comcol_comcol_module_ts.js | community-page-community-page-module | 92.28 kB | -default-src_app_item-page_versions_item-versions_component_ts-src_app_item-page_versions_noti-4172bf.js | collection-page-collection-page-module | 91.84 kB | -default-src_app_my-dspace-page_my-dspace-new-submission_my-dspace-new-bulk-import_my-dspace-n-3c519e.js | item-page-item-page-module | 84.56 kB | -default-src_app_shared_upload_uploader_uploader_component_ts.js | community-page-community-page-module | 84.18 kB | -default-src_app_openaire_reciter-suggestions_suggestions-notification_suggestions-notificatio-a79ff0.js | home-page-home-page-module | 80.90 kB | -src_app_register-page_register-page_module_ts.js | register-page-register-page-module | 75.59 kB | -src_app_external-login-review-account-info-page_external-login-review-account-info-page_module_ts.js | external-login-review-account-info-page-external-login-review-account-info-page-module | 72.50 kB | -src_app_workflowitems-edit-page_workflowitems-edit-page_module_ts.js | workflowitems-edit-page-workflowitems-edit-page-module | 70.18 kB | -default-src_app_shared_search_search-filters_search-filters_component_ts.js | home-page-home-page-module | 69.62 kB | -src_app_community-page_edit-community-page_edit-community-page_module_ts.js | edit-community-page-edit-community-page-module | 66.31 kB | -src_app_audit-page_audit-page_module_ts.js | audit-page-audit-page-module | 66.27 kB | -node_modules_jspdf_node_modules_dompurify_dist_purify_js.js | dompurify | 64.67 kB | -src_app_forgot-password_forgot-password_module_ts.js | forgot-password-forgot-password-module | 62.76 kB | -src_app_community-list-page_community-list-page_module_ts.js | community-list-page-community-list-page-module | 62.38 kB | -common.js | common | 58.95 kB | -default-src_app_shared_form_builder_ds-dynamic-form-ui_relation-lookup-modal_external-source--7b94eb.js | register-page-register-page-module | 58.91 kB | -default-src_app_item-page_full_field-components_file-section_full-file-section_component_ts.js | item-page-item-page-module | 58.65 kB | -default-src_app_shared_search_search-sidebar_search-sidebar_component_ts.js | home-page-home-page-module | 55.29 kB | -src_app_lookup-by-id_lookup-by-id_module_ts.js | lookup-by-id-lookup-by-id-module | 54.03 kB | -default-src_app_shared_dso-page_dso-page_module_ts.js | home-page-home-page-module | 53.50 kB | -src_app_suggestions-page_suggestions-page_module_ts.js | suggestions-page-suggestions-page-module | 51.34 kB | -src_app_workspaceitems-edit-page_workspaceitems-edit-page_module_ts.js | workspaceitems-edit-page-workspaceitems-edit-page-module | 49.57 kB | -src_themes_custom_app_search-page_configuration-search-page_component_ts.js | - | 47.86 kB | -src_app_home-page_home-page_module_ts.js | home-page-home-page-module | 47.18 kB | -src_themes_custom_app_dso-shared_dso-edit-metadata_dso-edit-metadata_component_ts.js | - | 45.99 kB | -default-node_modules_angular_cdk_fesm2020_tree_mjs.js | home-page-home-page-module | 44.19 kB | -default-src_app_shared_form_builder_ds-dynamic-form-ui_relation-lookup-modal_search-tab_dynam-156c97.js | register-page-register-page-module | 42.85 kB | -src_themes_custom_app_admin_admin-sidebar_admin-sidebar_component_ts.js | - | 40.25 kB | -default-src_app_shared_form_builder_ds-dynamic-form-ui_relation-lookup-modal_external-source--518ca3.js | register-page-register-page-module | 39.08 kB | -src_themes_custom_app_register-page_create-profile_create-profile_component_ts.js | - | 37.55 kB | -src_app_subscriptions-page_subscriptions-page-routing_module_ts.js | subscriptions-page-subscriptions-page-routing-module | 36.68 kB | -src_themes_custom_app_item-page_full_field-components_file-section_full-file-section_component_ts.js | - | 36.54 kB | -src_app_admin_admin-notifications_admin-notifications_module_ts.js | admin-notifications-admin-notifications-module | 35.54 kB | -src_themes_custom_app_profile-page_profile-page_component_ts.js | - | 33.49 kB | -src_themes_custom_app_shared_form_builder_ds-dynamic-form-ui_relation-lookup-modal_search-tab-b4dc26.js | - | 33.04 kB | -src_themes_custom_app_collection-page_collection-page_component_ts.js | - | 32.54 kB | -src_themes_custom_app_submission_import-external_submission-import-external_component_ts.js | - | 32.35 kB | -src_themes_custom_app_item-page_full_full-item-page_component_ts.js | - | 31.86 kB | -default-src_app_shared_subscriptions_subscriptions_module_ts.js | home-page-home-page-module | 31.65 kB | -src_themes_custom_app_shared_search_search-filters_search-filters_component_ts.js | - | 31.25 kB | -src_app_external-login-page_external-login-page_module_ts.js | external-login-page-external-login-page-module | 30.59 kB | -src_themes_custom_app_browse-by_browse-by-metadata-page_browse-by-metadata-page_component_ts.js | - | 29.97 kB | -src_themes_custom_app_shared_form_builder_ds-dynamic-form-ui_relation-lookup-modal_external-s-ff25a5.js | - | 29.88 kB | -src_themes_custom_app_browse-by_browse-by-title-page_browse-by-title-page_component_ts.js | - | 29.83 kB | -src_themes_custom_app_browse-by_browse-by-date-page_browse-by-date-page_component_ts.js | - | 29.78 kB | -src_app_lucky-search_lucky-search_module_ts.js | lucky-search-lucky-search-module | 29.60 kB | -src_themes_custom_app_submission_sections_upload_file_section-upload-file_component_ts.js | - | 29.00 kB | -src_themes_custom_app_footer_footer_component_ts.js | - | 28.97 kB | -src_themes_custom_app_shared_auth-nav-menu_auth-nav-menu_component_ts.js | - | 28.61 kB | -src_themes_custom_app_home-page_home-page_component_ts.js | - | 28.46 kB | -default-src_app_shared_upload_upload_module_ts.js | community-page-community-page-module | 27.89 kB | -src_themes_custom_app_community-page_community-page_component_ts.js | - | 27.85 kB | -src_app_invitation_invitation_module_ts.js | invitation-invitation-module | 27.59 kB | -src_themes_custom_app_shared_object-list_object-list_component_ts.js | - | 27.40 kB | -src_app_login-page_login-page_module_ts.js | login-page-login-page-module | 27.27 kB | -src_themes_custom_app_shared_form_builder_ds-dynamic-form-ui_relation-lookup-modal_external-s-db3f14.js | - | 27.19 kB | -src_app_bulk-import_bulk-import-page_module_ts.js | bulk-import-bulk-import-page-module | 26.96 kB | -src_themes_custom_app_item-page_media-viewer_media-viewer_component_ts.js | - | 26.66 kB | -src_themes_custom_app_breadcrumbs_breadcrumbs_component_ts.js | - | 26.57 kB | -src_themes_custom_app_info_feedback_feedback-form_feedback-form_component_ts.js | - | 26.27 kB | -src_themes_custom_app_bitstream-page_edit-bitstream-page_edit-bitstream-page_component_ts.js | - | 26.25 kB | -default-src_app_shared_comcol_comcol-page-browse-by_comcol-page-browse-by_component_ts.js | community-page-community-page-module | 26.19 kB | -src_themes_custom_app_navbar_expandable-navbar-section_expandable-navbar-section_component_ts.js | - | 25.97 kB | -src_themes_custom_app_item-page_simple_item-page_component_ts.js | - | 25.84 kB | -src_themes_custom_app_shared_collection-dropdown_collection-dropdown_component_ts.js | - | 24.99 kB | -default-src_themes_custom_app_thumbnail_thumbnail_component_ts.js | - | 24.12 kB | -src_themes_custom_app_shared_search_search-sidebar_search-sidebar_component_ts.js | - | 23.97 kB | -default-src_themes_custom_app_shared_loading_loading_component_ts.js | - | 23.37 kB | -src_themes_custom_app_item-page_media-viewer_media-viewer-video_media-viewer-video_component_ts.js | - | 23.25 kB | -src_app_logout-page_logout-page_module_ts.js | logout-page-logout-page-module | 22.78 kB | -src_themes_custom_app_navbar_navbar_component_ts.js | - | 22.69 kB | -src_themes_custom_app_collection-page_edit-item-template-page_edit-item-template-page_component_ts.js | - | 22.24 kB | -src_themes_custom_app_shared_comcol-page-browse-by_comcol-page-browse-by_component_ts.js | - | 21.72 kB | -src_themes_custom_app_root_root_component_ts.js | - | 21.66 kB | -default-src_app_shared_search_search-settings_search-settings_component_ts.js | home-page-home-page-module | 21.22 kB | -src_themes_custom_app_community-list-page_community-list_community-list_component_ts.js | - | 21.19 kB | -src_themes_custom_app_forgot-password_forgot-password-form_forgot-password-form_component_ts.js | - | 21.10 kB | -src_themes_custom_app_info_end-user-agreement_end-user-agreement_component_ts.js | - | 20.97 kB | -src_themes_custom_app_shared_search-form_search-form_component_ts.js | - | 20.85 kB | -src_app_explore-page_explore-page_module_ts.js | explore-page-explore-page-module | 20.55 kB | -src_themes_custom_app_community-page_sub-collection-list_community-page-sub-collection-list_c-b4080d.js | - | 20.28 kB | -src_themes_custom_app_community-page_sub-community-list_community-page-sub-community-list_com-047b39.js | - | 20.24 kB | -src_themes_custom_app_shared_search_search-settings_search-settings_component_ts.js | - | 20.19 kB | -src_themes_custom_app_browse-most-elements_browse-most-elements_component_ts.js | - | 20.10 kB | -src_themes_custom_app_search-navbar_search-navbar_component_ts.js | - | 20.09 kB | -src_themes_custom_app_home-page_home-news_home-news_component_ts.js | - | 19.98 kB | -src_themes_custom_app_header_header_component_ts.js | - | 19.87 kB | -src_themes_custom_app_my-dspace-page_my-dspace-page_component_ts.js | - | 19.84 kB | -src_themes_custom_app_shared_dso-selector_modal-wrappers_create-community-parent-selector_cre-612817.js | - | 19.57 kB | -src_app_import-external-page_import-external-page_module_ts.js | import-external-page-import-external-page-module | 19.23 kB | -src_app_external-login-email-confirmation-page_external-login-email-confirmation-page_module_ts.js | external-login-email-confirmation-page-external-login-email-confirmation-page-module | 18.97 kB | -src_themes_custom_app_shared_object-collection_shared_badges_badges_component_ts.js | - | 18.27 kB | -default-src_app_shared_search_search-results_search-results_component_ts.js | home-page-home-page-module | 18.22 kB | -src_themes_custom_app_shared_file-download-link_file-download-link_component_ts.js | - | 18.08 kB | -src_themes_custom_app_item-page_alerts_item-alerts_component_ts.js | - | 17.83 kB | -default-src_app_core_breadcrumbs_dso-context-breadcrumb_resolver_ts.js | statistics-page-statistics-page-routing-module | 17.42 kB | -src_themes_custom_app_browse-by_browse-by-taxonomy-page_browse-by-taxonomy-page_component_ts.js | - | 16.85 kB | -default-src_app_shared_comcol_comcol-page-handle_comcol-page-handle_component_ts.js | community-page-community-page-module | 16.63 kB | -default-src_app_my-dspace-page_collection-selector_collection-selector_component_ts.js | item-page-item-page-module | 16.35 kB | -src_themes_custom_app_pagenotfound_pagenotfound_component_ts.js | - | 16.31 kB | -src_themes_custom_app_item-page_media-viewer_media-viewer-image_media-viewer-image_component_ts.js | - | 16.30 kB | -src_themes_custom_app_forbidden_forbidden_component_ts.js | - | 16.19 kB | -src_themes_custom_app_login-page_login-page_component_ts.js | - | 16.08 kB | -src_themes_custom_app_lookup-by-id_objectnotfound_objectnotfound_component_ts.js | - | 16.07 kB | -src_themes_custom_app_header-nav-wrapper_header-navbar-wrapper_component_ts.js | - | 15.76 kB | -src_themes_custom_app_logout-page_logout-page_component_ts.js | - | 15.59 kB | -src_app_search-page_search-page-routing_module_ts.js | search-page-search-page-routing-module | 15.42 kB | -src_themes_custom_app_shared_object-collection_shared_badges_my-dspace-status-badge_my-dspace-ffcbf3.js | - | 15.36 kB | -src_themes_custom_app_submission_edit_submission-edit_component_ts.js | - | 15.25 kB | -src_themes_custom_app_shared_results-back-button_results-back-button_component_ts.js | - | 15.21 kB | -src_themes_custom_app_statistics-page_collection-statistics-page_collection-statistics-page_c-9ddab3.js | - | 15.04 kB | -src_themes_custom_app_statistics-page_community-statistics-page_community-statistics-page_com-097481.js | - | 15.02 kB | -src_themes_custom_app_statistics-page_item-statistics-page_item-statistics-page_component_ts.js | - | 14.85 kB | -src_themes_custom_app_statistics-page_site-statistics-page_site-statistics-page_component_ts.js | - | 14.85 kB | -src_themes_custom_app_register-page_register-email_register-email_component_ts.js | - | 14.70 kB | -src_themes_custom_app_forgot-password_forgot-password-email_forgot-email_component_ts.js | - | 14.70 kB | -src_themes_custom_app_info_feedback_feedback_component_ts.js | - | 14.39 kB | -src_themes_custom_app_info_privacy_privacy_component_ts.js | - | 14.33 kB | -src_themes_custom_app_submission_submit_submission-submit_component_ts.js | - | 13.97 kB | -default-node_modules_punycode_punycode_es6_js.js | markdown-it | 13.93 kB | -src_themes_custom_app_item-page_simple_field-components_file-section_file-section_component_ts.js | - | 13.57 kB | -src_themes_custom_app_item-page_simple_metadata-representation-list_metadata-representation-l-dac313.js | - | 12.84 kB | -src_themes_custom_app_item-page_edit-item-page_item-status_item-status_component_ts.js | - | 11.48 kB | -src_app_edit-item-relationships_edit-item-relationships_module_ts.js | edit-item-relationships-edit-item-relationships-module | 10.55 kB | -src_themes_custom_app_request-copy_grant-request-copy_grant-request-copy_component_ts.js | - | 10.01 kB | -src_themes_custom_app_request-copy_email-request-copy_email-request-copy_component_ts.js | - | 9.72 kB | -src_themes_custom_app_workflowitems-edit-page_workflow-item-send-back_workflow-item-send-back-25d77c.js | - | 7.60 kB | -src_themes_custom_app_workflowitems-edit-page_workflow-item-delete_workflow-item-delete_compo-e22128.js | - | 7.50 kB | -src_themes_custom_app_request-copy_deny-request-copy_deny-request-copy_component_ts.js | - | 7.49 kB | -src_themes_custom_app_shared_dso-selector_modal-wrappers_create-collection-parent-selector_cr-5094a7.js | - | 6.55 kB | -src_themes_custom_app_shared_dso-selector_modal-wrappers_create-item-parent-selector_create-i-f7c57c.js | - | 6.52 kB | -src_themes_custom_app_shared_dso-selector_modal-wrappers_edit-collection-selector_edit-collec-d105b5.js | - | 6.30 kB | -src_themes_custom_app_shared_dso-selector_modal-wrappers_edit-community-selector_edit-communi-84936c.js | - | 6.26 kB | -src_themes_custom_app_shared_dso-selector_modal-wrappers_edit-item-selector_edit-item-selecto-557c03.js | - | 6.10 kB | -src_app_my-dspace-page_my-dspace-page_module_ts.js | my-dspace-page-my-dspace-page-module | 5.69 kB | -src_app_submit-page_submit-page_module_ts.js | submit-page-submit-page-module | 4.85 kB | -src_themes_custom_app_shared_object-collection_shared_badges_access-status-badge_access-statu-f5960a.js | - | 4.65 kB | -src_themes_custom_app_shared_object-collection_shared_badges_status-badge_status-badge_component_ts.js | - | 4.59 kB | -src_themes_custom_app_item-page_simple_field-components_specific-field_title_item-page-title--1d1caa.js | - | 4.50 kB | -src_app_edit-item_edit-item_module_ts.js | edit-item-edit-item-module | 4.44 kB | -src_app_core_submission_metadatasecurityconfig-data_service_ts.js | item-page-item-page-module | 4.42 kB | -src_app_shared_access-control-form-container_access-control-form_module_ts.js | access-control-access-control-module | 3.85 kB | -src_themes_custom_app_community-list-page_community-list-page_component_ts.js | - | 3.64 kB | -src_themes_custom_app_shared_object-collection_shared_badges_type-badge_type-badge_component_ts.js | - | 3.57 kB | -src_themes_custom_app_search-page_search-page_component_ts.js | - | 3.40 kB | -src_themes_custom_app_browse-by_browse-by-switcher_browse-by-switcher_component_ts.js | - | 3.21 kB | -src_app_core_export-service_server-export_service_ts.js | core-export-service-server-export-service | 1.75 kB | - -Build at: 2023-11-08T18:27:15.526Z - Hash: c711f95358772a11 - Time: 82304ms - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/node_modules/canvg/lib/index.es.js depends on 'raf'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/node_modules/canvg/lib/index.es.js depends on 'rgbcolor'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/node_modules/markdown-it-mathjax3/index.js depends on 'juice/client'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/node_modules/markdown-it-mathjax3/index.js depends on 'mathjax-full/js/adaptors/liteAdaptor.js'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/node_modules/markdown-it-mathjax3/index.js depends on 'mathjax-full/js/a11y/assistive-mml.js'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/node_modules/markdown-it-mathjax3/index.js depends on 'mathjax-full/js/handlers/html.js'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/node_modules/markdown-it-mathjax3/index.js depends on 'mathjax-full/js/input/tex.js'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/node_modules/markdown-it-mathjax3/index.js depends on 'mathjax-full/js/input/tex/AllPackages.js'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/node_modules/markdown-it-mathjax3/index.js depends on 'mathjax-full/js/mathjax.js'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/node_modules/markdown-it-mathjax3/index.js depends on 'mathjax-full/js/output/svg.js'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/node_modules/sanitize-html/index.js depends on 'escape-string-regexp'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/node_modules/sanitize-html/index.js depends on 'htmlparser2'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/node_modules/sanitize-html/index.js depends on 'is-plain-object'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/node_modules/sanitize-html/index.js depends on 'parse-srcset'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/node_modules/sanitize-html/index.js depends on 'postcss'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/src/app/shared/date.util.ts depends on 'date-fns-tz'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/src/app/shared/utils/file-size-pipe.ts depends on 'filesize'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/src/app/shared/utils/markdown.pipe.ts depends on 'markdown-it-mathjax3'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - -Warning: /home/giuseppe/development/nodejs/dspace-angular-cris-7/src/app/shared/utils/markdown.pipe.ts depends on 'sanitize-html'. CommonJS or AMD dependencies can cause optimization bailouts. -For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies - - - -Error: src/app/access-control/access-control.module.ts:33:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -33 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/access-control/access-control.module.ts:36:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -36 FormModule, - ~~~~~~~~~~ - - -Error: src/app/access-control/access-control.module.ts:38:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -38 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/access-control/access-control.module.ts:39:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -39 AccessControlFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/admin/admin-notifications/admin-notifications.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin-notifications/admin-notifications.module.ts:17:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -17 OpenaireModule - ~~~~~~~~~~~~~~ - - -Error: src/app/admin/admin-registries/admin-registries.module.ts:16:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -16 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin-registries/admin-registries.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 BitstreamFormatsModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/admin/admin-registries/admin-registries.module.ts:20:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -20 FormModule - ~~~~~~~~~~ - - -Error: src/app/admin/admin-registries/bitstream-formats/bitstream-formats.module.ts:15:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -15 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin-registries/bitstream-formats/bitstream-formats.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 FormModule - ~~~~~~~~~~ - - -Error: src/app/admin/admin-search-page/admin-search.module.ts:27:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 27 imports: [ - ~ - 28 SearchModule, - ~~~~~~~~~~~~~~~~~ -... - 31 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 32 ], - ~~~ - - -Error: src/app/admin/admin-search-page/admin-search.module.ts:27:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 27 imports: [ - ~ - 28 SearchModule, - ~~~~~~~~~~~~~~~~~ -... - 31 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 32 ], - ~~~ - - -Error: src/app/admin/admin-search-page/admin-search.module.ts:27:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 27 imports: [ - ~ - 28 SearchModule, - ~~~~~~~~~~~~~~~~~ -... - 31 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 32 ], - ~~~ - - -Error: src/app/admin/admin-search-page/admin-search.module.ts:28:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -28 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin-workflow-page/admin-workflow.module.ts:40:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -40 imports: [ - ~ -41 SearchModule, - ~~~~~~~~~~~~~~~~~ -42 SharedModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -43 ], - ~~~ - - -Error: src/app/admin/admin-workflow-page/admin-workflow.module.ts:41:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -41 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin.module.ts:26:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 26 imports: [ - ~ - 27 AdminRoutingModule, - ~~~~~~~~~~~~~~~~~~~~~~~ -... - 34 UploadModule, - ~~~~~~~~~~~~~~~~~ - 35 ], - ~~~ - - -Error: src/app/admin/admin.module.ts:26:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 26 imports: [ - ~ - 27 AdminRoutingModule, - ~~~~~~~~~~~~~~~~~~~~~~~ -... - 34 UploadModule, - ~~~~~~~~~~~~~~~~~ - 35 ], - ~~~ - - -Error: src/app/admin/admin.module.ts:28:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -28 AdminRegistriesModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/admin/admin.module.ts:29:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -29 AccessControlModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/admin/admin.module.ts:32:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -32 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin.module.ts:34:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -34 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/app.module.ts:123:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 imports: [ - ~ -124 BrowserModule.withServerTransition({ appId: 'dspace-angular' }), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -125 ...IMPORTS - ~~~~~~~~~~~~~~ -126 ], - ~~~ - - -Error: src/app/app.module.ts:123:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 imports: [ - ~ -124 BrowserModule.withServerTransition({ appId: 'dspace-angular' }), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -125 ...IMPORTS - ~~~~~~~~~~~~~~ -126 ], - ~~~ - - -Error: src/app/app.module.ts:123:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 imports: [ - ~ -124 BrowserModule.withServerTransition({ appId: 'dspace-angular' }), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -125 ...IMPORTS - ~~~~~~~~~~~~~~ -126 ], - ~~~ - - -Error: src/app/app.module.ts:123:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 imports: [ - ~ -124 BrowserModule.withServerTransition({ appId: 'dspace-angular' }), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -125 ...IMPORTS - ~~~~~~~~~~~~~~ -126 ], - ~~~ - - -Error: src/app/app.module.ts:123:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 imports: [ - ~ -124 BrowserModule.withServerTransition({ appId: 'dspace-angular' }), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -125 ...IMPORTS - ~~~~~~~~~~~~~~ -126 ], - ~~~ - - -Error: src/app/audit-page/audit-page.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/bitstream-page/bitstream-page.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/bitstream-page/bitstream-page.module.ts:20:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -20 FormModule, - ~~~~~~~~~~ - - -Error: src/app/bitstream-page/bitstream-page.module.ts:21:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -21 ResourcePoliciesModule - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/browse-by/browse-by-page.module.ts:10:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 10 imports: [ - ~ - 11 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~~~~~~ -... - 13 BrowseByModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 14 ], - ~~~ - - -Error: src/app/browse-by/browse-by-page.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/browse-by/browse-by.module.ts:33:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -33 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/browse-by/browse-by.module.ts:35:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -35 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/browse-by/browse-by.module.ts:37:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -37 FormModule, - ~~~~~~~~~~ - - -Error: src/app/bulk-import/bulk-import-page.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-form/collection-form.module.ts:10:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -10 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-form/collection-form.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 FormModule, - ~~~~~~~~~~ - - -Error: src/app/collection-page/collection-form/collection-form.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-page.module.ts:25:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 25 imports: [ - ~ - 26 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 35 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 36 ], - ~~~ - - -Error: src/app/collection-page/collection-page.module.ts:25:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 25 imports: [ - ~ - 26 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 35 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 36 ], - ~~~ - - -Error: src/app/collection-page/collection-page.module.ts:27:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -27 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-page.module.ts:30:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -30 EditItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-page.module.ts:31:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -31 CollectionFormModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-page.module.ts:32:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -32 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-page.module.ts:33:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -33 DsoSharedModule, - ~~~~~~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:27:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -27 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:29:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -29 CollectionFormModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:30:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -30 ResourcePoliciesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:31:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -31 FormModule, - ~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:32:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -32 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:33:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -33 AccessControlFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/community-list-page/community-list-page.module.ts:24:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -24 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/community-form/community-form.module.ts:10:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -10 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/community-form/community-form.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 FormModule, - ~~~~~~~~~~ - - -Error: src/app/community-page/community-form/community-form.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/community-page/community-page.module.ts:35:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 35 imports: [ - ~ - 36 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 43 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 44 ], - ~~~ - - -Error: src/app/community-page/community-page.module.ts:35:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 35 imports: [ - ~ - 36 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 43 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 44 ], - ~~~ - - -Error: src/app/community-page/community-page.module.ts:37:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -37 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/community-page.module.ts:40:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -40 CommunityFormModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/community-page/community-page.module.ts:41:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -41 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/edit-community-page/edit-community-page.module.ts:24:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -24 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/edit-community-page/edit-community-page.module.ts:26:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -26 CommunityFormModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/community-page/edit-community-page/edit-community-page.module.ts:27:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -27 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/edit-community-page/edit-community-page.module.ts:28:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -28 ResourcePoliciesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/community-page/edit-community-page/edit-community-page.module.ts:29:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -29 AccessControlFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-item-page/cris-item-page.module.ts:17:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -17 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/cris-item-page/cris-item-page.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 CrisLayoutModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-item-page/cris-item-page.module.ts:19:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -19 StatisticsModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-item-page/cris-item-page.module.ts:21:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -21 ItemSharedModule - ~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout-matrix/cris-layout-box-container/boxes/metadata/rendering-types/advanced-attachment/bitstream-attachment/attachment-render/attachment-rendering.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout-matrix/cris-layout-box-container/boxes/metadata/rendering-types/advanced-attachment/bitstream-attachment/attachment-render/attachment-rendering.module.ts:19:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -19 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:166:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -166 imports: [ - ~ -167 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -177 FormModule - ~~~~~~~~~~~~~~ -178 ], - ~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:166:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -166 imports: [ - ~ -167 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -177 FormModule - ~~~~~~~~~~~~~~ -178 ], - ~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:168:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -168 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:170:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -170 MyDSpacePageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:173:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -173 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:176:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -176 AttachmentRenderingModule, - ~~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:177:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -177 FormModule - ~~~~~~~~~~ - - -Error: src/app/dso-shared/dso-shared.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/edit-item-relationships/edit-item-relationships.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 18 SearchModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 19 ] - ~~~ - - -Error: src/app/edit-item-relationships/edit-item-relationships.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 18 SearchModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 19 ] - ~~~ - - -Error: src/app/edit-item-relationships/edit-item-relationships.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 18 SearchModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 19 ] - ~~~ - - -Error: src/app/edit-item/edit-item.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/edit-item/edit-item.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/entity-groups/journal-entities/journal-entities.module.ts:50:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 50 imports: [ - ~ - 51 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 56 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 57 ], - ~~~ - - -Error: src/app/entity-groups/journal-entities/journal-entities.module.ts:52:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -52 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/entity-groups/journal-entities/journal-entities.module.ts:53:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -53 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/entity-groups/research-entities/research-entities.module.ts:73:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 73 imports: [ - ~ - 74 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 81 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 82 ], - ~~~ - - -Error: src/app/entity-groups/research-entities/research-entities.module.ts:75:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -75 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/entity-groups/research-entities/research-entities.module.ts:76:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -76 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/explore-page/explore-page.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/explore-page/explore-page.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 ExploreModule - ~~~~~~~~~~~~~ - - -Error: src/app/external-log-in/external-login.module.ts:21:27 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -21 imports: [CommonModule, SharedModule], - ~~~~~~~~~~~~ - - -Error: src/app/external-login-email-confirmation-page/external-login-email-confirmation-page.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 ExternalLoginModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/external-login-page/external-login-page.module.ts:22:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -22 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/external-login-page/external-login-page.module.ts:23:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -23 ExternalLoginModule - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/external-login-review-account-info-page/external-login-review-account-info-page.module.ts:25:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -25 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/external-login-review-account-info-page/external-login-review-account-info-page.module.ts:27:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -27 ExternalLoginModule - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/footer/footer.module.ts:19:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -19 ExploreModule, - ~~~~~~~~~~~~~ - - -Error: src/app/footer/footer.module.ts:20:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -20 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/forgot-password/forgot-password.module.ts:15:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -15 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/forgot-password/forgot-password.module.ts:17:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -17 RegisterEmailFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/forgot-password/forgot-password.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 ProfilePageModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/app/health-page/health-page.module.ts:22:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -22 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/home-page/home-page.module.ts:24:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 24 imports: [ - ~ - 25 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 32 StatisticsModule.forRoot() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 33 ], - ~~~ - - -Error: src/app/home-page/home-page.module.ts:24:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 24 imports: [ - ~ - 25 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 32 StatisticsModule.forRoot() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 33 ], - ~~~ - - -Error: src/app/home-page/home-page.module.ts:24:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 24 imports: [ - ~ - 25 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 32 StatisticsModule.forRoot() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 33 ], - ~~~ - - -Error: src/app/home-page/home-page.module.ts:24:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 24 imports: [ - ~ - 25 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 32 StatisticsModule.forRoot() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 33 ], - ~~~ - - -Error: src/app/home-page/home-page.module.ts:29:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -29 ExploreModule, - ~~~~~~~~~~~~~ - - -Error: src/app/home-page/home-page.module.ts:31:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -31 OpenaireModule, - ~~~~~~~~~~~~~~ - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:4:45 - error NG8004: No pipe found with name 'translate'. - -4 {{'home.top-level-communities.head' | translate}} - ~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:6:57 - error NG8004: No pipe found with name 'translate'. - -6

{{'home.top-level-communities.help' | translate}}

- ~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:7:3 - error NG8001: 'ds-viewable-collection' is not a known element: -1. If 'ds-viewable-collection' is an Angular component, then verify that it is part of this module. -2. If 'ds-viewable-collection' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. - - 7 - ~~~~~~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:8:5 - error NG8002: Can't bind to 'config' since it isn't a known property of 'ds-viewable-collection'. -1. If 'ds-viewable-collection' is an Angular component and it has 'config' input, then verify that it is part of this module. -2. If 'ds-viewable-collection' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. -3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. - -8 [config]="config" - ~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:9:5 - error NG8002: Can't bind to 'sortConfig' since it isn't a known property of 'ds-viewable-collection'. -1. If 'ds-viewable-collection' is an Angular component and it has 'sortConfig' input, then verify that it is part of this module. -2. If 'ds-viewable-collection' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. -3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. - -9 [sortConfig]="sortConfig" - ~~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:10:5 - error NG8002: Can't bind to 'objects' since it isn't a known property of 'ds-viewable-collection'. -1. If 'ds-viewable-collection' is an Angular component and it has 'objects' input, then verify that it is part of this module. -2. If 'ds-viewable-collection' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. -3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. - -10 [objects]="communitiesRD$ | async" - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:10:33 - error NG8004: No pipe found with name 'async'. - -10 [objects]="communitiesRD$ | async" - ~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:11:5 - error NG8002: Can't bind to 'hideGear' since it isn't a known property of 'ds-viewable-collection'. -1. If 'ds-viewable-collection' is an Angular component and it has 'hideGear' input, then verify that it is part of this module. -2. If 'ds-viewable-collection' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. -3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. - -11 [hideGear]="true"> - ~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:14:1 - error NG8001: 'ds-error' is not a known element: -1. If 'ds-error' is an Angular component, then verify that it is part of this module. -2. If 'ds-error' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. - -14 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:14:45 - error NG8002: Can't bind to 'message' since it isn't a known property of 'ds-error'. -1. If 'ds-error' is an Angular component and it has 'message' input, then verify that it is part of this module. -2. If 'ds-error' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. -3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. - -14 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:14:87 - error NG8004: No pipe found with name 'translate'. - -14 - ~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:15:1 - error NG8001: 'ds-themed-loading' is not a known element: -1. If 'ds-themed-loading' is an Angular component, then verify that it is part of this module. -2. If 'ds-themed-loading' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. - -15 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:15:54 - error NG8002: Can't bind to 'message' since it isn't a known property of 'ds-themed-loading'. -1. If 'ds-themed-loading' is an Angular component and it has 'message' input, then verify that it is part of this module. -2. If 'ds-themed-loading' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. -3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. - -15 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:15:99 - error NG8004: No pipe found with name 'translate'. - -15 - ~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/import-external-page/import-external-page.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 20 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 21 ], - ~~~ - - -Error: src/app/import-external-page/import-external-page.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 20 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 21 ], - ~~~ - - -Error: src/app/import-external-page/import-external-page.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 20 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 21 ], - ~~~ - - -Error: src/app/import-external-page/import-external-page.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/info/info.module.ts:35:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -35 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/invitation/invitation.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/item-page/alerts/item-alerts.component.ts:13:14 - error NG6007: The Component 'ItemAlertsComponent' is declared by more than one NgModule. - -13 export class ItemAlertsComponent { - ~~~~~~~~~~~~~~~~~~~ - - src/app/item-page/item-shared.module.ts:60:14 - 60 export class ItemSharedModule { } - ~~~~~~~~~~~~~~~~ - 'ItemAlertsComponent' is listed in the declarations of the NgModule 'ItemSharedModule'. - src/app/item-page/item-page.module.ts:137:14 - 137 export class ItemPageModule { - ~~~~~~~~~~~~~~ - 'ItemAlertsComponent' is listed in the declarations of the NgModule 'ItemPageModule'. - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:59:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -59 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:62:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -62 SearchPageModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:64:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -64 ResourcePoliciesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:66:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -66 ItemVersionsModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:67:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -67 DsoSharedModule, - ~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:69:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -69 AccessControlFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/item-page.module.ts:110:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -110 imports: [ - ~ -111 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -127 MiradorViewerModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ -128 ], - ~~~ - - -Error: src/app/item-page/item-page.module.ts:110:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -110 imports: [ - ~ -111 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -127 MiradorViewerModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ -128 ], - ~~~ - - -Error: src/app/item-page/item-page.module.ts:110:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -110 imports: [ - ~ -111 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -127 MiradorViewerModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ -128 ], - ~~~ - - -Error: src/app/item-page/item-page.module.ts:110:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -110 imports: [ - ~ -111 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -127 MiradorViewerModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ -128 ], - ~~~ - - -Error: src/app/item-page/item-page.module.ts:110:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -110 imports: [ - ~ -111 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -127 MiradorViewerModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ -128 ], - ~~~ - - -Error: src/app/item-page/item-page.module.ts:114:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -114 EditItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/item-page.module.ts:115:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -115 ItemVersionsModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/item-page.module.ts:116:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -116 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/item-page.module.ts:123:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/item-page/item-page.module.ts:125:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -125 CrisItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/item-shared.module.ts:45:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -45 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/item-page/item-shared.module.ts:46:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -46 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/item-page/versions/item-versions.module.ts:21:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -21 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/login-page/login-page.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/logout-page/logout-page.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/lookup-by-id/lookup-by-id.module.ts:15:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -15 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/lucky-search/lucky-search.module.ts:12:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 12 imports: [ - ~ - 13 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 16 LuckySearchRoutingModule - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 17 ] - ~~~ - - -Error: src/app/lucky-search/lucky-search.module.ts:12:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 12 imports: [ - ~ - 13 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 16 LuckySearchRoutingModule - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 17 ] - ~~~ - - -Error: src/app/my-dspace-page/my-dspace-page.module.ts:38:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 38 imports: [ - ~ - 39 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 45 UploadModule, - ~~~~~~~~~~~~~~~~~ - 46 ], - ~~~ - - -Error: src/app/my-dspace-page/my-dspace-page.module.ts:40:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -40 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/my-dspace-page/my-dspace-page.module.ts:41:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -41 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/my-dspace-page/my-dspace-page.module.ts:44:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -44 OpenaireModule, - ~~~~~~~~~~~~~~ - - -Error: src/app/my-dspace-page/my-dspace-page.module.ts:45:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -45 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/my-dspace-page/my-dspace-search.module.ts:53:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 53 imports: [ - ~ - 54 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 59 JournalEntitiesModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 60 ], - ~~~ - - -Error: src/app/my-dspace-page/my-dspace-search.module.ts:53:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 53 imports: [ - ~ - 54 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 59 JournalEntitiesModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 60 ], - ~~~ - - -Error: src/app/my-dspace-page/my-dspace-search.module.ts:55:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -55 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/my-dspace-page/my-dspace-search.module.ts:57:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -57 MyDSpaceActionsModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/navbar/navbar.module.ts:31:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -31 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/openaire/openaire.module.ts:87:14 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -87 imports: [ - ~ -88 ...MODULES, - ~~~~~~~~~~~~~~~~~~~ -89 SearchModule - ~~~~~~~~~~~~~~~~~~~~ -90 ], - ~~~~~ - - -Error: src/app/openaire/openaire.module.ts:89:9 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -89 SearchModule - ~~~~~~~~~~~~ - - -Error: src/app/process-page/process-page-shared.module.ts:22:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -22 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/process-page/process-page.module.ts:10:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -10 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/process-page/process-page.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 ProcessPageSharedModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/profile-page/profile-page.module.ts:22:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -22 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/profile-page/profile-page.module.ts:23:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -23 FormModule, - ~~~~~~~~~~ - - -Error: src/app/profile-page/profile-page.module.ts:25:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -25 OpenaireModule - ~~~~~~~~~~~~~~ - - -Error: src/app/register-email-form/register-email-form.module.ts:9:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -9 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/register-page/register-page.module.ts:15:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -15 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/register-page/register-page.module.ts:17:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -17 RegisterEmailFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/register-page/register-page.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 ProfilePageModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/app/request-copy/request-copy.module.ts:16:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -16 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/root.module.ts:98:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 98 imports: [ - ~ - 99 ...IMPORTS - ~~~~~~~~~~~~~~ -100 ], - ~~~ - - -Error: src/app/root.module.ts:98:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 98 imports: [ - ~ - 99 ...IMPORTS - ~~~~~~~~~~~~~~ -100 ], - ~~~ - - -Error: src/app/root.module.ts:98:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 98 imports: [ - ~ - 99 ...IMPORTS - ~~~~~~~~~~~~~~ -100 ], - ~~~ - - -Error: src/app/root.module.ts:98:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 98 imports: [ - ~ - 99 ...IMPORTS - ~~~~~~~~~~~~~~ -100 ], - ~~~ - - -Error: src/app/root.module.ts:98:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 98 imports: [ - ~ - 99 ...IMPORTS - ~~~~~~~~~~~~~~ -100 ], - ~~~ - - -Error: src/app/search-page/search-page-routing.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SearchPageModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/search-page/search-page.module.ts:22:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 22 imports: [ - ~ - 23 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 29 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 30 ], - ~~~ - - -Error: src/app/search-page/search-page.module.ts:22:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 22 imports: [ - ~ - 23 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 29 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 30 ], - ~~~ - - -Error: src/app/search-page/search-page.module.ts:22:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 22 imports: [ - ~ - 23 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 29 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 30 ], - ~~~ - - -Error: src/app/search-page/search-page.module.ts:22:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 22 imports: [ - ~ - 23 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 29 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 30 ], - ~~~ - - -Error: src/app/search-page/search-page.module.ts:24:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -24 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/access-control-form-container/access-control-form.module.ts:19:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -19 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/browse-by/shared-browse-by.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/browse-by/shared-browse-by.module.ts:22:5 - error NG6003: This export contains errors, which may affect components that depend on this NgModule. - -22 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/comcol/comcol.module.ts:41:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -41 FormModule, - ~~~~~~~~~~ - - -Error: src/app/shared/comcol/comcol.module.ts:42:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -42 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/comcol/comcol.module.ts:43:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -43 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/comcol/comcol.module.ts:47:5 - error NG6003: This export contains errors, which may affect components that depend on this NgModule. - -47 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/context-menu/context-menu.module.ts:70:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -70 imports: [ - ~ -71 MODULE, - ~~~~~~~~~~~ -72 ], - ~~~ - - -Error: src/app/shared/context-menu/context-menu.module.ts:70:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -70 imports: [ - ~ -71 MODULE, - ~~~~~~~~~~~ -72 ], - ~~~ - - -Error: src/app/shared/explore/explore.module.ts:47:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -47 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/shared/form/form.module.ts:95:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -95 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/form/form.module.ts:96:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -96 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/mydspace-actions/mydspace-actions.module.ts:45:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -45 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/object-list/my-dspace-result-list-element/item-list-preview/item-list-preview.component.ts:22:14 - error NG6007: The Component 'ItemListPreviewComponent' is declared by more than one NgModule. - -22 export class ItemListPreviewComponent implements OnInit { - ~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/shared/shared.module.ts:642:14 - 642 export class SharedModule { - ~~~~~~~~~~~~ - 'ItemListPreviewComponent' is listed in the declarations of the NgModule 'SharedModule'. - src/app/my-dspace-page/my-dspace-search.module.ts:72:14 - 72 export class MyDspaceSearchModule { - ~~~~~~~~~~~~~~~~~~~~ - 'ItemListPreviewComponent' is listed in the declarations of the NgModule 'MyDspaceSearchModule'. - - -Error: src/app/shared/object-list/my-dspace-result-list-element/item-list-preview/themed-item-list-preview.component.ts:18:14 - error NG6007: The Component 'ThemedItemListPreviewComponent' is declared by more than one NgModule. - -18 export class ThemedItemListPreviewComponent extends ThemedComponent { - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/shared/shared.module.ts:642:14 - 642 export class SharedModule { - ~~~~~~~~~~~~ - 'ThemedItemListPreviewComponent' is listed in the declarations of the NgModule 'SharedModule'. - src/app/my-dspace-page/my-dspace-search.module.ts:72:14 - 72 export class MyDspaceSearchModule { - ~~~~~~~~~~~~~~~~~~~~ - 'ThemedItemListPreviewComponent' is listed in the declarations of the NgModule 'MyDspaceSearchModule'. - - -Error: src/app/shared/resource-policies/resource-policies.module.ts:37:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -37 FormModule, - ~~~~~~~~~~ - - -Error: src/app/shared/resource-policies/resource-policies.module.ts:39:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -39 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/shared/search/search.module.ts:103:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -103 imports: [ - ~ -104 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -110 NouisliderModule, - ~~~~~~~~~~~~~~~~~~~~~ -111 ], - ~~~ - - -Error: src/app/shared/subscriptions/subscriptions.module.ts:27:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -27 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/shared/upload/upload.module.ts:23:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -23 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/statistics-page/cris-statistics-page/cris-statistics-page.module.ts:18:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 18 imports: [ - ~ - 19 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 24 Ng2GoogleChartsModule - ~~~~~~~~~~~~~~~~~~~~~~~~~ - 25 ], - ~~~ - - -Error: src/app/statistics-page/cris-statistics-page/cris-statistics-page.module.ts:18:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 18 imports: [ - ~ - 19 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 24 Ng2GoogleChartsModule - ~~~~~~~~~~~~~~~~~~~~~~~~~ - 25 ], - ~~~ - - -Error: src/app/statistics-page/cris-statistics-page/statistics-chart/statistics-chart.module.ts:35:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -35 imports: [ - ~ -36 ...IMPORTS - ~~~~~~~~~~~~~~ -37 ], - ~~~ - - -Error: src/app/statistics-page/statistics-page-routing.module.ts:22:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -22 StatisticsPageModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/statistics-page/statistics-page.module.ts:42:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 42 imports: [ - ~ - 43 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 47 StatisticsModule.forRoot() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 48 ], - ~~~ - - -Error: src/app/statistics-page/statistics-page.module.ts:44:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -44 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/statistics-page/statistics-page.module.ts:45:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -45 CrisStatisticsPageModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/statistics/statistics.module.ts:19:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -19 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/submission/submission.module.ts:122:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -122 imports: [ - ~ -123 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -135 UploadModule, - ~~~~~~~~~~~~~~~~~ -136 ], - ~~~ - - -Error: src/app/submission/submission.module.ts:122:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -122 imports: [ - ~ -123 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -135 UploadModule, - ~~~~~~~~~~~~~~~~~ -136 ], - ~~~ - - -Error: src/app/submission/submission.module.ts:122:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -122 imports: [ - ~ -123 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -135 UploadModule, - ~~~~~~~~~~~~~~~~~ -136 ], - ~~~ - - -Error: src/app/submission/submission.module.ts:125:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -125 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/submission/submission.module.ts:131:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -131 FormModule, - ~~~~~~~~~~ - - -Error: src/app/submission/submission.module.ts:135:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -135 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/submission/submission.module.ts:140:5 - error NG6003: This export contains errors, which may affect components that depend on this NgModule. - -140 FormModule, - ~~~~~~~~~~ - - -Error: src/app/submit-page/submit-page.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/submit-page/submit-page.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/submit-page/submit-page.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 FormModule, - ~~~~~~~~~~ - - -Error: src/app/subscriptions-page/subscriptions-page-routing.module.ts:9:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -9 SubscriptionsPageModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/subscriptions-page/subscriptions-page.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/subscriptions-page/subscriptions-page.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SubscriptionsModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/suggestions-page/suggestions-page.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/suggestions-page/suggestions-page.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 OpenaireModule, - ~~~~~~~~~~~~~~ - - -Error: src/app/system-wide-alert/system-wide-alert.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:40:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -40 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:41:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -41 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:42:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -42 StatisticsModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:43:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -43 ItemPageModule, - ~~~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:44:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -44 AccessControlModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:45:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -45 FormModule, - ~~~~~~~~~~ - - -Error: src/app/workspaceitems-edit-page/workspaceitems-edit-page.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/workspaceitems-edit-page/workspaceitems-edit-page.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/modules/app/browser-app.module.ts:49:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 49 imports: [ - ~ - 50 BrowserModule.withServerTransition({ - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -... - 67 AppModule - ~~~~~~~~~~~~~ - 68 ], - ~~~ - - -Error: src/modules/app/browser-app.module.ts:67:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -67 AppModule - ~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:106:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -106 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:107:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -107 RootModule, - ~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:108:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -108 NavbarModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:109:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -109 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:111:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -111 ItemPageModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:112:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -112 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:114:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -114 AttachmentRenderingModule, - ~~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:115:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -115 ContextMenuModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:116:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -116 FooterModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:117:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -117 ExploreModule, - ~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:258:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -258 AdminRegistriesModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:259:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -259 AdminSearchModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:260:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -260 AdminWorkflowModuleModule, - ~~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:261:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -261 AppModule, - ~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:262:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -262 RootModule, - ~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:263:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -263 BitstreamFormatsModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:264:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -264 BrowseByModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:265:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -265 CollectionFormModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:266:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -266 CollectionPageModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:268:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -268 CommunityFormModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:269:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -269 CommunityListPageModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:270:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -270 CommunityPageModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:273:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -273 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:274:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -274 ItemPageModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:275:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -275 EditItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:276:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -276 ItemVersionsModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:278:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -278 HomePageModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:281:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -281 InfoModule, - ~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:282:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -282 JournalEntitiesModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:285:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -285 MyDspaceSearchModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:286:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -286 NavbarModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:288:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -288 ProfilePageModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:289:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -289 RegisterEmailFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:290:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -290 ResearchEntitiesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:293:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -293 SearchPageModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:294:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -294 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:295:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -295 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:297:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -297 StatisticsModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:298:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -298 StatisticsPageModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:302:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -302 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:303:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -303 MyDSpacePageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:304:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -304 MyDspaceSearchModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:305:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -305 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:307:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -307 ResourcePoliciesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:308:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -308 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:309:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -309 DsoSharedModule, - ~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:310:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -310 SystemWideAlertModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:312:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -312 FormModule, - ~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:313:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -313 RequestCopyModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:314:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -314 ContextMenuModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:315:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -315 OpenaireModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:316:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -316 CrisItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:317:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -317 CrisStatisticsPageModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:319:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -319 FooterModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:320:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -320 ExploreModule, - ~~~~~~~~~~~~~ - - -Error: src/themes/dspace/eager-theme.module.ts:31:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -31 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/eager-theme.module.ts:32:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -32 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/eager-theme.module.ts:34:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -34 RootModule, - ~~~~~~~~~~ - - -Error: src/themes/dspace/eager-theme.module.ts:35:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -35 NavbarModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/eager-theme.module.ts:36:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -36 ExploreModule - ~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:62:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -62 AdminRegistriesModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:63:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -63 AdminSearchModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:64:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -64 AdminWorkflowModuleModule, - ~~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:65:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -65 AppModule, - ~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:66:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -66 RootModule, - ~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:67:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -67 BitstreamFormatsModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:68:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -68 BrowseByModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:69:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -69 BrowseByPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:71:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -71 CollectionFormModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:72:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -72 CollectionPageModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:74:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -74 CommunityFormModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:75:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -75 CommunityListPageModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:76:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -76 CommunityPageModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:79:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -79 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:80:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -80 ItemPageModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:81:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -81 EditItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:82:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -82 ItemVersionsModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:84:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -84 HomePageModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:87:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -87 InfoModule, - ~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:88:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -88 JournalEntitiesModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:90:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -90 MyDspaceSearchModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:91:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -91 NavbarModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:93:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -93 ProfilePageModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:94:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -94 RegisterEmailFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:95:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -95 ResearchEntitiesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:98:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -98 SearchPageModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:99:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -99 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:100:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -100 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:101:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -101 StatisticsModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:102:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -102 StatisticsPageModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:106:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -106 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:107:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -107 MyDSpacePageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:108:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -108 MyDspaceSearchModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:109:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -109 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:111:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -111 ResourcePoliciesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:112:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -112 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:113:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -113 ContextMenuModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:115:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -115 FooterModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:116:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -116 ExploreModule, - ~~~~~~~~~~~~~ - - -Error: src/themes/eager-themes.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 DSpaceEagerThemeModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - - - -** Angular Live Development Server is listening on localhost:4000, open your browser on http://localhost:4000/ ** - - -✖ Failed to compile. -✔ Browser application bundle generation complete. - -Initial Chunk Files | Names | Raw Size -runtime.js | runtime | 14.46 kB | - -185 unchanged chunks - -Build at: 2023-11-08T18:27:48.846Z - Hash: ff30762585b30dfd - Time: 31506ms - -Error: src/app/access-control/access-control.module.ts:33:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -33 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/access-control/access-control.module.ts:36:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -36 FormModule, - ~~~~~~~~~~ - - -Error: src/app/access-control/access-control.module.ts:38:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -38 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/access-control/access-control.module.ts:39:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -39 AccessControlFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/admin/admin-notifications/admin-notifications.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin-notifications/admin-notifications.module.ts:17:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -17 OpenaireModule - ~~~~~~~~~~~~~~ - - -Error: src/app/admin/admin-registries/admin-registries.module.ts:16:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -16 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin-registries/admin-registries.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 BitstreamFormatsModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/admin/admin-registries/admin-registries.module.ts:20:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -20 FormModule - ~~~~~~~~~~ - - -Error: src/app/admin/admin-registries/bitstream-formats/bitstream-formats.module.ts:15:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -15 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin-registries/bitstream-formats/bitstream-formats.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 FormModule - ~~~~~~~~~~ - - -Error: src/app/admin/admin-search-page/admin-search.module.ts:27:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 27 imports: [ - ~ - 28 SearchModule, - ~~~~~~~~~~~~~~~~~ -... - 31 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 32 ], - ~~~ - - -Error: src/app/admin/admin-search-page/admin-search.module.ts:27:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 27 imports: [ - ~ - 28 SearchModule, - ~~~~~~~~~~~~~~~~~ -... - 31 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 32 ], - ~~~ - - -Error: src/app/admin/admin-search-page/admin-search.module.ts:27:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 27 imports: [ - ~ - 28 SearchModule, - ~~~~~~~~~~~~~~~~~ -... - 31 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 32 ], - ~~~ - - -Error: src/app/admin/admin-search-page/admin-search.module.ts:28:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -28 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin-workflow-page/admin-workflow.module.ts:40:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -40 imports: [ - ~ -41 SearchModule, - ~~~~~~~~~~~~~~~~~ -42 SharedModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -43 ], - ~~~ - - -Error: src/app/admin/admin-workflow-page/admin-workflow.module.ts:41:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -41 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin.module.ts:26:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 26 imports: [ - ~ - 27 AdminRoutingModule, - ~~~~~~~~~~~~~~~~~~~~~~~ -... - 34 UploadModule, - ~~~~~~~~~~~~~~~~~ - 35 ], - ~~~ - - -Error: src/app/admin/admin.module.ts:26:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 26 imports: [ - ~ - 27 AdminRoutingModule, - ~~~~~~~~~~~~~~~~~~~~~~~ -... - 34 UploadModule, - ~~~~~~~~~~~~~~~~~ - 35 ], - ~~~ - - -Error: src/app/admin/admin.module.ts:28:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -28 AdminRegistriesModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/admin/admin.module.ts:29:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -29 AccessControlModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/admin/admin.module.ts:32:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -32 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin.module.ts:34:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -34 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/app.module.ts:123:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 imports: [ - ~ -124 BrowserModule.withServerTransition({ appId: 'dspace-angular' }), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -125 ...IMPORTS - ~~~~~~~~~~~~~~ -126 ], - ~~~ - - -Error: src/app/app.module.ts:123:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 imports: [ - ~ -124 BrowserModule.withServerTransition({ appId: 'dspace-angular' }), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -125 ...IMPORTS - ~~~~~~~~~~~~~~ -126 ], - ~~~ - - -Error: src/app/app.module.ts:123:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 imports: [ - ~ -124 BrowserModule.withServerTransition({ appId: 'dspace-angular' }), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -125 ...IMPORTS - ~~~~~~~~~~~~~~ -126 ], - ~~~ - - -Error: src/app/app.module.ts:123:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 imports: [ - ~ -124 BrowserModule.withServerTransition({ appId: 'dspace-angular' }), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -125 ...IMPORTS - ~~~~~~~~~~~~~~ -126 ], - ~~~ - - -Error: src/app/app.module.ts:123:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 imports: [ - ~ -124 BrowserModule.withServerTransition({ appId: 'dspace-angular' }), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -125 ...IMPORTS - ~~~~~~~~~~~~~~ -126 ], - ~~~ - - -Error: src/app/audit-page/audit-page.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/bitstream-page/bitstream-page.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/bitstream-page/bitstream-page.module.ts:20:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -20 FormModule, - ~~~~~~~~~~ - - -Error: src/app/bitstream-page/bitstream-page.module.ts:21:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -21 ResourcePoliciesModule - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/browse-by/browse-by-page.module.ts:10:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 10 imports: [ - ~ - 11 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~~~~~~ -... - 13 BrowseByModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 14 ], - ~~~ - - -Error: src/app/browse-by/browse-by-page.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/browse-by/browse-by.module.ts:33:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -33 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/browse-by/browse-by.module.ts:35:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -35 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/browse-by/browse-by.module.ts:37:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -37 FormModule, - ~~~~~~~~~~ - - -Error: src/app/bulk-import/bulk-import-page.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-form/collection-form.module.ts:10:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -10 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-form/collection-form.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 FormModule, - ~~~~~~~~~~ - - -Error: src/app/collection-page/collection-form/collection-form.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-page.module.ts:25:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 25 imports: [ - ~ - 26 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 35 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 36 ], - ~~~ - - -Error: src/app/collection-page/collection-page.module.ts:25:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 25 imports: [ - ~ - 26 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 35 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 36 ], - ~~~ - - -Error: src/app/collection-page/collection-page.module.ts:27:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -27 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-page.module.ts:30:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -30 EditItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-page.module.ts:31:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -31 CollectionFormModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-page.module.ts:32:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -32 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-page.module.ts:33:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -33 DsoSharedModule, - ~~~~~~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:27:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -27 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:29:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -29 CollectionFormModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:30:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -30 ResourcePoliciesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:31:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -31 FormModule, - ~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:32:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -32 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:33:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -33 AccessControlFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/community-list-page/community-list-page.module.ts:24:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -24 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/community-form/community-form.module.ts:10:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -10 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/community-form/community-form.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 FormModule, - ~~~~~~~~~~ - - -Error: src/app/community-page/community-form/community-form.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/community-page/community-page.module.ts:35:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 35 imports: [ - ~ - 36 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 43 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 44 ], - ~~~ - - -Error: src/app/community-page/community-page.module.ts:35:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 35 imports: [ - ~ - 36 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 43 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 44 ], - ~~~ - - -Error: src/app/community-page/community-page.module.ts:37:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -37 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/community-page.module.ts:40:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -40 CommunityFormModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/community-page/community-page.module.ts:41:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -41 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/edit-community-page/edit-community-page.module.ts:24:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -24 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/edit-community-page/edit-community-page.module.ts:26:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -26 CommunityFormModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/community-page/edit-community-page/edit-community-page.module.ts:27:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -27 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/edit-community-page/edit-community-page.module.ts:28:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -28 ResourcePoliciesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/community-page/edit-community-page/edit-community-page.module.ts:29:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -29 AccessControlFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-item-page/cris-item-page.module.ts:17:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -17 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/cris-item-page/cris-item-page.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 CrisLayoutModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-item-page/cris-item-page.module.ts:19:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -19 StatisticsModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-item-page/cris-item-page.module.ts:21:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -21 ItemSharedModule - ~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout-matrix/cris-layout-box-container/boxes/metadata/rendering-types/advanced-attachment/bitstream-attachment/attachment-render/attachment-rendering.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout-matrix/cris-layout-box-container/boxes/metadata/rendering-types/advanced-attachment/bitstream-attachment/attachment-render/attachment-rendering.module.ts:19:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -19 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:166:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -166 imports: [ - ~ -167 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -177 FormModule - ~~~~~~~~~~~~~~ -178 ], - ~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:166:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -166 imports: [ - ~ -167 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -177 FormModule - ~~~~~~~~~~~~~~ -178 ], - ~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:168:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -168 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:170:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -170 MyDSpacePageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:173:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -173 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:176:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -176 AttachmentRenderingModule, - ~~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:177:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -177 FormModule - ~~~~~~~~~~ - - -Error: src/app/dso-shared/dso-shared.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/edit-item-relationships/edit-item-relationships.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 18 SearchModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 19 ] - ~~~ - - -Error: src/app/edit-item-relationships/edit-item-relationships.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 18 SearchModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 19 ] - ~~~ - - -Error: src/app/edit-item-relationships/edit-item-relationships.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 18 SearchModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 19 ] - ~~~ - - -Error: src/app/edit-item/edit-item.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/edit-item/edit-item.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/entity-groups/journal-entities/journal-entities.module.ts:50:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 50 imports: [ - ~ - 51 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 56 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 57 ], - ~~~ - - -Error: src/app/entity-groups/journal-entities/journal-entities.module.ts:52:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -52 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/entity-groups/journal-entities/journal-entities.module.ts:53:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -53 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/entity-groups/research-entities/research-entities.module.ts:73:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 73 imports: [ - ~ - 74 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 81 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 82 ], - ~~~ - - -Error: src/app/entity-groups/research-entities/research-entities.module.ts:75:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -75 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/entity-groups/research-entities/research-entities.module.ts:76:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -76 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/explore-page/explore-page.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/explore-page/explore-page.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 ExploreModule - ~~~~~~~~~~~~~ - - -Error: src/app/external-log-in/external-login.module.ts:21:27 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -21 imports: [CommonModule, SharedModule], - ~~~~~~~~~~~~ - - -Error: src/app/external-login-email-confirmation-page/external-login-email-confirmation-page.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 ExternalLoginModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/external-login-page/external-login-page.module.ts:22:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -22 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/external-login-page/external-login-page.module.ts:23:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -23 ExternalLoginModule - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/external-login-review-account-info-page/external-login-review-account-info-page.module.ts:25:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -25 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/external-login-review-account-info-page/external-login-review-account-info-page.module.ts:27:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -27 ExternalLoginModule - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/footer/footer.module.ts:19:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -19 ExploreModule, - ~~~~~~~~~~~~~ - - -Error: src/app/footer/footer.module.ts:20:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -20 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/forgot-password/forgot-password.module.ts:15:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -15 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/forgot-password/forgot-password.module.ts:17:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -17 RegisterEmailFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/forgot-password/forgot-password.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 ProfilePageModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/app/health-page/health-page.module.ts:22:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -22 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/home-page/home-page.module.ts:24:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 24 imports: [ - ~ - 25 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 32 StatisticsModule.forRoot() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 33 ], - ~~~ - - -Error: src/app/home-page/home-page.module.ts:24:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 24 imports: [ - ~ - 25 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 32 StatisticsModule.forRoot() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 33 ], - ~~~ - - -Error: src/app/home-page/home-page.module.ts:24:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 24 imports: [ - ~ - 25 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 32 StatisticsModule.forRoot() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 33 ], - ~~~ - - -Error: src/app/home-page/home-page.module.ts:24:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 24 imports: [ - ~ - 25 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 32 StatisticsModule.forRoot() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 33 ], - ~~~ - - -Error: src/app/home-page/home-page.module.ts:29:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -29 ExploreModule, - ~~~~~~~~~~~~~ - - -Error: src/app/home-page/home-page.module.ts:31:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -31 OpenaireModule, - ~~~~~~~~~~~~~~ - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:4:45 - error NG8004: No pipe found with name 'translate'. - -4 {{'home.top-level-communities.head' | translate}} - ~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:6:57 - error NG8004: No pipe found with name 'translate'. - -6

{{'home.top-level-communities.help' | translate}}

- ~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:7:3 - error NG8001: 'ds-viewable-collection' is not a known element: -1. If 'ds-viewable-collection' is an Angular component, then verify that it is part of this module. -2. If 'ds-viewable-collection' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. - - 7 - ~~~~~~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:8:5 - error NG8002: Can't bind to 'config' since it isn't a known property of 'ds-viewable-collection'. -1. If 'ds-viewable-collection' is an Angular component and it has 'config' input, then verify that it is part of this module. -2. If 'ds-viewable-collection' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. -3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. - -8 [config]="config" - ~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:9:5 - error NG8002: Can't bind to 'sortConfig' since it isn't a known property of 'ds-viewable-collection'. -1. If 'ds-viewable-collection' is an Angular component and it has 'sortConfig' input, then verify that it is part of this module. -2. If 'ds-viewable-collection' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. -3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. - -9 [sortConfig]="sortConfig" - ~~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:10:5 - error NG8002: Can't bind to 'objects' since it isn't a known property of 'ds-viewable-collection'. -1. If 'ds-viewable-collection' is an Angular component and it has 'objects' input, then verify that it is part of this module. -2. If 'ds-viewable-collection' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. -3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. - -10 [objects]="communitiesRD$ | async" - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:10:33 - error NG8004: No pipe found with name 'async'. - -10 [objects]="communitiesRD$ | async" - ~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:11:5 - error NG8002: Can't bind to 'hideGear' since it isn't a known property of 'ds-viewable-collection'. -1. If 'ds-viewable-collection' is an Angular component and it has 'hideGear' input, then verify that it is part of this module. -2. If 'ds-viewable-collection' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. -3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. - -11 [hideGear]="true"> - ~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:14:1 - error NG8001: 'ds-error' is not a known element: -1. If 'ds-error' is an Angular component, then verify that it is part of this module. -2. If 'ds-error' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. - -14 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:14:45 - error NG8002: Can't bind to 'message' since it isn't a known property of 'ds-error'. -1. If 'ds-error' is an Angular component and it has 'message' input, then verify that it is part of this module. -2. If 'ds-error' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. -3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. - -14 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:14:87 - error NG8004: No pipe found with name 'translate'. - -14 - ~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:15:1 - error NG8001: 'ds-themed-loading' is not a known element: -1. If 'ds-themed-loading' is an Angular component, then verify that it is part of this module. -2. If 'ds-themed-loading' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. - -15 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:15:54 - error NG8002: Can't bind to 'message' since it isn't a known property of 'ds-themed-loading'. -1. If 'ds-themed-loading' is an Angular component and it has 'message' input, then verify that it is part of this module. -2. If 'ds-themed-loading' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. -3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. - -15 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/home-page/top-level-community-list/top-level-community-list.component.html:15:99 - error NG8004: No pipe found with name 'translate'. - -15 - ~~~~~~~~~ - - src/app/home-page/top-level-community-list/top-level-community-list.component.ts:23:16 - 23 templateUrl: './top-level-community-list.component.html', - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Error occurs in the template of component TopLevelCommunityListComponent. - - -Error: src/app/import-external-page/import-external-page.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 20 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 21 ], - ~~~ - - -Error: src/app/import-external-page/import-external-page.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 20 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 21 ], - ~~~ - - -Error: src/app/import-external-page/import-external-page.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 20 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 21 ], - ~~~ - - -Error: src/app/import-external-page/import-external-page.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/info/info.module.ts:35:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -35 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/invitation/invitation.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/item-page/alerts/item-alerts.component.ts:13:14 - error NG6007: The Component 'ItemAlertsComponent' is declared by more than one NgModule. - -13 export class ItemAlertsComponent { - ~~~~~~~~~~~~~~~~~~~ - - src/app/item-page/item-shared.module.ts:60:14 - 60 export class ItemSharedModule { } - ~~~~~~~~~~~~~~~~ - 'ItemAlertsComponent' is listed in the declarations of the NgModule 'ItemSharedModule'. - src/app/item-page/item-page.module.ts:137:14 - 137 export class ItemPageModule { - ~~~~~~~~~~~~~~ - 'ItemAlertsComponent' is listed in the declarations of the NgModule 'ItemPageModule'. - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:59:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -59 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:62:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -62 SearchPageModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:64:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -64 ResourcePoliciesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:66:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -66 ItemVersionsModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:67:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -67 DsoSharedModule, - ~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:69:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -69 AccessControlFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/item-page.module.ts:110:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -110 imports: [ - ~ -111 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -127 MiradorViewerModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ -128 ], - ~~~ - - -Error: src/app/item-page/item-page.module.ts:110:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -110 imports: [ - ~ -111 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -127 MiradorViewerModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ -128 ], - ~~~ - - -Error: src/app/item-page/item-page.module.ts:110:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -110 imports: [ - ~ -111 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -127 MiradorViewerModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ -128 ], - ~~~ - - -Error: src/app/item-page/item-page.module.ts:110:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -110 imports: [ - ~ -111 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -127 MiradorViewerModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ -128 ], - ~~~ - - -Error: src/app/item-page/item-page.module.ts:110:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -110 imports: [ - ~ -111 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -127 MiradorViewerModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ -128 ], - ~~~ - - -Error: src/app/item-page/item-page.module.ts:114:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -114 EditItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/item-page.module.ts:115:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -115 ItemVersionsModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/item-page.module.ts:116:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -116 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/item-page.module.ts:123:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/item-page/item-page.module.ts:125:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -125 CrisItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/item-shared.module.ts:45:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -45 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/item-page/item-shared.module.ts:46:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -46 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/item-page/versions/item-versions.module.ts:21:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -21 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/login-page/login-page.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/logout-page/logout-page.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/lookup-by-id/lookup-by-id.module.ts:15:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -15 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/lucky-search/lucky-search.module.ts:12:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 12 imports: [ - ~ - 13 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 16 LuckySearchRoutingModule - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 17 ] - ~~~ - - -Error: src/app/lucky-search/lucky-search.module.ts:12:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 12 imports: [ - ~ - 13 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 16 LuckySearchRoutingModule - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 17 ] - ~~~ - - -Error: src/app/my-dspace-page/my-dspace-page.module.ts:38:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 38 imports: [ - ~ - 39 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 45 UploadModule, - ~~~~~~~~~~~~~~~~~ - 46 ], - ~~~ - - -Error: src/app/my-dspace-page/my-dspace-page.module.ts:40:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -40 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/my-dspace-page/my-dspace-page.module.ts:41:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -41 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/my-dspace-page/my-dspace-page.module.ts:44:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -44 OpenaireModule, - ~~~~~~~~~~~~~~ - - -Error: src/app/my-dspace-page/my-dspace-page.module.ts:45:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -45 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/my-dspace-page/my-dspace-search.module.ts:53:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 53 imports: [ - ~ - 54 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 59 JournalEntitiesModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 60 ], - ~~~ - - -Error: src/app/my-dspace-page/my-dspace-search.module.ts:53:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 53 imports: [ - ~ - 54 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 59 JournalEntitiesModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 60 ], - ~~~ - - -Error: src/app/my-dspace-page/my-dspace-search.module.ts:55:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -55 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/my-dspace-page/my-dspace-search.module.ts:57:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -57 MyDSpaceActionsModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/navbar/navbar.module.ts:31:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -31 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/openaire/openaire.module.ts:87:14 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -87 imports: [ - ~ -88 ...MODULES, - ~~~~~~~~~~~~~~~~~~~ -89 SearchModule - ~~~~~~~~~~~~~~~~~~~~ -90 ], - ~~~~~ - - -Error: src/app/openaire/openaire.module.ts:89:9 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -89 SearchModule - ~~~~~~~~~~~~ - - -Error: src/app/process-page/process-page-shared.module.ts:22:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -22 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/process-page/process-page.module.ts:10:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -10 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/process-page/process-page.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 ProcessPageSharedModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/profile-page/profile-page.module.ts:22:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -22 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/profile-page/profile-page.module.ts:23:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -23 FormModule, - ~~~~~~~~~~ - - -Error: src/app/profile-page/profile-page.module.ts:25:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -25 OpenaireModule - ~~~~~~~~~~~~~~ - - -Error: src/app/register-email-form/register-email-form.module.ts:9:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -9 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/register-page/register-page.module.ts:15:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -15 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/register-page/register-page.module.ts:17:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -17 RegisterEmailFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/register-page/register-page.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 ProfilePageModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/app/request-copy/request-copy.module.ts:16:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -16 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/root.module.ts:98:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 98 imports: [ - ~ - 99 ...IMPORTS - ~~~~~~~~~~~~~~ -100 ], - ~~~ - - -Error: src/app/root.module.ts:98:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 98 imports: [ - ~ - 99 ...IMPORTS - ~~~~~~~~~~~~~~ -100 ], - ~~~ - - -Error: src/app/root.module.ts:98:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 98 imports: [ - ~ - 99 ...IMPORTS - ~~~~~~~~~~~~~~ -100 ], - ~~~ - - -Error: src/app/root.module.ts:98:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 98 imports: [ - ~ - 99 ...IMPORTS - ~~~~~~~~~~~~~~ -100 ], - ~~~ - - -Error: src/app/root.module.ts:98:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 98 imports: [ - ~ - 99 ...IMPORTS - ~~~~~~~~~~~~~~ -100 ], - ~~~ - - -Error: src/app/search-page/search-page-routing.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SearchPageModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/search-page/search-page.module.ts:22:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 22 imports: [ - ~ - 23 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 29 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 30 ], - ~~~ - - -Error: src/app/search-page/search-page.module.ts:22:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 22 imports: [ - ~ - 23 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 29 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 30 ], - ~~~ - - -Error: src/app/search-page/search-page.module.ts:22:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 22 imports: [ - ~ - 23 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 29 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 30 ], - ~~~ - - -Error: src/app/search-page/search-page.module.ts:22:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 22 imports: [ - ~ - 23 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 29 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 30 ], - ~~~ - - -Error: src/app/search-page/search-page.module.ts:24:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -24 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/access-control-form-container/access-control-form.module.ts:19:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -19 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/browse-by/shared-browse-by.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/browse-by/shared-browse-by.module.ts:22:5 - error NG6003: This export contains errors, which may affect components that depend on this NgModule. - -22 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/comcol/comcol.module.ts:41:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -41 FormModule, - ~~~~~~~~~~ - - -Error: src/app/shared/comcol/comcol.module.ts:42:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -42 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/comcol/comcol.module.ts:43:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -43 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/comcol/comcol.module.ts:47:5 - error NG6003: This export contains errors, which may affect components that depend on this NgModule. - -47 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/context-menu/context-menu.module.ts:70:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -70 imports: [ - ~ -71 MODULE, - ~~~~~~~~~~~ -72 ], - ~~~ - - -Error: src/app/shared/context-menu/context-menu.module.ts:70:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -70 imports: [ - ~ -71 MODULE, - ~~~~~~~~~~~ -72 ], - ~~~ - - -Error: src/app/shared/explore/explore.module.ts:47:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -47 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/shared/form/form.module.ts:95:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -95 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/form/form.module.ts:96:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -96 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/mydspace-actions/mydspace-actions.module.ts:45:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -45 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/object-list/my-dspace-result-list-element/item-list-preview/item-list-preview.component.ts:22:14 - error NG6007: The Component 'ItemListPreviewComponent' is declared by more than one NgModule. - -22 export class ItemListPreviewComponent implements OnInit { - ~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/shared/shared.module.ts:642:14 - 642 export class SharedModule { - ~~~~~~~~~~~~ - 'ItemListPreviewComponent' is listed in the declarations of the NgModule 'SharedModule'. - src/app/my-dspace-page/my-dspace-search.module.ts:72:14 - 72 export class MyDspaceSearchModule { - ~~~~~~~~~~~~~~~~~~~~ - 'ItemListPreviewComponent' is listed in the declarations of the NgModule 'MyDspaceSearchModule'. - - -Error: src/app/shared/object-list/my-dspace-result-list-element/item-list-preview/themed-item-list-preview.component.ts:18:14 - error NG6007: The Component 'ThemedItemListPreviewComponent' is declared by more than one NgModule. - -18 export class ThemedItemListPreviewComponent extends ThemedComponent { - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/shared/shared.module.ts:642:14 - 642 export class SharedModule { - ~~~~~~~~~~~~ - 'ThemedItemListPreviewComponent' is listed in the declarations of the NgModule 'SharedModule'. - src/app/my-dspace-page/my-dspace-search.module.ts:72:14 - 72 export class MyDspaceSearchModule { - ~~~~~~~~~~~~~~~~~~~~ - 'ThemedItemListPreviewComponent' is listed in the declarations of the NgModule 'MyDspaceSearchModule'. - - -Error: src/app/shared/resource-policies/resource-policies.module.ts:37:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -37 FormModule, - ~~~~~~~~~~ - - -Error: src/app/shared/resource-policies/resource-policies.module.ts:39:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -39 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/shared/search/search.module.ts:103:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -103 imports: [ - ~ -104 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -110 NouisliderModule, - ~~~~~~~~~~~~~~~~~~~~~ -111 ], - ~~~ - - -Error: src/app/shared/subscriptions/subscriptions.module.ts:27:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -27 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/shared/upload/upload.module.ts:23:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -23 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/statistics-page/cris-statistics-page/cris-statistics-page.module.ts:18:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 18 imports: [ - ~ - 19 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 24 Ng2GoogleChartsModule - ~~~~~~~~~~~~~~~~~~~~~~~~~ - 25 ], - ~~~ - - -Error: src/app/statistics-page/cris-statistics-page/cris-statistics-page.module.ts:18:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 18 imports: [ - ~ - 19 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 24 Ng2GoogleChartsModule - ~~~~~~~~~~~~~~~~~~~~~~~~~ - 25 ], - ~~~ - - -Error: src/app/statistics-page/cris-statistics-page/statistics-chart/statistics-chart.module.ts:35:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -35 imports: [ - ~ -36 ...IMPORTS - ~~~~~~~~~~~~~~ -37 ], - ~~~ - - -Error: src/app/statistics-page/statistics-page-routing.module.ts:22:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -22 StatisticsPageModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/statistics-page/statistics-page.module.ts:42:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 42 imports: [ - ~ - 43 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 47 StatisticsModule.forRoot() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 48 ], - ~~~ - - -Error: src/app/statistics-page/statistics-page.module.ts:44:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -44 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/statistics-page/statistics-page.module.ts:45:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -45 CrisStatisticsPageModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/statistics/statistics.module.ts:19:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -19 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/submission/submission.module.ts:122:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -122 imports: [ - ~ -123 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -135 UploadModule, - ~~~~~~~~~~~~~~~~~ -136 ], - ~~~ - - -Error: src/app/submission/submission.module.ts:122:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -122 imports: [ - ~ -123 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -135 UploadModule, - ~~~~~~~~~~~~~~~~~ -136 ], - ~~~ - - -Error: src/app/submission/submission.module.ts:122:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -122 imports: [ - ~ -123 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -135 UploadModule, - ~~~~~~~~~~~~~~~~~ -136 ], - ~~~ - - -Error: src/app/submission/submission.module.ts:125:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -125 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/submission/submission.module.ts:131:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -131 FormModule, - ~~~~~~~~~~ - - -Error: src/app/submission/submission.module.ts:135:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -135 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/submission/submission.module.ts:140:5 - error NG6003: This export contains errors, which may affect components that depend on this NgModule. - -140 FormModule, - ~~~~~~~~~~ - - -Error: src/app/submit-page/submit-page.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/submit-page/submit-page.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/submit-page/submit-page.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 FormModule, - ~~~~~~~~~~ - - -Error: src/app/subscriptions-page/subscriptions-page-routing.module.ts:9:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -9 SubscriptionsPageModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/subscriptions-page/subscriptions-page.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/subscriptions-page/subscriptions-page.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SubscriptionsModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/suggestions-page/suggestions-page.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/suggestions-page/suggestions-page.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 OpenaireModule, - ~~~~~~~~~~~~~~ - - -Error: src/app/system-wide-alert/system-wide-alert.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:40:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -40 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:41:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -41 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:42:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -42 StatisticsModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:43:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -43 ItemPageModule, - ~~~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:44:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -44 AccessControlModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:45:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -45 FormModule, - ~~~~~~~~~~ - - -Error: src/app/workspaceitems-edit-page/workspaceitems-edit-page.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/workspaceitems-edit-page/workspaceitems-edit-page.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/modules/app/browser-app.module.ts:49:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 49 imports: [ - ~ - 50 BrowserModule.withServerTransition({ - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -... - 67 AppModule - ~~~~~~~~~~~~~ - 68 ], - ~~~ - - -Error: src/modules/app/browser-app.module.ts:67:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -67 AppModule - ~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:106:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -106 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:107:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -107 RootModule, - ~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:108:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -108 NavbarModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:109:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -109 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:111:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -111 ItemPageModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:112:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -112 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:114:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -114 AttachmentRenderingModule, - ~~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:115:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -115 ContextMenuModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:116:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -116 FooterModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:117:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -117 ExploreModule, - ~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:258:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -258 AdminRegistriesModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:259:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -259 AdminSearchModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:260:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -260 AdminWorkflowModuleModule, - ~~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:261:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -261 AppModule, - ~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:262:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -262 RootModule, - ~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:263:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -263 BitstreamFormatsModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:264:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -264 BrowseByModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:265:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -265 CollectionFormModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:266:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -266 CollectionPageModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:268:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -268 CommunityFormModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:269:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -269 CommunityListPageModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:270:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -270 CommunityPageModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:273:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -273 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:274:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -274 ItemPageModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:275:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -275 EditItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:276:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -276 ItemVersionsModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:278:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -278 HomePageModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:281:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -281 InfoModule, - ~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:282:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -282 JournalEntitiesModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:285:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -285 MyDspaceSearchModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:286:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -286 NavbarModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:288:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -288 ProfilePageModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:289:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -289 RegisterEmailFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:290:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -290 ResearchEntitiesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:293:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -293 SearchPageModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:294:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -294 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:295:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -295 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:297:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -297 StatisticsModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:298:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -298 StatisticsPageModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:302:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -302 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:303:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -303 MyDSpacePageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:304:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -304 MyDspaceSearchModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:305:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -305 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:307:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -307 ResourcePoliciesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:308:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -308 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:309:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -309 DsoSharedModule, - ~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:310:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -310 SystemWideAlertModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:312:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -312 FormModule, - ~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:313:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -313 RequestCopyModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:314:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -314 ContextMenuModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:315:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -315 OpenaireModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:316:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -316 CrisItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:317:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -317 CrisStatisticsPageModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:319:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -319 FooterModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:320:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -320 ExploreModule, - ~~~~~~~~~~~~~ - - -Error: src/themes/dspace/eager-theme.module.ts:31:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -31 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/eager-theme.module.ts:32:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -32 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/eager-theme.module.ts:34:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -34 RootModule, - ~~~~~~~~~~ - - -Error: src/themes/dspace/eager-theme.module.ts:35:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -35 NavbarModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/eager-theme.module.ts:36:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -36 ExploreModule - ~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:62:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -62 AdminRegistriesModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:63:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -63 AdminSearchModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:64:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -64 AdminWorkflowModuleModule, - ~~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:65:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -65 AppModule, - ~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:66:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -66 RootModule, - ~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:67:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -67 BitstreamFormatsModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:68:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -68 BrowseByModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:69:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -69 BrowseByPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:71:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -71 CollectionFormModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:72:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -72 CollectionPageModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:74:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -74 CommunityFormModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:75:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -75 CommunityListPageModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:76:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -76 CommunityPageModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:79:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -79 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:80:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -80 ItemPageModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:81:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -81 EditItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:82:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -82 ItemVersionsModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:84:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -84 HomePageModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:87:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -87 InfoModule, - ~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:88:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -88 JournalEntitiesModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:90:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -90 MyDspaceSearchModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:91:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -91 NavbarModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:93:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -93 ProfilePageModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:94:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -94 RegisterEmailFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:95:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -95 ResearchEntitiesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:98:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -98 SearchPageModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:99:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -99 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:100:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -100 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:101:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -101 StatisticsModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:102:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -102 StatisticsPageModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:106:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -106 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:107:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -107 MyDSpacePageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:108:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -108 MyDspaceSearchModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:109:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -109 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:111:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -111 ResourcePoliciesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:112:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -112 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:113:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -113 ContextMenuModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:115:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -115 FooterModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:116:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -116 ExploreModule, - ~~~~~~~~~~~~~ - - -Error: src/themes/eager-themes.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 DSpaceEagerThemeModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - - - -✖ Failed to compile. -✔ Browser application bundle generation complete. - -Initial Chunk Files | Names | Raw Size -main.js | main | 8.51 MB | -runtime.js | runtime | 14.46 kB | - -Lazy Chunk Files | Names | Raw Size -src_app_home-page_home-page_module_ts.js | home-page-home-page-module | 103.16 kB | -src_themes_custom_app_home-page_top-level-community-list_top-level-community-list_component_ts.js | - | 20.38 kB | - -183 unchanged chunks - -Build at: 2023-11-08T18:34:35.241Z - Hash: d3c8858cfe612f69 - Time: 44053ms - -Error: src/app/access-control/access-control.module.ts:33:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -33 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/access-control/access-control.module.ts:36:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -36 FormModule, - ~~~~~~~~~~ - - -Error: src/app/access-control/access-control.module.ts:38:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -38 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/access-control/access-control.module.ts:39:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -39 AccessControlFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/admin/admin-notifications/admin-notifications.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin-notifications/admin-notifications.module.ts:17:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -17 OpenaireModule - ~~~~~~~~~~~~~~ - - -Error: src/app/admin/admin-registries/admin-registries.module.ts:16:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -16 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin-registries/admin-registries.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 BitstreamFormatsModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/admin/admin-registries/admin-registries.module.ts:20:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -20 FormModule - ~~~~~~~~~~ - - -Error: src/app/admin/admin-registries/bitstream-formats/bitstream-formats.module.ts:15:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -15 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin-registries/bitstream-formats/bitstream-formats.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 FormModule - ~~~~~~~~~~ - - -Error: src/app/admin/admin-search-page/admin-search.module.ts:27:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 27 imports: [ - ~ - 28 SearchModule, - ~~~~~~~~~~~~~~~~~ -... - 31 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 32 ], - ~~~ - - -Error: src/app/admin/admin-search-page/admin-search.module.ts:27:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 27 imports: [ - ~ - 28 SearchModule, - ~~~~~~~~~~~~~~~~~ -... - 31 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 32 ], - ~~~ - - -Error: src/app/admin/admin-search-page/admin-search.module.ts:27:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 27 imports: [ - ~ - 28 SearchModule, - ~~~~~~~~~~~~~~~~~ -... - 31 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 32 ], - ~~~ - - -Error: src/app/admin/admin-search-page/admin-search.module.ts:28:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -28 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin-workflow-page/admin-workflow.module.ts:40:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -40 imports: [ - ~ -41 SearchModule, - ~~~~~~~~~~~~~~~~~ -42 SharedModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -43 ], - ~~~ - - -Error: src/app/admin/admin-workflow-page/admin-workflow.module.ts:41:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -41 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin.module.ts:26:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 26 imports: [ - ~ - 27 AdminRoutingModule, - ~~~~~~~~~~~~~~~~~~~~~~~ -... - 34 UploadModule, - ~~~~~~~~~~~~~~~~~ - 35 ], - ~~~ - - -Error: src/app/admin/admin.module.ts:26:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 26 imports: [ - ~ - 27 AdminRoutingModule, - ~~~~~~~~~~~~~~~~~~~~~~~ -... - 34 UploadModule, - ~~~~~~~~~~~~~~~~~ - 35 ], - ~~~ - - -Error: src/app/admin/admin.module.ts:28:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -28 AdminRegistriesModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/admin/admin.module.ts:29:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -29 AccessControlModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/admin/admin.module.ts:32:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -32 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/admin/admin.module.ts:34:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -34 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/app.module.ts:123:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 imports: [ - ~ -124 BrowserModule.withServerTransition({ appId: 'dspace-angular' }), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -125 ...IMPORTS - ~~~~~~~~~~~~~~ -126 ], - ~~~ - - -Error: src/app/app.module.ts:123:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 imports: [ - ~ -124 BrowserModule.withServerTransition({ appId: 'dspace-angular' }), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -125 ...IMPORTS - ~~~~~~~~~~~~~~ -126 ], - ~~~ - - -Error: src/app/app.module.ts:123:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 imports: [ - ~ -124 BrowserModule.withServerTransition({ appId: 'dspace-angular' }), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -125 ...IMPORTS - ~~~~~~~~~~~~~~ -126 ], - ~~~ - - -Error: src/app/app.module.ts:123:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 imports: [ - ~ -124 BrowserModule.withServerTransition({ appId: 'dspace-angular' }), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -125 ...IMPORTS - ~~~~~~~~~~~~~~ -126 ], - ~~~ - - -Error: src/app/app.module.ts:123:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 imports: [ - ~ -124 BrowserModule.withServerTransition({ appId: 'dspace-angular' }), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -125 ...IMPORTS - ~~~~~~~~~~~~~~ -126 ], - ~~~ - - -Error: src/app/audit-page/audit-page.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/bitstream-page/bitstream-page.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/bitstream-page/bitstream-page.module.ts:20:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -20 FormModule, - ~~~~~~~~~~ - - -Error: src/app/bitstream-page/bitstream-page.module.ts:21:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -21 ResourcePoliciesModule - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/browse-by/browse-by-page.module.ts:10:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 10 imports: [ - ~ - 11 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~~~~~~ -... - 13 BrowseByModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 14 ], - ~~~ - - -Error: src/app/browse-by/browse-by-page.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/browse-by/browse-by.module.ts:33:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -33 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/browse-by/browse-by.module.ts:35:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -35 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/browse-by/browse-by.module.ts:37:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -37 FormModule, - ~~~~~~~~~~ - - -Error: src/app/bulk-import/bulk-import-page.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-form/collection-form.module.ts:10:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -10 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-form/collection-form.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 FormModule, - ~~~~~~~~~~ - - -Error: src/app/collection-page/collection-form/collection-form.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-page.module.ts:25:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 25 imports: [ - ~ - 26 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 35 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 36 ], - ~~~ - - -Error: src/app/collection-page/collection-page.module.ts:25:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 25 imports: [ - ~ - 26 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 35 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 36 ], - ~~~ - - -Error: src/app/collection-page/collection-page.module.ts:27:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -27 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-page.module.ts:30:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -30 EditItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-page.module.ts:31:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -31 CollectionFormModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-page.module.ts:32:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -32 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/collection-page.module.ts:33:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -33 DsoSharedModule, - ~~~~~~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:27:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -27 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:29:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -29 CollectionFormModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:30:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -30 ResourcePoliciesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:31:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -31 FormModule, - ~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:32:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -32 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/collection-page/edit-collection-page/edit-collection-page.module.ts:33:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -33 AccessControlFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/community-list-page/community-list-page.module.ts:24:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -24 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/community-form/community-form.module.ts:10:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -10 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/community-form/community-form.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 FormModule, - ~~~~~~~~~~ - - -Error: src/app/community-page/community-form/community-form.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/community-page/community-page.module.ts:35:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 35 imports: [ - ~ - 36 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 43 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 44 ], - ~~~ - - -Error: src/app/community-page/community-page.module.ts:35:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 35 imports: [ - ~ - 36 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 43 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 44 ], - ~~~ - - -Error: src/app/community-page/community-page.module.ts:37:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -37 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/community-page.module.ts:40:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -40 CommunityFormModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/community-page/community-page.module.ts:41:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -41 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/edit-community-page/edit-community-page.module.ts:24:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -24 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/edit-community-page/edit-community-page.module.ts:26:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -26 CommunityFormModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/community-page/edit-community-page/edit-community-page.module.ts:27:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -27 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/community-page/edit-community-page/edit-community-page.module.ts:28:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -28 ResourcePoliciesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/community-page/edit-community-page/edit-community-page.module.ts:29:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -29 AccessControlFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-item-page/cris-item-page.module.ts:17:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -17 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/cris-item-page/cris-item-page.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 CrisLayoutModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-item-page/cris-item-page.module.ts:19:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -19 StatisticsModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-item-page/cris-item-page.module.ts:21:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -21 ItemSharedModule - ~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout-matrix/cris-layout-box-container/boxes/metadata/rendering-types/advanced-attachment/bitstream-attachment/attachment-render/attachment-rendering.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout-matrix/cris-layout-box-container/boxes/metadata/rendering-types/advanced-attachment/bitstream-attachment/attachment-render/attachment-rendering.module.ts:19:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -19 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:166:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -166 imports: [ - ~ -167 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -177 FormModule - ~~~~~~~~~~~~~~ -178 ], - ~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:166:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -166 imports: [ - ~ -167 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -177 FormModule - ~~~~~~~~~~~~~~ -178 ], - ~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:168:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -168 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:170:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -170 MyDSpacePageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:173:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -173 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:176:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -176 AttachmentRenderingModule, - ~~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/cris-layout/cris-layout.module.ts:177:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -177 FormModule - ~~~~~~~~~~ - - -Error: src/app/dso-shared/dso-shared.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/edit-item-relationships/edit-item-relationships.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 18 SearchModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 19 ] - ~~~ - - -Error: src/app/edit-item-relationships/edit-item-relationships.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 18 SearchModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 19 ] - ~~~ - - -Error: src/app/edit-item-relationships/edit-item-relationships.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 18 SearchModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 19 ] - ~~~ - - -Error: src/app/edit-item/edit-item.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/edit-item/edit-item.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/entity-groups/journal-entities/journal-entities.module.ts:50:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 50 imports: [ - ~ - 51 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 56 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 57 ], - ~~~ - - -Error: src/app/entity-groups/journal-entities/journal-entities.module.ts:52:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -52 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/entity-groups/journal-entities/journal-entities.module.ts:53:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -53 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/entity-groups/research-entities/research-entities.module.ts:73:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 73 imports: [ - ~ - 74 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 81 ContextMenuModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 82 ], - ~~~ - - -Error: src/app/entity-groups/research-entities/research-entities.module.ts:75:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -75 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/entity-groups/research-entities/research-entities.module.ts:76:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -76 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/explore-page/explore-page.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/explore-page/explore-page.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 ExploreModule - ~~~~~~~~~~~~~ - - -Error: src/app/external-log-in/external-login.module.ts:21:27 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -21 imports: [CommonModule, SharedModule], - ~~~~~~~~~~~~ - - -Error: src/app/external-login-email-confirmation-page/external-login-email-confirmation-page.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 ExternalLoginModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/external-login-page/external-login-page.module.ts:22:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -22 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/external-login-page/external-login-page.module.ts:23:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -23 ExternalLoginModule - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/external-login-review-account-info-page/external-login-review-account-info-page.module.ts:25:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -25 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/external-login-review-account-info-page/external-login-review-account-info-page.module.ts:27:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -27 ExternalLoginModule - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/footer/footer.module.ts:19:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -19 ExploreModule, - ~~~~~~~~~~~~~ - - -Error: src/app/footer/footer.module.ts:20:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -20 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/forgot-password/forgot-password.module.ts:15:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -15 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/forgot-password/forgot-password.module.ts:17:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -17 RegisterEmailFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/forgot-password/forgot-password.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 ProfilePageModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/app/health-page/health-page.module.ts:22:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -22 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/home-page/home-page.module.ts:30:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 30 imports: [ - ~ - 31 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 38 StatisticsModule.forRoot() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 39 ], - ~~~ - - -Error: src/app/home-page/home-page.module.ts:30:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 30 imports: [ - ~ - 31 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 38 StatisticsModule.forRoot() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 39 ], - ~~~ - - -Error: src/app/home-page/home-page.module.ts:30:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 30 imports: [ - ~ - 31 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 38 StatisticsModule.forRoot() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 39 ], - ~~~ - - -Error: src/app/home-page/home-page.module.ts:30:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 30 imports: [ - ~ - 31 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 38 StatisticsModule.forRoot() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 39 ], - ~~~ - - -Error: src/app/home-page/home-page.module.ts:35:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -35 ExploreModule, - ~~~~~~~~~~~~~ - - -Error: src/app/home-page/home-page.module.ts:37:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -37 OpenaireModule, - ~~~~~~~~~~~~~~ - - -Error: src/app/import-external-page/import-external-page.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 20 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 21 ], - ~~~ - - -Error: src/app/import-external-page/import-external-page.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 20 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 21 ], - ~~~ - - -Error: src/app/import-external-page/import-external-page.module.ts:13:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 13 imports: [ - ~ - 14 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 20 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 21 ], - ~~~ - - -Error: src/app/import-external-page/import-external-page.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/info/info.module.ts:35:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -35 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/invitation/invitation.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/item-page/alerts/item-alerts.component.ts:13:14 - error NG6007: The Component 'ItemAlertsComponent' is declared by more than one NgModule. - -13 export class ItemAlertsComponent { - ~~~~~~~~~~~~~~~~~~~ - - src/app/item-page/item-shared.module.ts:60:14 - 60 export class ItemSharedModule { } - ~~~~~~~~~~~~~~~~ - 'ItemAlertsComponent' is listed in the declarations of the NgModule 'ItemSharedModule'. - src/app/item-page/item-page.module.ts:137:14 - 137 export class ItemPageModule { - ~~~~~~~~~~~~~~ - 'ItemAlertsComponent' is listed in the declarations of the NgModule 'ItemPageModule'. - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:59:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -59 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:62:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -62 SearchPageModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:64:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -64 ResourcePoliciesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:66:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -66 ItemVersionsModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:67:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -67 DsoSharedModule, - ~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/edit-item-page/edit-item-page.module.ts:69:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -69 AccessControlFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/item-page.module.ts:110:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -110 imports: [ - ~ -111 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -127 MiradorViewerModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ -128 ], - ~~~ - - -Error: src/app/item-page/item-page.module.ts:110:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -110 imports: [ - ~ -111 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -127 MiradorViewerModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ -128 ], - ~~~ - - -Error: src/app/item-page/item-page.module.ts:110:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -110 imports: [ - ~ -111 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -127 MiradorViewerModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ -128 ], - ~~~ - - -Error: src/app/item-page/item-page.module.ts:110:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -110 imports: [ - ~ -111 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -127 MiradorViewerModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ -128 ], - ~~~ - - -Error: src/app/item-page/item-page.module.ts:110:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -110 imports: [ - ~ -111 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -127 MiradorViewerModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ -128 ], - ~~~ - - -Error: src/app/item-page/item-page.module.ts:114:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -114 EditItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/item-page.module.ts:115:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -115 ItemVersionsModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/item-page.module.ts:116:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -116 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/item-page.module.ts:123:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -123 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/item-page/item-page.module.ts:125:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -125 CrisItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/app/item-page/item-shared.module.ts:45:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -45 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/item-page/item-shared.module.ts:46:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -46 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/item-page/versions/item-versions.module.ts:21:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -21 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/login-page/login-page.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/logout-page/logout-page.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/lookup-by-id/lookup-by-id.module.ts:15:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -15 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/lucky-search/lucky-search.module.ts:12:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 12 imports: [ - ~ - 13 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 16 LuckySearchRoutingModule - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 17 ] - ~~~ - - -Error: src/app/lucky-search/lucky-search.module.ts:12:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 12 imports: [ - ~ - 13 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 16 LuckySearchRoutingModule - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 17 ] - ~~~ - - -Error: src/app/my-dspace-page/my-dspace-page.module.ts:38:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 38 imports: [ - ~ - 39 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 45 UploadModule, - ~~~~~~~~~~~~~~~~~ - 46 ], - ~~~ - - -Error: src/app/my-dspace-page/my-dspace-page.module.ts:40:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -40 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/my-dspace-page/my-dspace-page.module.ts:41:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -41 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/my-dspace-page/my-dspace-page.module.ts:44:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -44 OpenaireModule, - ~~~~~~~~~~~~~~ - - -Error: src/app/my-dspace-page/my-dspace-page.module.ts:45:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -45 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/my-dspace-page/my-dspace-search.module.ts:53:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 53 imports: [ - ~ - 54 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 59 JournalEntitiesModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 60 ], - ~~~ - - -Error: src/app/my-dspace-page/my-dspace-search.module.ts:53:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 53 imports: [ - ~ - 54 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 59 JournalEntitiesModule.withEntryComponents(), - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 60 ], - ~~~ - - -Error: src/app/my-dspace-page/my-dspace-search.module.ts:55:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -55 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/my-dspace-page/my-dspace-search.module.ts:57:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -57 MyDSpaceActionsModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/navbar/navbar.module.ts:31:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -31 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/openaire/openaire.module.ts:87:14 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -87 imports: [ - ~ -88 ...MODULES, - ~~~~~~~~~~~~~~~~~~~ -89 SearchModule - ~~~~~~~~~~~~~~~~~~~~ -90 ], - ~~~~~ - - -Error: src/app/openaire/openaire.module.ts:89:9 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -89 SearchModule - ~~~~~~~~~~~~ - - -Error: src/app/process-page/process-page-shared.module.ts:22:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -22 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/process-page/process-page.module.ts:10:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -10 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/process-page/process-page.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 ProcessPageSharedModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/profile-page/profile-page.module.ts:22:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -22 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/profile-page/profile-page.module.ts:23:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -23 FormModule, - ~~~~~~~~~~ - - -Error: src/app/profile-page/profile-page.module.ts:25:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -25 OpenaireModule - ~~~~~~~~~~~~~~ - - -Error: src/app/register-email-form/register-email-form.module.ts:9:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -9 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/register-page/register-page.module.ts:15:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -15 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/register-page/register-page.module.ts:17:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -17 RegisterEmailFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/register-page/register-page.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 ProfilePageModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/app/request-copy/request-copy.module.ts:16:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -16 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/root.module.ts:98:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 98 imports: [ - ~ - 99 ...IMPORTS - ~~~~~~~~~~~~~~ -100 ], - ~~~ - - -Error: src/app/root.module.ts:98:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 98 imports: [ - ~ - 99 ...IMPORTS - ~~~~~~~~~~~~~~ -100 ], - ~~~ - - -Error: src/app/root.module.ts:98:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 98 imports: [ - ~ - 99 ...IMPORTS - ~~~~~~~~~~~~~~ -100 ], - ~~~ - - -Error: src/app/root.module.ts:98:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 98 imports: [ - ~ - 99 ...IMPORTS - ~~~~~~~~~~~~~~ -100 ], - ~~~ - - -Error: src/app/root.module.ts:98:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 98 imports: [ - ~ - 99 ...IMPORTS - ~~~~~~~~~~~~~~ -100 ], - ~~~ - - -Error: src/app/search-page/search-page-routing.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SearchPageModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/search-page/search-page.module.ts:22:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 22 imports: [ - ~ - 23 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 29 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 30 ], - ~~~ - - -Error: src/app/search-page/search-page.module.ts:22:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 22 imports: [ - ~ - 23 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 29 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 30 ], - ~~~ - - -Error: src/app/search-page/search-page.module.ts:22:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 22 imports: [ - ~ - 23 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 29 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 30 ], - ~~~ - - -Error: src/app/search-page/search-page.module.ts:22:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 22 imports: [ - ~ - 23 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 29 ResearchEntitiesModule.withEntryComponents() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 30 ], - ~~~ - - -Error: src/app/search-page/search-page.module.ts:24:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -24 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/access-control-form-container/access-control-form.module.ts:19:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -19 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/browse-by/shared-browse-by.module.ts:18:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -18 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/browse-by/shared-browse-by.module.ts:22:5 - error NG6003: This export contains errors, which may affect components that depend on this NgModule. - -22 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/comcol/comcol.module.ts:41:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -41 FormModule, - ~~~~~~~~~~ - - -Error: src/app/shared/comcol/comcol.module.ts:42:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -42 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/comcol/comcol.module.ts:43:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -43 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/comcol/comcol.module.ts:47:5 - error NG6003: This export contains errors, which may affect components that depend on this NgModule. - -47 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/context-menu/context-menu.module.ts:70:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -70 imports: [ - ~ -71 MODULE, - ~~~~~~~~~~~ -72 ], - ~~~ - - -Error: src/app/shared/context-menu/context-menu.module.ts:70:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -70 imports: [ - ~ -71 MODULE, - ~~~~~~~~~~~ -72 ], - ~~~ - - -Error: src/app/shared/explore/explore.module.ts:47:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -47 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/shared/form/form.module.ts:95:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -95 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/form/form.module.ts:96:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -96 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/mydspace-actions/mydspace-actions.module.ts:45:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -45 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/shared/object-list/my-dspace-result-list-element/item-list-preview/item-list-preview.component.ts:22:14 - error NG6007: The Component 'ItemListPreviewComponent' is declared by more than one NgModule. - -22 export class ItemListPreviewComponent implements OnInit { - ~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/shared/shared.module.ts:642:14 - 642 export class SharedModule { - ~~~~~~~~~~~~ - 'ItemListPreviewComponent' is listed in the declarations of the NgModule 'SharedModule'. - src/app/my-dspace-page/my-dspace-search.module.ts:72:14 - 72 export class MyDspaceSearchModule { - ~~~~~~~~~~~~~~~~~~~~ - 'ItemListPreviewComponent' is listed in the declarations of the NgModule 'MyDspaceSearchModule'. - - -Error: src/app/shared/object-list/my-dspace-result-list-element/item-list-preview/themed-item-list-preview.component.ts:18:14 - error NG6007: The Component 'ThemedItemListPreviewComponent' is declared by more than one NgModule. - -18 export class ThemedItemListPreviewComponent extends ThemedComponent { - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - src/app/shared/shared.module.ts:642:14 - 642 export class SharedModule { - ~~~~~~~~~~~~ - 'ThemedItemListPreviewComponent' is listed in the declarations of the NgModule 'SharedModule'. - src/app/my-dspace-page/my-dspace-search.module.ts:72:14 - 72 export class MyDspaceSearchModule { - ~~~~~~~~~~~~~~~~~~~~ - 'ThemedItemListPreviewComponent' is listed in the declarations of the NgModule 'MyDspaceSearchModule'. - - -Error: src/app/shared/resource-policies/resource-policies.module.ts:37:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -37 FormModule, - ~~~~~~~~~~ - - -Error: src/app/shared/resource-policies/resource-policies.module.ts:39:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -39 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/shared/search/search.module.ts:103:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -103 imports: [ - ~ -104 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -110 NouisliderModule, - ~~~~~~~~~~~~~~~~~~~~~ -111 ], - ~~~ - - -Error: src/app/shared/subscriptions/subscriptions.module.ts:27:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -27 SharedModule - ~~~~~~~~~~~~ - - -Error: src/app/shared/upload/upload.module.ts:23:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -23 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/statistics-page/cris-statistics-page/cris-statistics-page.module.ts:18:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 18 imports: [ - ~ - 19 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 24 Ng2GoogleChartsModule - ~~~~~~~~~~~~~~~~~~~~~~~~~ - 25 ], - ~~~ - - -Error: src/app/statistics-page/cris-statistics-page/cris-statistics-page.module.ts:18:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 18 imports: [ - ~ - 19 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 24 Ng2GoogleChartsModule - ~~~~~~~~~~~~~~~~~~~~~~~~~ - 25 ], - ~~~ - - -Error: src/app/statistics-page/cris-statistics-page/statistics-chart/statistics-chart.module.ts:35:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -35 imports: [ - ~ -36 ...IMPORTS - ~~~~~~~~~~~~~~ -37 ], - ~~~ - - -Error: src/app/statistics-page/statistics-page-routing.module.ts:22:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -22 StatisticsPageModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/statistics-page/statistics-page.module.ts:42:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 42 imports: [ - ~ - 43 CommonModule, - ~~~~~~~~~~~~~~~~~ -... - 47 StatisticsModule.forRoot() - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 48 ], - ~~~ - - -Error: src/app/statistics-page/statistics-page.module.ts:44:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -44 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/statistics-page/statistics-page.module.ts:45:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -45 CrisStatisticsPageModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/statistics/statistics.module.ts:19:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -19 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/submission/submission.module.ts:122:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -122 imports: [ - ~ -123 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -135 UploadModule, - ~~~~~~~~~~~~~~~~~ -136 ], - ~~~ - - -Error: src/app/submission/submission.module.ts:122:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -122 imports: [ - ~ -123 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -135 UploadModule, - ~~~~~~~~~~~~~~~~~ -136 ], - ~~~ - - -Error: src/app/submission/submission.module.ts:122:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -122 imports: [ - ~ -123 CommonModule, - ~~~~~~~~~~~~~~~~~ -... -135 UploadModule, - ~~~~~~~~~~~~~~~~~ -136 ], - ~~~ - - -Error: src/app/submission/submission.module.ts:125:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -125 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/submission/submission.module.ts:131:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -131 FormModule, - ~~~~~~~~~~ - - -Error: src/app/submission/submission.module.ts:135:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -135 UploadModule, - ~~~~~~~~~~~~ - - -Error: src/app/submission/submission.module.ts:140:5 - error NG6003: This export contains errors, which may affect components that depend on this NgModule. - -140 FormModule, - ~~~~~~~~~~ - - -Error: src/app/submit-page/submit-page.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/submit-page/submit-page.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/submit-page/submit-page.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 FormModule, - ~~~~~~~~~~ - - -Error: src/app/subscriptions-page/subscriptions-page-routing.module.ts:9:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -9 SubscriptionsPageModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/subscriptions-page/subscriptions-page.module.ts:11:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -11 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/subscriptions-page/subscriptions-page.module.ts:12:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -12 SubscriptionsModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/suggestions-page/suggestions-page.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/suggestions-page/suggestions-page.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 OpenaireModule, - ~~~~~~~~~~~~~~ - - -Error: src/app/system-wide-alert/system-wide-alert.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:40:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -40 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:41:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -41 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:42:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -42 StatisticsModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:43:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -43 ItemPageModule, - ~~~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:44:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -44 AccessControlModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/app/workflowitems-edit-page/workflowitems-edit-page.module.ts:45:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -45 FormModule, - ~~~~~~~~~~ - - -Error: src/app/workspaceitems-edit-page/workspaceitems-edit-page.module.ts:13:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -13 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/app/workspaceitems-edit-page/workspaceitems-edit-page.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/modules/app/browser-app.module.ts:49:12 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - - 49 imports: [ - ~ - 50 BrowserModule.withServerTransition({ - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -... - 67 AppModule - ~~~~~~~~~~~~~ - 68 ], - ~~~ - - -Error: src/modules/app/browser-app.module.ts:67:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -67 AppModule - ~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:106:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -106 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:107:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -107 RootModule, - ~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:108:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -108 NavbarModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:109:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -109 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:111:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -111 ItemPageModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:112:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -112 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:114:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -114 AttachmentRenderingModule, - ~~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:115:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -115 ContextMenuModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:116:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -116 FooterModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/eager-theme.module.ts:117:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -117 ExploreModule, - ~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:258:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -258 AdminRegistriesModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:259:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -259 AdminSearchModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:260:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -260 AdminWorkflowModuleModule, - ~~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:261:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -261 AppModule, - ~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:262:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -262 RootModule, - ~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:263:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -263 BitstreamFormatsModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:264:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -264 BrowseByModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:265:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -265 CollectionFormModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:266:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -266 CollectionPageModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:268:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -268 CommunityFormModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:269:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -269 CommunityListPageModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:270:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -270 CommunityPageModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:273:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -273 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:274:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -274 ItemPageModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:275:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -275 EditItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:276:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -276 ItemVersionsModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:278:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -278 HomePageModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:281:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -281 InfoModule, - ~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:282:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -282 JournalEntitiesModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:285:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -285 MyDspaceSearchModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:286:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -286 NavbarModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:288:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -288 ProfilePageModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:289:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -289 RegisterEmailFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:290:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -290 ResearchEntitiesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:293:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -293 SearchPageModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:294:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -294 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:295:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -295 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:297:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -297 StatisticsModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:298:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -298 StatisticsPageModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:302:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -302 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:303:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -303 MyDSpacePageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:304:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -304 MyDspaceSearchModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:305:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -305 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:307:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -307 ResourcePoliciesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:308:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -308 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:309:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -309 DsoSharedModule, - ~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:310:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -310 SystemWideAlertModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:312:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -312 FormModule, - ~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:313:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -313 RequestCopyModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:314:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -314 ContextMenuModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:315:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -315 OpenaireModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:316:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -316 CrisItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:317:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -317 CrisStatisticsPageModule, - ~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:319:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -319 FooterModule, - ~~~~~~~~~~~~ - - -Error: src/themes/custom/lazy-theme.module.ts:320:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -320 ExploreModule, - ~~~~~~~~~~~~~ - - -Error: src/themes/dspace/eager-theme.module.ts:31:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -31 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/eager-theme.module.ts:32:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -32 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/eager-theme.module.ts:34:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -34 RootModule, - ~~~~~~~~~~ - - -Error: src/themes/dspace/eager-theme.module.ts:35:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -35 NavbarModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/eager-theme.module.ts:36:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -36 ExploreModule - ~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:62:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -62 AdminRegistriesModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:63:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -63 AdminSearchModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:64:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -64 AdminWorkflowModuleModule, - ~~~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:65:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -65 AppModule, - ~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:66:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -66 RootModule, - ~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:67:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -67 BitstreamFormatsModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:68:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -68 BrowseByModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:69:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -69 BrowseByPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:71:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -71 CollectionFormModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:72:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -72 CollectionPageModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:74:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -74 CommunityFormModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:75:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -75 CommunityListPageModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:76:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -76 CommunityPageModule, - ~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:79:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -79 ItemSharedModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:80:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -80 ItemPageModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:81:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -81 EditItemPageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:82:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -82 ItemVersionsModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:84:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -84 HomePageModule, - ~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:87:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -87 InfoModule, - ~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:88:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -88 JournalEntitiesModule, - ~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:90:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -90 MyDspaceSearchModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:91:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -91 NavbarModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:93:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -93 ProfilePageModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:94:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -94 RegisterEmailFormModule, - ~~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:95:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -95 ResearchEntitiesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:98:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -98 SearchPageModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:99:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -99 SharedModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:100:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -100 SharedBrowseByModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:101:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -101 StatisticsModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:102:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -102 StatisticsPageModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:106:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -106 SubmissionModule, - ~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:107:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -107 MyDSpacePageModule, - ~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:108:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -108 MyDspaceSearchModule, - ~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:109:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -109 SearchModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:111:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -111 ResourcePoliciesModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:112:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -112 ComcolModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:113:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -113 ContextMenuModule, - ~~~~~~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:115:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -115 FooterModule, - ~~~~~~~~~~~~ - - -Error: src/themes/dspace/lazy-theme.module.ts:116:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -116 ExploreModule, - ~~~~~~~~~~~~~ - - -Error: src/themes/eager-themes.module.ts:14:5 - error NG6002: This import contains errors, which may affect components that depend on this NgModule. - -14 DSpaceEagerThemeModule, - ~~~~~~~~~~~~~~~~~~~~~~ - - - - -✖ Failed to compile.