@reactables/forms 1.3.0-beta.0 → 1.3.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -43,7 +43,7 @@ export type ActionCreatorTypeFromCustomReducer<T> = T extends (reducers: FormRed
43
43
  } ? () => void : T extends {
44
44
  reducer: CustomReducerFunc<infer P>;
45
45
  } ? (payload: P) => void : never;
46
- export interface RxFormOptions<T extends CustomReducers<unknown>> extends EffectsAndSources {
46
+ export interface RxFormOptions<T extends CustomReducers<unknown> = CustomReducers<unknown>> extends EffectsAndSources {
47
47
  reducers?: T;
48
48
  providers?: RxFormProviders;
49
49
  name?: string;
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "author": "David Lai",
15
15
  "license": "ISC",
16
16
  "dependencies": {
17
- "@reactables/core": "^1.3.0-beta.0",
17
+ "@reactables/core": "^1.3.0-beta.3",
18
18
  "lodash.isequal": "^4.5.0"
19
19
  },
20
20
  "peerDependencies": {
@@ -23,5 +23,5 @@
23
23
  "devDependencies": {
24
24
  "lodash.clonedeep": "^4.5.0"
25
25
  },
26
- "version": "1.3.0-beta.0"
26
+ "version": "1.3.0-beta.3"
27
27
  }