mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00

* 100839: Created themeable BrowseByComponent * 100839: Added themed BrowseByComponent to custom theme * 100839: Added themed BrowseEntryListElementComponent to custom theme * Added PersonComponent to custom theme * Themed LogInComponent * Fix focus on navbar using different color * Fix ccLicense checkbox margin * Fix long search facets name not displaying correctly * Removed RecentItemListComponent's unnecessary float causing alignment issues when adding components underneath it * Themed RegisterEmailFormComponent
31 lines
895 B
TypeScript
31 lines
895 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { BrowseByComponent } from './browse-by.component';
|
|
import { ThemedBrowseByComponent } from './themed-browse-by.component';
|
|
import { CommonModule } from '@angular/common';
|
|
import { SharedModule } from '../shared.module';
|
|
import { ResultsBackButtonModule } from '../results-back-button/results-back-button.module';
|
|
import { BrowseByRoutingModule } from '../../browse-by/browse-by-routing.module';
|
|
import { AccessControlRoutingModule } from '../../access-control/access-control-routing.module';
|
|
|
|
const DECLARATIONS = [
|
|
BrowseByComponent,
|
|
ThemedBrowseByComponent,
|
|
];
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
...DECLARATIONS,
|
|
],
|
|
imports: [
|
|
ResultsBackButtonModule,
|
|
BrowseByRoutingModule,
|
|
AccessControlRoutingModule,
|
|
CommonModule,
|
|
SharedModule,
|
|
],
|
|
exports: [
|
|
...DECLARATIONS,
|
|
]
|
|
})
|
|
export class SharedBrowseByModule { }
|