Skip to content

Commit

Permalink
fix: dbx-core build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Derek Burgman committed Jan 21, 2022
1 parent f9b69bf commit 471c71d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion packages/dbx-core/src/lib/action/action.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { NgModule } from '@angular/core';
import {
DbNgxActionComponent, DbNgxActionContextDirective, DbNgxActionContextMapDirective, DbNgxActionFromMapDirective, DbNgxActionMapSourceDirective,
DbNgxActionMapWorkingDisableDirective, DbNgxActionSourceDirective, DbNgxActionHandlerDirective, DbNgxActionDisabledDirective, DbNgxActionDisabledUntilModifiedDirective,
DbNgxActionAutoTriggerDirective, DbNgxActionAutoTriggerValueDirective, DbNgxActionAutoModifyDirective, DbNgxActionValueDirective, DbNgxActionContextLoggerDirective,
DbNgxActionSuccessComponent, DbNgxActionSuccessDirective, DbNgxActionWorkingComponent
} from './directive';

@NgModule({
Expand All @@ -12,10 +14,14 @@ import {
declarations: [
DbNgxActionComponent, DbNgxActionContextDirective, DbNgxActionContextMapDirective, DbNgxActionFromMapDirective, DbNgxActionMapSourceDirective,
DbNgxActionMapWorkingDisableDirective, DbNgxActionSourceDirective, DbNgxActionHandlerDirective, DbNgxActionDisabledDirective, DbNgxActionDisabledUntilModifiedDirective,
DbNgxActionAutoTriggerDirective, DbNgxActionAutoTriggerValueDirective, DbNgxActionAutoModifyDirective, DbNgxActionValueDirective, DbNgxActionContextLoggerDirective,
DbNgxActionSuccessComponent, DbNgxActionSuccessDirective, DbNgxActionWorkingComponent
],
exports: [
DbNgxActionComponent, DbNgxActionContextDirective, DbNgxActionContextMapDirective, DbNgxActionFromMapDirective, DbNgxActionMapSourceDirective,
DbNgxActionMapWorkingDisableDirective, DbNgxActionSourceDirective, DbNgxActionSourceDirective, DbNgxActionHandlerDirective, DbNgxActionDisabledDirective, DbNgxActionDisabledUntilModifiedDirective,
DbNgxActionMapWorkingDisableDirective, DbNgxActionSourceDirective, DbNgxActionHandlerDirective, DbNgxActionDisabledDirective, DbNgxActionDisabledUntilModifiedDirective,
DbNgxActionAutoTriggerDirective, DbNgxActionAutoTriggerValueDirective, DbNgxActionAutoModifyDirective, DbNgxActionValueDirective, DbNgxActionContextLoggerDirective,
DbNgxActionSuccessComponent, DbNgxActionSuccessDirective, DbNgxActionWorkingComponent
]
})
export class DbNgxCoreActionModule { }
4 changes: 2 additions & 2 deletions packages/dbx-core/src/lib/action/directive/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// export * from './auto';
export * from './auto';
export * from './context';
// export * from './debug';
export * from './debug';
export * from './map';
export * from './state';
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Component, Input } from '@angular/core';
import { of } from 'rxjs';
import { delay, exhaustMap, shareReplay, startWith } from 'rxjs/operators';
import { ActionContextStoreSourceInstance } from '@dereekb/dbx-core';
import { ActionContextStoreSourceInstance } from '../../action.store.source';

/**
* Displays the input content when success is set.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component } from '@angular/core';
import { ActionContextStoreSourceInstance } from '@dereekb/dbx-core';
import { ActionContextStoreSourceInstance } from '../../action.store.source';

/**
* Displays the input content when working is set.
Expand Down

0 comments on commit 471c71d

Please sign in to comment.