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.
111103: Added SearchComponent to custom theme in order to easily team…
… it & added missing provider to themed wrapper
- Loading branch information
1 parent
404ccd9
commit ecf67cb
Showing
5 changed files
with
23 additions
and
0 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
Empty file.
Empty file.
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,13 @@ | ||
import { ChangeDetectionStrategy, Component } from '@angular/core'; | ||
import { pushInOut } from '../../../../../app/shared/animations/push'; | ||
import { SearchComponent as BaseComponent } from '../../../../../app/shared/search/search.component'; | ||
|
||
@Component({ | ||
selector: 'ds-search', | ||
styleUrls: ['./search.component.scss'], | ||
templateUrl: './search.component.html', | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
animations: [pushInOut], | ||
}) | ||
export class SearchComponent 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