react-formr
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -1,4 +0,4 @@ | ||
import Former from "./former"; | ||
import Formr from "./formr"; | ||
import * as Types from "./Types"; | ||
export default Former; | ||
export default Formr; | ||
export { Types }; |
@@ -1,4 +0,4 @@ | ||
import Former from "./former"; | ||
import Formr from "./formr"; | ||
import * as Types from "./Types"; | ||
export default Former; | ||
export default Formr; | ||
export { Types }; |
@@ -18,6 +18,6 @@ export interface FormMessages { | ||
} | ||
export interface FormerValidation { | ||
export interface FormrValidation { | ||
[key: string]: FormValidation; | ||
} | ||
export interface FormerProps { | ||
export interface FormrProps { | ||
children: any; | ||
@@ -27,6 +27,6 @@ formFields: { | ||
}; | ||
validation?: FormerValidation; | ||
validation?: FormrValidation; | ||
onChange?: () => object; | ||
} | ||
export interface FormerFunctions { | ||
export interface FormrFunctions { | ||
onHandleChange: Function; | ||
@@ -33,0 +33,0 @@ onHandleBlur: Function; |
{ | ||
"name": "react-formr", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Form managing component for React & React Native", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
@@ -1,4 +0,4 @@ | ||
import Former from "./former"; | ||
import Formr from "./formr"; | ||
import * as Types from "./Types"; | ||
export default Former; | ||
export default Formr; | ||
export { Types }; |
@@ -20,14 +20,14 @@ export interface FormMessages { | ||
export interface FormerValidation { | ||
export interface FormrValidation { | ||
[key: string]: FormValidation; | ||
} | ||
export interface FormerProps { | ||
export interface FormrProps { | ||
children: any; | ||
formFields: { [key: string]: string }; | ||
validation?: FormerValidation; | ||
validation?: FormrValidation; | ||
onChange?: () => object; | ||
} | ||
export interface FormerFunctions { | ||
export interface FormrFunctions { | ||
onHandleChange: Function; | ||
@@ -34,0 +34,0 @@ onHandleBlur: Function; |
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
20082