1.0.10 • Published 10 months ago

easy-form-builder v1.0.10

Weekly downloads
-
License
ISC
Repository
github
Last release
10 months ago

Form Builder Component

A reusable form component built with React and NextUI. This component supports various input types, repeatable fields, and dynamic options.

Installation

Example

const fields = [
        {
            key: 'name',
            type: 'text',
            label: 'Name',
        },
        {
            key: 'email',
            type: 'text',
            label: 'Email',
        },
        {
            key: 'gender',
            label: 'Gender',
            type: 'radio',
            options: [
                {
                    value: 'male',
                    label: 'Male',
                },
                {
                    value: 'female',
                    label: 'Female',
                }
            ],
        },
    ]

    const initialValues = {
        email: ''
    }

    const handleFormSubmit = (data) => {
        console.log( data )
        // console.log( JSON.stringify(data) )
    };
1.0.10

10 months ago

1.0.9

10 months ago

1.0.8

10 months ago

1.0.7

11 months ago

1.0.6

11 months ago

1.0.5

11 months ago

1.0.4

11 months ago

1.0.3

11 months ago

1.0.2

11 months ago

1.0.1

11 months ago

1.0.0

11 months ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago