Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@manojadams/metaforms-core
Advanced tools
A framework for building react form libraries. Create your react form components and use this framework for adding form behaviour using json based schema.
This library reads the json based schema and layouts beautiful forms. It acts as a base for creating a dynamic form library.
This is a class containing declarations of basic form controls as well as some other advanced form controls.
Contains declarations of basic form grouping controls.
This is another type of form grouping that contains declartions to implement stepper functionalities for your form.
This library contains abstract declarations and requires the user to implement his own core components.
email
controlclass MyFormControl extends CoreFormControl {
/**
* Implement email
*/
email() {
return (
<div className="form-group">
<label forName="exampleInputEmail1">Email address</label>
<input
type="email"
className="form-control"
id="exampleInputEmail1"
aria-describedby="emailHelp"
placeholder="Enter email"
onChange={this.handleChange}
>
</div>
)
}
}
phone
controlclass MyFormControl extends CoreFormControl {
/**
* Implement phone
*/
phone() {
return (
<div className="form-group">
<label forName="phone">Your Phone</label>
<input
type="tel"
className="form-control"
id="phone" aria-describedby="phoneHelp"
placeholder="Enter your phone"
onChange={this.handleChange}
>
</div>
)
}
}
npm install --save @manojadams/metaform-core
import CoreFormRenderer, { IFormRenderer } from "@manojadams/metaforms-core";
import React from "react";
import FormControl from "./forms/FormControl"; // your form control implementation
import FormGroup from "./forms/FormGroup"; // your form group implementation
import { FormStepper } from "./forms/FormStepper"; // your form stepper implementation
class FormRenderer extends React.Component<IFormRenderer> {
constructor(props: IFormRenderer) {
super(props);
}
render() {
return (
<CoreFormRenderer
{...this.props}
baseFormControl={FormControl}
baseFormGroup={FormGroup}
baseFormStepper={FormStepper}
/>
)
}
}
export default FormRenderer;
MIT © manojgetwealthy
FAQs
React Library for rendering dynamic forms from json schema
The npm package @manojadams/metaforms-core receives a total of 321 weekly downloads. As such, @manojadams/metaforms-core popularity was classified as not popular.
We found that @manojadams/metaforms-core 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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.