Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
formsy-antd
Advanced tools
This library is a wrapper for ant-design form components to allow them to be used with formsy-react.
To add formsy-antd to you package.json and install it, run:
$ npm i formsy-antd
You will also need to add formsy-react if not already installed:
$ npm i formsy-react
import {Form, FormItem, Input} from 'formsy-antd';
function MyForm() {
return (
<Form onSubmit={action('submit')}>
<FormItem required={true} label="Username">
<Input
name="name"
value="wmzy"
validations="minLength:4"
validationError="minLength:4"
/>
</FormItem>
<button type="submit">submit</button>
</Form>
);
}
And import stylesheets manually:
import 'antd/dist/antd.css'; // or 'antd/dist/antd.less'
// .babelrc or babel-loader option
{
"plugins": [
["import", { "libraryName": "formsy-antd", "style": "css" }] // `style: true` for less
]
}
This allows you to import components from antd without having to manually import the corresponding stylesheet. The antd-babel-plugin will automatically import stylesheets.
// import js and css modularly, parsed by babel-plugin-import
import { DatePicker } from 'formsy-antd';
import DatePicker from 'formsy-antd/lib/date-picker'; // for js
import 'antd/lib/date-picker/style/css'; // for css
// import 'antd/lib/date-picker/style'; // that will import less
See also: http://ant.design/docs/react/introduce
There are some functions help you to wrap customized form controls.
import Input from 'antd/lib/input';
import {mappingChangeEvent, formsyComponent} from 'formsy-antd/lib/util';
export default formsyComponent(mappingChangeEvent(Input, ev => ev.target.value), '');
See storybook.
FAQs
A formsy-react compatibility wrapper for antd form components.
We found that formsy-antd demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.