-
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.
- Loading branch information
1 parent
c70e97c
commit ee933e1
Showing
25 changed files
with
128 additions
and
5 deletions.
There are no files selected for viewing
Empty file.
Empty file.
20 changes: 20 additions & 0 deletions
20
...c/themes/custom/app/entity-groups/research-entities/item-pages/person/person.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,20 @@ | ||
import { Component } from '@angular/core'; | ||
import { ViewMode } from '../../../../../../../app/core/shared/view-mode.model'; | ||
import { | ||
listableObjectComponent | ||
} from '../../../../../../../app/shared/object-collection/shared/listable-object/listable-object.decorator'; | ||
import { | ||
PersonComponent as BaseComponent | ||
} from '../../../../../../../app/entity-groups/research-entities/item-pages/person/person.component'; | ||
import { Context } from '../../../../../../../app/core/shared/context.model'; | ||
|
||
@listableObjectComponent('Person', ViewMode.StandalonePage, Context.Any, 'custom') | ||
@Component({ | ||
selector: 'ds-person', | ||
// styleUrls: ['./person.component.scss'], | ||
styleUrls: ['../../../../../../../app/entity-groups/research-entities/item-pages/person/person.component.scss'], | ||
// templateUrl: './person.component.html', | ||
templateUrl: '../../../../../../../app/entity-groups/research-entities/item-pages/person/person.component.html', | ||
}) | ||
export class PersonComponent extends BaseComponent { | ||
} |
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
Empty file.
12 changes: 12 additions & 0 deletions
12
build/src/themes/custom/app/register-email-form/register-email-form.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,12 @@ | ||
import { Component } from '@angular/core'; | ||
import { | ||
RegisterEmailFormComponent as BaseComponent | ||
} from '../../../../app/register-email-form/register-email-form.component'; | ||
|
||
@Component({ | ||
selector: 'ds-register-email-form', | ||
// templateUrl: './register-email-form.component.html', | ||
templateUrl: '../../../../app/register-email-form/register-email-form.component.html', | ||
}) | ||
export class RegisterEmailFormComponent extends BaseComponent { | ||
} |
Empty file.
Empty file.
15 changes: 15 additions & 0 deletions
15
build/src/themes/custom/app/shared/auth-nav-menu/user-menu/user-menu.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,15 @@ | ||
import { Component } from '@angular/core'; | ||
import { UserMenuComponent as BaseComponent } from '../../../../../../app/shared/auth-nav-menu/user-menu/user-menu.component'; | ||
|
||
/** | ||
* Component representing the {@link UserMenuComponent} of a page | ||
*/ | ||
@Component({ | ||
selector: 'ds-user-menu', | ||
// templateUrl: 'user-menu.component.html', | ||
templateUrl: '../../../../../../app/shared/auth-nav-menu/user-menu/user-menu.component.html', | ||
// styleUrls: ['user-menu.component.scss'], | ||
styleUrls: ['../../../../../../app/shared/auth-nav-menu/user-menu/user-menu.component.scss'], | ||
}) | ||
export class UserMenuComponent extends BaseComponent { | ||
} |
Empty file.
Empty file.
17 changes: 17 additions & 0 deletions
17
build/src/themes/custom/app/shared/browse-by/browse-by.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,17 @@ | ||
import { Component } from '@angular/core'; | ||
import { fadeIn, fadeInOut } from '../../../../../app/shared/animations/fade'; | ||
import { BrowseByComponent as BaseComponent } from '../../../../../app/shared/browse-by/browse-by.component'; | ||
|
||
@Component({ | ||
selector: 'ds-browse-by', | ||
// styleUrls: ['./browse-by.component.scss'], | ||
styleUrls: ['../../../../../app/shared/browse-by/browse-by.component.scss'], | ||
// templateUrl: './browse-by.component.html', | ||
templateUrl: '../../../../../app/shared/browse-by/browse-by.component.html', | ||
animations: [ | ||
fadeIn, | ||
fadeInOut, | ||
], | ||
}) | ||
export class BrowseByComponent extends BaseComponent { | ||
} |
Empty file.
Empty file.
12 changes: 12 additions & 0 deletions
12
build/src/themes/custom/app/shared/lang-switch/lang-switch.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,12 @@ | ||
import { Component } from '@angular/core'; | ||
import { LangSwitchComponent as BaseComponent } from '../../../../../app/shared/lang-switch/lang-switch.component'; | ||
|
||
@Component({ | ||
selector: 'ds-lang-switch', | ||
// styleUrls: ['./lang-switch.component.scss'], | ||
styleUrls: ['../../../../../app/shared/lang-switch/lang-switch.component.scss'], | ||
// templateUrl: './lang-switch.component.html', | ||
templateUrl: '../../../../../app/shared/lang-switch/lang-switch.component.html', | ||
}) | ||
export class LangSwitchComponent extends BaseComponent { | ||
} |
Empty file.
Empty file.
12 changes: 12 additions & 0 deletions
12
build/src/themes/custom/app/shared/log-in/log-in.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,12 @@ | ||
import { Component } from '@angular/core'; | ||
import { LogInComponent as BaseComponent } from '../../../../../app/shared/log-in/log-in.component'; | ||
|
||
@Component({ | ||
selector: 'ds-log-in', | ||
// templateUrl: './log-in.component.html', | ||
templateUrl: '../../../../../app/shared/log-in/log-in.component.html', | ||
// styleUrls: ['./log-in.component.scss'], | ||
styleUrls: ['../../../../../app/shared/log-in/log-in.component.scss'], | ||
}) | ||
export class LogInComponent extends BaseComponent { | ||
} |
Empty file.
Empty file.
19 changes: 19 additions & 0 deletions
19
...m/app/shared/object-list/browse-entry-list-element/browse-entry-list-element.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,19 @@ | ||
import { Component } from '@angular/core'; | ||
import { BrowseEntry } from '../../../../../../app/core/shared/browse-entry.model'; | ||
import { ViewMode } from '../../../../../../app/core/shared/view-mode.model'; | ||
import { listableObjectComponent } from '../../../../../../app/shared/object-collection/shared/listable-object/listable-object.decorator'; | ||
import { Context } from '../../../../../../app/core/shared/context.model'; | ||
import { | ||
BrowseEntryListElementComponent as BaseComponent | ||
} from '../../../../../../app/shared/object-list/browse-entry-list-element/browse-entry-list-element.component'; | ||
|
||
@Component({ | ||
selector: 'ds-browse-entry-list-element', | ||
// styleUrls: ['./browse-entry-list-element.component.scss'], | ||
styleUrls: ['../../../../../../app/shared/object-list/browse-entry-list-element/browse-entry-list-element.component.scss'], | ||
// templateUrl: './browse-entry-list-element.component.html', | ||
templateUrl: '../../../../../../app/shared/object-list/browse-entry-list-element/browse-entry-list-element.component.html', | ||
}) | ||
@listableObjectComponent(BrowseEntry, ViewMode.ListElement, Context.Any, 'custom') | ||
export class BrowseEntryListElementComponent extends BaseComponent { | ||
} |
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