forked from DSpace/dspace-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
108588: Renamed components, because now these aren't page components …
…anymore
- Loading branch information
1 parent
444b699
commit 243179e
Showing
31 changed files
with
128 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
src/themes/custom/app/browse-by/browse-by-date-page/browse-by-date-page.component.ts
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
16 changes: 16 additions & 0 deletions
16
src/themes/custom/app/browse-by/browse-by-date/browse-by-date.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { Component } from '@angular/core'; | ||
import { BrowseByDateComponent as BaseComponent } from '../../../../../app/browse-by/browse-by-date/browse-by-date.component'; | ||
import { BrowseByDataType } from '../../../../../app/browse-by/browse-by-switcher/browse-by-data-type'; | ||
import { rendersBrowseBy } from '../../../../../app/browse-by/browse-by-switcher/browse-by-decorator'; | ||
import { Context } from '../../../../../app/core/shared/context.model'; | ||
|
||
@Component({ | ||
selector: 'ds-browse-by-date', | ||
// styleUrls: ['./browse-by-date.component.scss'], | ||
styleUrls: ['../../../../../app/browse-by/browse-by-metadata/browse-by-metadata.component.scss'], | ||
// templateUrl: './browse-by-date.component.html', | ||
templateUrl: '../../../../../app/browse-by/browse-by-metadata/browse-by-metadata.component.html', | ||
}) | ||
@rendersBrowseBy(BrowseByDataType.Date, Context.Any, 'custom') | ||
export class BrowseByDateComponent extends BaseComponent { | ||
} |
16 changes: 0 additions & 16 deletions
16
src/themes/custom/app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.ts
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
16 changes: 16 additions & 0 deletions
16
src/themes/custom/app/browse-by/browse-by-metadata/browse-by-metadata.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { Component } from '@angular/core'; | ||
import { BrowseByMetadataComponent as BaseComponent } from '../../../../../app/browse-by/browse-by-metadata/browse-by-metadata.component'; | ||
import { BrowseByDataType } from '../../../../../app/browse-by/browse-by-switcher/browse-by-data-type'; | ||
import { rendersBrowseBy } from '../../../../../app/browse-by/browse-by-switcher/browse-by-decorator'; | ||
import { Context } from '../../../../../app/core/shared/context.model'; | ||
|
||
@Component({ | ||
selector: 'ds-browse-by-metadata', | ||
// styleUrls: ['./browse-by-metadata.component.scss'], | ||
styleUrls: ['../../../../../app/browse-by/browse-by-metadata/browse-by-metadata.component.scss'], | ||
// templateUrl: './browse-by-metadata.component.html', | ||
templateUrl: '../../../../../app/browse-by/browse-by-metadata/browse-by-metadata.component.html', | ||
}) | ||
@rendersBrowseBy(BrowseByDataType.Metadata, Context.Any, 'custom') | ||
export class BrowseByMetadataComponent extends BaseComponent { | ||
} |
Oops, something went wrong.