@rabahzeineddine/formik
v1.2.3
Published
Formik Fields using Material ui
Downloads
5
Readme
Material-ui Formik components
This project offers Material-ui input fields that works with Formik
Why a package was created
As I use Material-ui in my projects, I decided to create this package that offers Material-ui fields as a simple components that works with Formik and manages Formik's methods and values.
What problem the package solves
Using this package no needs to configure Formik methods on every input.
How the package solves the problem
It manages Formik's methods on every input.
All valid configurations/props of the package
Components
TextField
import { TextField } from '@rabahzeineddine/formik'
<Formik
initialValues={{}}
onSubmit={() => {}}
>
<Form>
<TextField
name="email"
label="Email"
/>
</Form>
</Formik>
For more information check the TextField Documentation
MaskedTextField
import { MaskedTextField } from '@rabahzeineddine/formik'
<Formik
initialValues={{}}
onSubmit={() => {}}
>
<Form>
<MaskedTextField
name="cellphone"
label="Cellphone"
mask=["(",/\d/,/\d/,")"," ",/\d/,/\d/,/\d/,/\d/,/\d/,"-",/\d/,/\d/,/\d/,/\d/]
>
</Form>
</Formik>
For more information check the MaskedTextField Documentation
RadioGroup
import { RadioGroup, Radio } from '@rabahzeineddine/formik'
<Formik
initialValues={{}}
onSubmit={() => {}}
>
<Form>
<RadioGroup name="sex">
<Radio value="male" label="Male" />
<Radio value="female" label="Female" />
</RadioGroup>
</Form>
</Formik>
For more information check the RadioGroup Documentation
Select
import { Select, Option } from '@rabahzeineddine/formik'
<Formik
initialValues={{}}
onSubmit={() => {}}
>
<Form>
<Select name="options" label="Options">
<Option value="">Select an option</Option>
<Option value="option1">Option 1</Option>
<Option value="option2">Option 2</Option>
</Select>
</Form>
</Formik>
For more information check the Select Documentation
DatePicker
import { DatePicker } from '@rabahzeineddine/formik'
<Formik
initialValues={{}}
onSubmit={() => {}}
>
<Form>
<DatePicker name="date" label="Date" />
</Form>
</Formik>
For more information check the DatePicker Documentation
Demos of the package in action
Check the Storybook page