
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
@data-driven-forms/pf4-component-mapper
Advanced tools
Patternfly 4 React component mapper for Data Driven Forms.
Patternfly 4 component mapper for Data Driven Forms.
:book: For more information please visit the documentation. :book:
Table of Contents
For more information please check the root repository or our documentation page.
You need to add React Form Renderer
$ npm install @data-driven-forms/react-form-renderer -S
$ yarn add @data-driven-forms/react-form-renderer
$ npm install @data-driven-forms/pf4-component-mapper -S
$ yarn add @data-driven-forms/pf4-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, FormTemplate } from '@data-driven-forms/pf4-component-mapper';
const schema = {
fields: [{
component: componentTypes.TEXT_FIELD,
name: 'name',
label: 'Your name'
}]
}
const Form = () => (
<FormRenderer
schema={schema}
componentMapper={componentMapper}
FormTemplate={FormTemplate}
onSubmit={console.log}
/>
)
Data Driven Forms supports all kinds of component, basic set is consisted of:
PF4 mapper provides an option to validate a field when the component is mounted. Just set validateOnMount
to true
.
{
component: 'text-field',
name: 'required-field',
validate: [{type: 'required'}],
validateOnMount: true
}
This field will show the error immediately.
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
Patternfly 4 React component mapper for Data Driven Forms.
The npm package @data-driven-forms/pf4-component-mapper receives a total of 947 weekly downloads. As such, @data-driven-forms/pf4-component-mapper popularity was classified as not popular.
We found that @data-driven-forms/pf4-component-mapper demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.