File tree Expand file tree Collapse file tree 11 files changed +44
-23
lines changed Expand file tree Collapse file tree 11 files changed +44
-23
lines changed Original file line number Diff line number Diff line change 1+ import { NgModule } from '@angular/core' ;
2+
3+ import { ConnectArray } from './connect-array' ;
4+
5+ const declarations = [ ConnectArray ] ;
6+
7+ @NgModule ( {
8+ declarations : [ ...declarations ] ,
9+ exports : [ ...declarations ] ,
10+ } )
11+ export class NgReduxFormConnectArrayModule { }
Original file line number Diff line number Diff line change @@ -36,10 +36,10 @@ import {
3636} from '@angular/forms' ;
3737import { Unsubscribe } from 'redux' ;
3838
39- import { ConnectBase } from './connect-base ' ;
40- import { FormStore } from './form-store' ;
41- import { State } from './state' ;
42- import { controlPath , selectValueAccessor } from './shims' ;
39+ import { ConnectBase } from '.. /connect' ;
40+ import { FormStore } from '.. /form-store' ;
41+ import { State } from '.. /state' ;
42+ import { controlPath , selectValueAccessor } from '.. /shims' ;
4343
4444export class ConnectArrayTemplate {
4545 constructor (
Original file line number Diff line number Diff line change 1+ export * from './connect-array.module' ;
2+ export * from './connect-array' ;
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ import { Unsubscribe } from 'redux';
1414
1515import 'rxjs/add/operator/debounceTime' ;
1616
17- import { FormStore } from './form-store' ;
18- import { State } from './state' ;
17+ import { FormStore } from '.. /form-store' ;
18+ import { State } from '.. /state' ;
1919
2020export interface ControlPair {
2121 path : Array < string > ;
Original file line number Diff line number Diff line change 33 Input ,
44} from '@angular/core' ;
55
6- import { FormStore } from './form-store' ;
6+ import { FormStore } from '.. /form-store' ;
77
88import { ConnectBase } from './connect-base' ;
99
Original file line number Diff line number Diff line change 1+ import { NgModule } from '@angular/core' ;
2+
3+ import { Connect } from './connect' ;
4+ import { ReactiveConnect } from './connect-reactive' ;
5+
6+ const declarations = [ Connect , ReactiveConnect ] ;
7+
8+ @NgModule ( {
9+ declarations : [ ...declarations ] ,
10+ exports : [ ...declarations ] ,
11+ } )
12+ export class NgReduxFormConnectModule { }
File renamed without changes.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { Directive } from '@angular/core';
22
33import { NgForm } from '@angular/forms' ;
44
5- import { FormStore } from './form-store' ;
5+ import { FormStore } from '.. /form-store' ;
66import { ConnectBase } from './connect-base' ;
77
88
Original file line number Diff line number Diff line change 1+ export * from './connect-base' ;
2+ export * from './connect-reactive' ;
3+ export * from './connect.module' ;
4+ export * from './connect' ;
Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ export * from './form-reducer';
33export * from './form-exception' ;
44export * from './form-store' ;
55export * from './configure' ;
6- export * from './connect-base' ;
7- export * from './connect-reactive' ;
86export * from './connect' ;
97export * from './connect-array' ;
108export * from './module' ;
You can’t perform that action at this time.
0 commit comments