Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
@data-driven-forms/ant-component-mapper
Advanced tools
Component mapper for Ant Design component mapper form data-driven-forms.
Material-UI component mapper for Data Driven Forms.
:book: For more information please visit the documentation. :book:
Table of Contents
You need to add React Form Renderer
$ npm install @data-driven-forms/react-form-renderer -S
$ yarn add @data-driven-forms/react-form-renderer
Optionally you can install one of provided mappers:
$ npm install @data-driven-forms/ant-component-mapper -S
$ yarn add @data-driven-forms/ant-component-mapper
For using Data Driven Forms in your component you need the renderer and a component mapper, which provides formFields components and layoutFields components.
import React from 'react';
import { FormRenderer, componentTypes } from '@data-driven-forms/react-form-renderer';
import { componentMapper, layoutMapper } from '@data-driven-forms/ant-component-mapper';
const schema = {
fields: [{
component: componentTypes.TEXT_FIELD,
name: 'name',
label: 'Your name'
}]
}
const Form = () => (
<FormRenderer
schema={schema}
componentMapper={componentMapper}
layoutMapper={layoutMapper}
onSubmit={console.log}
/>
)
Data Driven Forms supports all kinds of component, basic set is consisted of:
Data Driven Forms is a monorepo that uses Lerna and yarn workspaces, so you can use all its commands as well.
yarn install
yarn build
Each package has a small playground package/demo
, where you can test your changes.
cd packages/ant-component-mapper
yarn start
rm yarn.lock
yarn lerna clean # will delete all node_modules
All packages are linked together by default, so if you run a yarn build
in a package, all other packages are updated to the latest version of that package.
Tests can be ran from the core folder or from specific packages.
yarn test
yarn test packages/ant-component-mapper
Data Driven Forms uses Semantic Release
Format:
[type]([package]): message
fix(ant): title accepts node
Types:
feat
: a new feature, will trigger new _.X._
releasefix
: a fix, will trigger new _._.X
releasePackages:
pf3
, renderer
, ...Please, do not use Semantic Release, if you update only the demo.
All packages are releasing together and they share the version number.
If your changes influence API or add new features, you should describe these new options in the demo
repository. Thanks!
We welcome any community contribution. Don't be afraid to report bug or to create issues and pull-requests! :trophy:
Apache License 2.0
FAQs
Ant Design React component mapper for Data Driven Forms.
We found that @data-driven-forms/ant-component-mapper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.