Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@data-driven-forms/editor-pro
Advanced tools
Data Driven Forms Editor is editor to build complex Data Driven Forms.
A schema of the properties editor. You can use our predefined helper functions to create subsections. Check public/index.tsx
for an example
const fields: Schema = {
fields: [{
name: 'component',
component: 'select',
label: 'Component',
description: 'Component type.',
isRequired: true,
validate: [{ type: 'required' }],
options: Object.keys(componentMapper).map(key => ({
label: key.replaceAll('-', ' '),
value: key
}))
}, {
name: 'name',
component: 'text-field',
label: 'Name',
description: 'Name of the field. You can use dot notation to nest variables.',
isRequired: true,
validate: [{ type: 'required' }]
}]
}
A mapper of components you want to be able to edit.
Example
import { componentMapper } from '@data-driven-forms/mui-component-mapper';
A FormTemplate to use in the preview box.
Example
import { MuiFormTemplate } from '@data-driven-forms/mui-component-mapper';
An object to set initial props for components. For example, some components required props to be initialized.
Example
const componentInitialProps: AnyObject = {
'dual-list-select': {
options: []
},
'sub-form': {
title: 'Sub form',
fields: []
},
'field-array': {
fields: []
},
wizard: {
fields: [{ name: 'step-1', fields: [] }]
},
tabs: {
fields: []
}
};
Initial schema to be put in the editor.
Example
const initialSchema: Schema = {
fields: [{
component: componentTypes.TEXT_FIELD,
name: 'name',
label: 'Your name',
isRequired: true,
validate: [{ type: validatorTypes.REQUIRED }]
}, {
component: componentTypes.TEXT_FIELD,
name: 'email',
label: 'Email',
isRequired: true,
validate: [
{ type: validatorTypes.REQUIRED },
{
type: validatorTypes.PATTERN,
pattern: '[a-z0-9._%+-]+@[a-z0-9.-]+.[a-z]{2,}$',
message: 'Not valid email'
}
]
},{
component: componentTypes.TEXT_FIELD,
name: 'confirm-email',
label: 'Confirm email',
type: 'email',
isRequired: true,
},{
component: componentTypes.CHECKBOX,
name: 'newsletters',
label: 'I want to receive newsletter'
}, {
component: componentTypes.SUB_FORM,
name: 'subform1',
title: 'Additional info',
fields: [
{
component: componentTypes.TEXTAREA,
name: 'address',
label: 'Your address',
}
]
}
]
};
FAQs
DnD editor based on EvergreenUI for React Forms
The npm package @data-driven-forms/editor-pro receives a total of 22 weekly downloads. As such, @data-driven-forms/editor-pro popularity was classified as not popular.
We found that @data-driven-forms/editor-pro demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.