Skip to content

Commit

Permalink
feat: search header allows to provide subheader now (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
markuczy authored Feb 28, 2024
1 parent 70cf90e commit d4bf6c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<ocx-page-header
[header]="headline || ('OCX_SEARCH_HEADER.HEADLINE' | translate)"
[subheader]="subheader"
[manualBreadcrumbs]="manualBreadcrumbs"
[actions]="headerActions"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import { SearchConfig } from '../../../model/search-config'
export class SearchHeaderComponent implements AfterViewInit {
@Input() searchConfigs: SearchConfig[] | undefined
@Input() headline = ''
@Input() subheader: string | undefined
@Input() viewMode: 'basic' | 'advanced' = 'basic'
@Input() manualBreadcrumbs = false
_actions: Action[] = []
Expand Down

0 comments on commit d4bf6c5

Please sign in to comment.