Skip to content

Commit

Permalink
fix(directive): Fix Dynamic directive selector to work without Dynami…
Browse files Browse the repository at this point in the history
…c component
  • Loading branch information
gund committed Feb 16, 2017
1 parent 9348566 commit 8531365
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-dynamic-component",
"version": "1.0.0-beta.1",
"version": "1.0.0-beta.2",
"description": "Dynamic components with full life-cycle support for inputs and outputs",
"main": "dist/bundles/ng-dynamic-component.umd.js",
"module": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/dynamic/dynamic.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { Subject } from 'rxjs/Subject';
export type KeyValueChangeRecordAny = KeyValueChangeRecord<any, any>;

@Directive({
selector: '[ndcDynamic], ndc-dynamic'
selector: 'ndc-dynamic, [ndcDynamicInputs], [ndcDynamicOutputs]'
})
export class DynamicDirective implements OnChanges, DoCheck, OnDestroy {

Expand Down

0 comments on commit 8531365

Please sign in to comment.