Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@react-querybuilder/antd
Advanced tools
Official react-querybuilder components for Ant Design.
To see them in action, check out the react-querybuilder
demo or load the example in CodeSandbox.
npm i --save react-querybuilder @react-querybuilder/antd @ant-design/icons antd
# OR
yarn add react-querybuilder @react-querybuilder/antd @ant-design/icons antd
To render Ant Design-compatible components in the query builder, wrap the <QueryBuilder />
element in <QueryBuilderAntD />
.
import { QueryBuilderAntD } from '@react-querybuilder/antd';
import { QueryBuilder, RuleGroupType } from 'react-querybuilder';
const fields = [
{ name: 'firstName', label: 'First Name' },
{ name: 'lastName', label: 'Last Name' },
];
const App = () => {
const [query, setQuery] = useState<RuleGroupType>({ combinator: 'and', rules: [] });
return (
<QueryBuilderAntD>
<QueryBuilder fields={fields} query={query} onQueryChange={q => setQuery(q)} />
</QueryBuilderAntD>
);
};
You may also want to reduce the width of the value editor component (100% by default) with the following CSS rule:
.queryBuilder .ant-input {
width: auto;
}
This package exports antdControlElements
which can be assigned directly to the controlElements
prop on <QueryBuilder />
(and also exports each component individually), but wrapping <QueryBuilder />
in <QueryBuilderAntD />
is the recommended method.
[v5.3.0] - 2022-12-23
id
s are now generated as valid v4 UUIDs using crypto.getRandomValues()
instead of Math.random()
. The generateID
function used internally is exported.NameLabelPair
has been deprecated and is now an alias for the Option
interface.showCombinatorsBetweenRules
is enabled, a combinator selector immediately above a locked rule/group will no longer be locked unless the group it belongs to is locked.jsonLogicAdditionalOperators
is exported again (documentation).queryBuilder-branches
displays "tree view" branch lines.getRuleClassname
and getRuleGroupClassname
are passed the rule or group, and the return value will be added as a class to the surrounding div
.Field
, Operator
, and new interface Combinator
now have an optional className
property that will be applied to rules or groups that specify the appropriate attribute.arity
property for operators. When arity
is either "unary" or a number less than 2, the value editor will not render when that operator is selected (similar to the standard "null"/"notNull" operators).Option
(née NameLabelPair
), Field
, and ValueEditorProps
now accept generics for name
and other properties.OptionList
type covers the options
property for all standard selection lists (field, operator, combinator, etc.). Previously this was a union type: NameLabelPair[] | OptionGroup<NameLabelPair>[]
. OptionList
is equivalent to this type, but 1) doesn't require typing the base type twice, and 2) uses the new Option
name instead of the deprecated NameLabelPair
.independentCombinators
is enabled, custom onAddRule
and onAddGroup
callbacks can add a combinatorPreceding
property to the rule/group which will end up being the combinator inserted above the new rule/group (if the parent group is not empty).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.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
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.