@iwsio/forms
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -8,3 +8,3 @@ import { PropsWithChildren } from 'react'; | ||
onValidSubmit?: (fields: FieldValues) => void; | ||
} & Omit<ValidatedFormProps, 'onValidSubmit'>; | ||
} & Omit<ValidatedFormProps, 'onValidSubmit' | 'noValidate'>; | ||
/** | ||
@@ -22,2 +22,2 @@ * Setup a field manager to maintain field values and validation state in a form. This directly renders a <form> with attributes provided to this component. | ||
onValidSubmit?: (fields: FieldValues) => void; | ||
} & Omit<ValidatedFormProps, "onValidSubmit"> & import("react").RefAttributes<HTMLFormElement>>; | ||
} & Omit<ValidatedFormProps, "onValidSubmit" | "noValidate"> & import("react").RefAttributes<HTMLFormElement>>; |
import { ValidatedFormProps } from './ValidatedForm'; | ||
export type ManagedValidatedFormProps = Omit<ValidatedFormProps, 'onValidSubmit'>; | ||
export type ManagedValidatedFormProps = Omit<ValidatedFormProps, 'onValidSubmit' | 'noValidate'>; | ||
export declare const FieldManagerForm: import("react").ForwardRefExoticComponent<ManagedValidatedFormProps & import("react").RefAttributes<HTMLFormElement>>; |
{ | ||
"name": "@iwsio/forms", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "Simple library with useful React forms components and browser validation.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
42627