Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@react-querybuilder/antd
Advanced tools
Official Ant Design components for react-querybuilder.
To see them in action, check out the react-querybuilder
demo and choose "Ant Design" from the Style drop-down.
npm i --save react-querybuilder @react-querybuilder/antd @ant-design/icons antd
# OR
yarn add react-querybuilder @react-querybuilder/antd @ant-design/icons antd
import QueryBuilder, { RuleGroupType } from 'react-querybuilder';
import {
AntDActionElement,
AntDDragHandle,
AntDNotToggle,
AntDValueEditor,
AntDValueSelector
} from '@react-querybuilder/antd';
const fields = [
{ name: 'firstName', label: 'First Name' },
{ name: 'lastName', label: 'Last Name' }
];
const App = () => {
const [query, setQuery] = useState<RuleGroupType>({ combinator: 'and', rules: [] });
return (
<QueryBuilder
fields={fields}
query={query}
onQueryChange={(q) => setQuery(q)}
controlElements={{
addGroupAction: AntDActionElement,
addRuleAction: AntDActionElement,
cloneGroupAction: AntDActionElement,
cloneRuleAction: AntDActionElement,
combinatorSelector: AntDValueSelector,
fieldSelector: AntDValueSelector,
notToggle: AntDNotToggle,
operatorSelector: AntDValueSelector,
removeGroupAction: AntDActionElement,
removeRuleAction: AntDActionElement,
valueEditor: AntDValueEditor,
dragHandle: AntDDragHandle
}}
/>
);
};
You may also want to reduce the width of the value editor component, which is 100% by default, with the following CSS rule:
.ant-input {
width: auto;
}
[v4.0.0-beta.7] - 2021-12-13
independentCombinators
FAQs
Custom Ant Design components for react-querybuilder
The npm package @react-querybuilder/antd receives a total of 3,515 weekly downloads. As such, @react-querybuilder/antd popularity was classified as popular.
We found that @react-querybuilder/antd 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.