44988: added reducer, angular animation, tests...

This commit is contained in:
Lotte Hofstede
2017-10-30 17:04:52 +01:00
parent bbe15e8e67
commit 7d5dad94a1
16 changed files with 334 additions and 80 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 { ScrollAndStickDirective } from './utils/scroll-and-stick.directive';
const MODULES = [
// Do NOT include UniversalModule, HttpModule, or JsonpModule here
@@ -66,6 +67,10 @@ const COMPONENTS = [
ViewModeSwitchComponent
];
const DIRECTIVES = [
ScrollAndStickDirective,
];
const ENTRY_COMPONENTS = [
// put shared entry components (components that are created dynamically) here
CollectionListElementComponent,
@@ -81,12 +86,14 @@ const ENTRY_COMPONENTS = [
declarations: [
...PIPES,
...COMPONENTS,
...ENTRY_COMPONENTS
...ENTRY_COMPONENTS,
...DIRECTIVES
],
exports: [
...MODULES,
...PIPES,
...COMPONENTS
...COMPONENTS,
...DIRECTIVES
],
entryComponents: [
...ENTRY_COMPONENTS