Export more types, add stub for common-map library
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good

This commit is contained in:
Willem Dantuma
2019-07-17 11:51:14 +02:00
parent 4ab7e39b8e
commit 6f28561303
18 changed files with 313 additions and 7 deletions

View File

@@ -15,8 +15,6 @@ import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
import { AppCommonRoutingModule } from './common-routing.module';
import { MODULE_NAME } from './module-name';
import * as appCommonReducers from './reducers/app-common.reducer';
import * as appCommonEffects from './effects/app-common.effects';
//components
import { FolderService } from './services/folder.service';
@@ -41,6 +39,18 @@ import { NotFoundComponent } from './components/not-found/not-found.component';
import { SidePanelComponent } from './components/side-panel/side-panel.component';
import { TimespanComponent } from './components/timespan/timespan.component';
import { TagInputComponent } from './components/tag-input/tag-input.component';
import {IEventMessage } from './models/event.message';
import { IItem, Item } from './models/item';
import {IItemType} from './models/item.type';
import {IItemTypes} from './models/item.types';
import {IItemTask,ItemTask} from './models/itemTask';
import {IListItem} from './models/list.item';
import {ITypeaheadItem} from './models/typeahead.item';
import {IUser} from './models/user';
import * as commonActions from './actions/app-common.actions';
import * as commonReducers from './reducers/app-common.reducer';
import * as commonEffects from './effects/app-common.effects';
import { from } from 'rxjs';
export {FolderService,
TimespanService,
@@ -62,7 +72,19 @@ export {FolderService,
NotFoundComponent,
SidePanelComponent,
TimespanComponent,
TagInputComponent
TagInputComponent,
IEventMessage,
IItem,
Item,
IItemType,
IItemTypes,
IItemTask,
ItemTask,
IListItem,
ITypeaheadItem,
IUser,
commonActions,
commonReducers,
};
@NgModule({
@@ -70,8 +92,8 @@ export {FolderService,
CommonModule,
HttpClientModule,
AppCommonRoutingModule,
StoreModule.forFeature(MODULE_NAME, appCommonReducers.reducer ),
EffectsModule.forFeature([appCommonEffects.AppCommonEffects]),
StoreModule.forFeature(MODULE_NAME, commonReducers.reducer ),
EffectsModule.forFeature([commonEffects.AppCommonEffects]),
OAuthModule.forRoot(),
NgbModule,
FormsModule