Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
mui-dataforms
Advanced tools
MUI Dataforms is a library intended to assist in creating dynamic forms based on a JSON input. Fields are completely dynamic with a multitude of pre-defined components (with the option of custom components).
npm install mui-dataforms
or
yarn add mui-dataforms
import MuiDataform from 'mui-dataforms'
const fields = [
{
title: "Personal Information",
description: "Some info about yourself.",
fields: [
{
id: 'first-name',
title: 'First Name',
type: 'text',
validation: {
required: true,
min: 3,
max: 16,
},
size: {
xs: 12,
md: 6,
},
},
]
}
]
const [values, setValues] = useState({"first-name": "Alex"})
const handleOnChange = (key) => (value) => {
setValues(prevValues => ({[key]: value, ...prevValues}))
}
<MuiDataform title={"My Form"} fields={fields} values={values} onChange={handleOnChange}/>
The component accepts the following props:
Name | Type | Default | Required | Description |
---|---|---|---|---|
title | string | '' | false | Title of the form |
fields | array | [] | true | Data used to describe the fields. Array of section objects. |
values | object | {} | false | Object containing the values of the form. Each value's key is linked to the id of the relative field. |
onChange | function | true | A function that will be triggered when the field changes. function(value) => () |
Name | Type | Default | Required | Description |
---|---|---|---|---|
title | string | '' | false | Title of the section. |
description | string | '' | false | Description of the section. |
fields | array | [] | false | Fields for the section. Array of field objects. |
Name | Type | Default | Required | Description |
---|---|---|---|---|
id | string | true | Reference to the value stored in the values object. Required unless type is set to spacer . | |
title | string | false | Title of the field | |
type | string | true | Type of field to display.enum(text, number, select, date, time, datetime, checkbox, switch, spacer, custom) | |
validation | object | false | Title of the field. | |
validation.required | bool | false | false | Title of the field. |
validation.min | int | false | Minimum length or size of input. | |
validation.max | int | false | Maximum length or size of input. | |
size | object | {xs: 12} | false | Grid sizing of each field. Uses same sizing from MUI: xs , sm , md , lg , xl . |
props | object | false | Additional props to pass through. | |
options | array | false | Required for type: select . List of options defined by an array of objects with value and label . | |
validator | function | false | Custom validation logic that returns whether the input is valid and an optional errorMessage to display to the client.(value) => {valid, errorMessage} |
FAQs
Dynamically generated data forms for use with Material-UI
The npm package mui-dataforms receives a total of 1 weekly downloads. As such, mui-dataforms popularity was classified as not popular.
We found that mui-dataforms demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.