@domonda/form
Advanced tools
Comparing version 2.2.1 to 2.2.2
@@ -6,2 +6,13 @@ # Change Log | ||
## [2.2.2](https://github.com/domonda/domonda-js/compare/@domonda/form@2.2.1...@domonda/form@2.2.2) (2019-10-15) | ||
### Bug Fixes | ||
* **Form:** default values can be an array (not recommended though) ([28cee7d](https://github.com/domonda/domonda-js/commit/28cee7d468a3981a31ba77a1665b0d5539c9f7f1)) | ||
## [2.2.1](https://github.com/domonda/domonda-js/compare/@domonda/form@2.2.0...@domonda/form@2.2.1) (2019-10-08) | ||
@@ -8,0 +19,0 @@ |
@@ -15,3 +15,3 @@ /** | ||
} | ||
export declare type FormDefaultValues = object; | ||
export declare type FormDefaultValues = object | Array<any>; | ||
export declare type FormSubmitHandler<T extends FormDefaultValues> = (values: T, form: Form<T>) => any | Promise<any>; | ||
@@ -18,0 +18,0 @@ export interface FormConfig<T extends FormDefaultValues> { |
{ | ||
"name": "@domonda/form", | ||
"version": "2.2.1", | ||
"version": "2.2.2", | ||
"description": "Powerful yet simple form library built using @domonda/plumb.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26627