2.0.4 • Published 18 days ago

mui-forms v2.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
18 days ago

mui-forms

Material UI forms using json based schema JavaScript Style Guide

Change logs

Advantages and features

  • Mui Components
  • Built-in layouting
  • Supports custom components
  • Easily define field relationships and build advanced forms
  • Load data from remote API

Install

npm install mui-forms

Basic Usage

1. Define your JSON schema

const exampleSchema = {
    "fields": [{
        "name": "first_name",
        "meta": {
            "displayType": "text",
            "displayName": "First Name"
        }
    }, {
        "name": "last_name",
        "meta": {
            "displayType": "text",
            "displayName": "Last Name"
        }
    }]
}

2. Usage

import React from 'react'

import MuiForms from 'mui-forms';

export function MyForm() {
    return (
        <MuiForms
            schema={exampleSchema}
            onSubmit={(formData) => {
              // submit data
            }}
        />
    );
}

3. Schema details

Check out the file

Contributions

Open source contribution is welcome.

License

MIT © manojadams

Give a ⭐️ if you liked this project!

2.0.3

18 days ago

2.0.4

18 days ago

2.0.2

27 days ago

2.0.1

1 month ago

2.0.0-rc.1

1 month ago

1.0.40

2 months ago

1.0.39

2 months ago

1.0.38

3 months ago

1.0.37

3 months ago

1.0.36

3 months ago

1.0.35

3 months ago

1.0.34

3 months ago

1.0.33

3 months ago

1.0.32

3 months ago

1.0.31

4 months ago

1.0.30

4 months ago

1.0.29

4 months ago

1.0.26

8 months ago

1.0.28

8 months ago

1.0.27

8 months ago

1.0.19

8 months ago

1.0.18

8 months ago

1.0.17

8 months ago

1.0.16

8 months ago

1.0.22

8 months ago

1.0.21

8 months ago

1.0.20

8 months ago

1.0.25

8 months ago

1.0.24

8 months ago

1.0.23

8 months ago

1.0.15

8 months ago

1.0.13

9 months ago

1.0.12

9 months ago

1.0.11

9 months ago

1.0.10

9 months ago

1.0.9

9 months ago

1.0.8

9 months ago

1.0.7

10 months ago

1.0.6

10 months ago

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago