2.3.3 • Published 3 years ago
form-manager-react v2.3.3
form-manager-react
Overview
A simple lightweight form manager made in React for simple forms wich can be integrated with your css styles and fields validations.
Installation
npm i form-manager-react
Properties
Prop | Description | Default |
---|---|---|
onSubmit | Function to handle form data | |
validations | A set of functions to validate inputs by name | none |
formStyle | external form style | {} |
styleErrorParagraph | external style for error display | {} |
styleErrorDiv | external style for error container | {} |
classNameErrorDiv | className for error container | none |
classNameErrorParagraph | className for error display | none |
classNameForm | className for form | none |
License
How to use
import React from 'react'
import Form from 'form-manager-react'
const View: React.FC = () => {
return (
<>
<Form
onSubmit={data => {
console.log(data)
}}
styleErrorParagraph={{ color: 'red', fontWeight: 'bold' }}
validations={{
cpf: text => {
const regex =
/^([0-9]{3}\.?[0-9]{3}\.?[0-9]{3}\-?[0-9]{2}|[0-9]{2}\.?[0-9]{3}\.?[0-9]{3}\/?[0-9]{4}\-?[0-9]{2})$/
return regex.test(String(text))
},
}}
>
<div>
<input name="name1" type="text" value="value" />
<div>
<input name="cpf" type="text" value="value" />
</div>
</div>
<button
style={{
backgroundColor: 'blue',
color: 'white',
borderRadius: '16px',
border: 'none',
padding: '8px 16px',
}}
type="submit"
>
Salvar
</button>
</Form>
</>
)
}
export default View
2.3.3
3 years ago
2.3.2
3 years ago
2.3.1
3 years ago
2.3.0
3 years ago
2.2.9
3 years ago
2.2.8
3 years ago
2.2.7
3 years ago
2.2.6
3 years ago
2.2.5
3 years ago
2.2.4
3 years ago
2.2.3
3 years ago
2.2.1
3 years ago
2.2.0
3 years ago
2.1.9
3 years ago
2.1.8
3 years ago
2.1.7
3 years ago
2.1.6
3 years ago
2.1.5
3 years ago
2.1.4
3 years ago
2.1.3
3 years ago
2.1.2
3 years ago
2.1.1
3 years ago
2.1.0
3 years ago
2.0.4
3 years ago
2.0.3
3 years ago
2.0.1
3 years ago
2.0.0
3 years ago
0.1.3
3 years ago
0.1.1
3 years ago
0.1.0
3 years ago
1.0.5
3 years ago
1.0.4
3 years ago
1.0.3
3 years ago
1.0.2
3 years ago
1.0.1
3 years ago
1.0.0
3 years ago