94688: Added themeable template of SearchFormComponent

This commit is contained in:
Alexandre Vryghem
2022-12-01 10:28:15 +01:00
parent e96954cf60
commit ba15b28c7c
4 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { Component } from '@angular/core';
import {
SearchFormComponent as BaseComponent,
} from '../../../../../app/shared/search-form/search-form.component';
@Component({
selector: 'ds-search-form',
// styleUrls: ['./search-form.component.scss'],
styleUrls: ['../../../../../app/shared/search-form/search-form.component.scss'],
// templateUrl: './search-form.component.html',
templateUrl: '../../../../../app/shared/search-form/search-form.component.html',
})
export class SearchFormComponent extends BaseComponent {
}

View File

@@ -50,6 +50,7 @@ import { BrowseBySwitcherComponent } from './app/browse-by/browse-by-switcher/br
import { CommunityListPageComponent } from './app/community-list-page/community-list-page.component';
import { SearchPageComponent } from './app/search-page/search-page.component';
import { ConfigurationSearchPageComponent } from './app/search-page/configuration-search-page.component';
import { SearchFormComponent } from './app/shared/search-form/search-form.component';
import { EndUserAgreementComponent } from './app/info/end-user-agreement/end-user-agreement.component';
import { PageNotFoundComponent } from './app/pagenotfound/pagenotfound.component';
import { ObjectNotFoundComponent } from './app/lookup-by-id/objectnotfound/objectnotfound.component';
@@ -123,6 +124,7 @@ const DECLARATIONS = [
CommunityListPageComponent,
SearchPageComponent,
ConfigurationSearchPageComponent,
SearchFormComponent,
EndUserAgreementComponent,
PageNotFoundComponent,
ObjectNotFoundComponent,