@reactables/forms 1.0.2-beta.1 → 1.0.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.
@@ -57,6 +57,6 @@ export interface RxFormProviders {
57
57
  [key: string]: ValidatorAsyncFn;
58
58
  };
59
59
  }
60
- export declare const build: (config: AbstractControlConfig, options?: RxFormOptions) => Reactable<Form<unknown>, RxFormActions>;
61
- export declare const load: (state: Form<unknown>, options?: RxFormOptions) => Reactable<Form<unknown>, RxFormActions>;
60
+ export declare const build: <Value, Actions = RxFormActions>(config: AbstractControlConfig, options?: RxFormOptions) => Reactable<Form<Value>, Actions>;
61
+ export declare const load: <Value, Actions = RxFormActions>(state: Form<unknown>, options?: RxFormOptions) => Reactable<Form<Value>, Actions>;
62
62
  export {};
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "author": "David Lai",
15
15
  "license": "ISC",
16
16
  "dependencies": {
17
- "@reactables/core": "^1.0.2-beta.1",
17
+ "@reactables/core": "^1.0.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.0.2-beta.1"
26
+ "version": "1.0.3"
27
27
  }