Merge branch 'master' into w2p-44988_search-sidebar

Conflicts:
	src/app/+search-page/search-page.component.html
	src/app/+search-page/search-page.component.spec.ts
	src/app/+search-page/search-page.component.ts
	src/app/shared/shared.module.ts
This commit is contained in:
Lotte Hofstede
2017-11-09 15:33:50 +01:00
79 changed files with 1898 additions and 894 deletions

View File

@@ -30,6 +30,7 @@ import { SearchResultListElementComponent } from '../object-list/search-result-l
import { SearchFormComponent } from './search-form/search-form.component';
import { WrapperListElementComponent } from '../object-list/wrapper-list-element/wrapper-list-element.component';
import { ViewModeSwitchComponent } from './view-mode-switch/view-mode-switch.component';
import { VarDirective } from './utils/var.directive';
import { ScrollAndStickDirective } from './utils/scroll-and-stick.directive';
const MODULES = [
@@ -79,6 +80,10 @@ const ENTRY_COMPONENTS = [
SearchResultListElementComponent
];
const DIRECTIVES = [
VarDirective
];
@NgModule({
imports: [
...MODULES
@@ -86,6 +91,7 @@ const ENTRY_COMPONENTS = [
declarations: [
...PIPES,
...COMPONENTS,
...DIRECTIVES,
...ENTRY_COMPONENTS,
...DIRECTIVES
],