npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@zhwatts/mui-forms

v1.0.2

Published

A Material-UI form renderer with schema support - Fork of @manojadams/mui-forms

Readme

About

Create beautiful advanced forms with a JSON-based schema

Advantages and features

  • Material UI components
  • Built-in layouting
  • Responsive
  • Support for custom components
  • Easily define field relationships and build advanced forms
  • Load data from API
  • Extensible
  • Simple forms
  • Wizard forms
  • Stepper forms
  • Mobile-ready
  • Production-ready

Installation

npm install mui-forms

Documentation

Visit the following page for detailed documentation: https://mui-forms.vercel.app

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';
import exampleSchema from '<example-schema.json>';

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

Input Properties

| Name | Description | | ------------------ | ---------------------------------------- | | className | Name of class attribute assigned to the root form element | | name | The name of the form | | config | Configuration options for the form. Read more | | data | Contains initial form data values when the form is loaded. Read more | | schema | JSON-based schema for rendering the form. Read more | | controls | Custom fields. Read more | | components | Custom template components mapped with schema using displayType property as template. Read more | | pageNumber | The default tab on opening the form (grouped form) | | lastPageNumber | The last page number will exclude any tabs that appear after the lastPageNumber tab | | onChange | A function that will be called whenever the value of a field changes. The second parameter provided to this function contains the complete form data. | | onError | A function that will be called whenever there is an error with a field. | | onNext | A function that will be called when when the user attempts to navigate to the next section of a grouped form | | onPrevious | A function that will be called when when the user attempts to navigate to the previous section of a grouped form | | onSubmit | A function that will be called when the form is submitted | | changeResponseMode | Value: "form-data", "section-data", "default". form-data: onChange event will pass all the form data as a second parameter. section-data: onChange event will pass all the section data as a second parameter | | nextResponseMode | Value: "form-data", "page-data" form-data: onNext event will send all the form data (onNext). page-data: onNext event will send all the date of the current page. Note: onNext is triggered on click of Next button |

Mandatory properties

  • schema
  • onSubmit

Schema details

Check out details here https://mui-forms.vercel.app/schema

Change logs

Contributions

To contribute, you can fork the repo, make your changes and submit a PR/MR to the master branch.

You can contribute in many ways:

  • Work on features/enhancements
  • Work on bug fixes
  • Improve on existing functionalities
  • Improve documentation
  • Add more examples/improve existing example
  • Participate in discussions
  • Provide your valuable feedback/suggestions.

Give a ⭐️ if you liked this project!

License

MIT © manojadams