
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@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 13 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.