diff --git a/modules/data/src/provide_entity_data.ts b/modules/data/src/provide_entity_data.ts index 91b21ab29b..81faf0a885 100644 --- a/modules/data/src/provide_entity_data.ts +++ b/modules/data/src/provide_entity_data.ts @@ -39,11 +39,6 @@ import { EntityCollectionReducerRegistry } from './reducers/entity-collection-re import { EntityDispatcherFactory } from './dispatchers/entity-dispatcher-factory'; import { EntityDefinitionService } from './entity-metadata/entity-definition.service'; import { EntityCacheDispatcher } from './dispatchers/entity-cache-dispatcher'; -import { - createEntityCacheSelector, - entityCacheSelectorProvider, - ENTITY_CACHE_SELECTOR_TOKEN, -} from './selectors/entity-cache-selector'; import { EntityCollectionServiceElementsFactory } from './entity-services/entity-collection-service-elements-factory'; import { EntityCollectionServiceFactory } from './entity-services/entity-collection-service-factory'; import { EntityServices } from './entity-services/entity-services'; @@ -59,6 +54,10 @@ import { EntityCacheReducerFactory } from './reducers/entity-cache-reducer'; import { EntityCache } from './reducers/entity-cache'; import { EntityCollection } from './reducers/entity-collection'; import { EntityAction } from './actions/entity-action'; +import { + createEntityCacheSelector, + ENTITY_CACHE_SELECTOR_TOKEN, +} from './selectors/entity-cache-selector'; export interface EntityDataModuleConfig { entityMetadata?: EntityMetadataMap; @@ -133,7 +132,6 @@ export function _provideEntityDataWithoutEffects( EntityActionFactory, EntityCacheDispatcher, EntityCacheReducerFactory, - entityCacheSelectorProvider, EntityCollectionCreator, EntityCollectionReducerFactory, EntityCollectionReducerMethodsFactory, diff --git a/projects/standalone-app/src/app/app.component.ts b/projects/standalone-app/src/app/app.component.ts index 1e550e444d..12d0d471c8 100644 --- a/projects/standalone-app/src/app/app.component.ts +++ b/projects/standalone-app/src/app/app.component.ts @@ -12,6 +12,8 @@ import { RouterModule } from '@angular/router';
Boards + Boards + `, }) diff --git a/projects/standalone-app/src/app/board/board.route.ts b/projects/standalone-app/src/app/board/board.route.ts new file mode 100644 index 0000000000..44919dd6a9 --- /dev/null +++ b/projects/standalone-app/src/app/board/board.route.ts @@ -0,0 +1,9 @@ +import { Routes } from '@angular/router'; +import { BoardComponent } from './board.component'; + +export const routes: Routes = [ + { + path: '', + component: BoardComponent, + }, +];