
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
@react-querybuilder/antd
Advanced tools
Official react-querybuilder compatibility package for Ant Design.
npm i react-querybuilder @react-querybuilder/antd @ant-design/icons antd
# OR yarn add / pnpm add / bun add
To configure the query builder to use Ant Design-compatible components, place QueryBuilderAntD
above QueryBuilder
in the component hierarchy.
import { QueryBuilderAntD } from '@react-querybuilder/antd';
import { useState } from 'react';
import { type Field, QueryBuilder, type RuleGroupType } from 'react-querybuilder';
const fields: Field[] = [
{ name: 'firstName', label: 'First Name' },
{ name: 'lastName', label: 'Last Name' },
];
export function App() {
const [query, setQuery] = useState<RuleGroupType>({ combinator: 'and', rules: [] });
return (
<QueryBuilderAntD>
<QueryBuilder fields={fields} defaultQuery={query} onQueryChange={setQuery} />
</QueryBuilderAntD>
);
}
[!NOTE]
You may also want to reduce the width of the value editor component (which is 100% by default) with the following CSS rule.
.queryBuilder .ant-input { width: auto; }
QueryBuilderAntD
is a React context provider that assigns the following props to all descendant QueryBuilder
elements. The props can be overridden on the QueryBuilder
or used directly without the context provider.
Export | QueryBuilder prop |
---|---|
antdControlElements | controlElements |
antdTranslations | translations |
AntDActionElement | controlElements.actionElement |
AntDDragHandle | controlElements.dragHandle |
AntDNotToggle | controlElements.notToggle |
AntDShiftActions | controlElements.shiftActions |
AntDValueEditor | controlElements.valueEditor |
AntDValueSelector | controlElements.valueSelector |
[!TIP]
By default, this package uses icons from
@ant-design/icons
for button labels. To reset button labels to their default strings, usedefaultTranslations
fromreact-querybuilder
.
<QueryBuilderAntD translations={defaultTranslations}>
[v8.6.0] - 2025-05-05
@react-querybuilder/drizzle
for integration with the Drizzle ORM query builder API.formatQuery
option ruleGroupProcessor
enabling development of custom output formats without completely reimplementing formatQuery
.
formatQuery
and can be used independently or as fallbacks from custom processors.add
, update
, remove
, move
, and group
can now accept a string
or Path
where they previously accepted only Path
-type arguments. A string
would represent the id
property of the subject rule/group, but otherwise the functionality of each tool is the same.findID
returns the rule or group with the given id
property within a query hierarchy (similar to findPath
), and getPathOfID
returns the path
of the rule or group with the given id
.parseSQL
was translating NOT LIKE '[...]'
(no leading or trailing wildcards) to operator: "="
instead of operator: "!="
.react-querybuilder/formatQuery
no longer has a dependency on react
.FAQs
Custom Ant Design components for react-querybuilder
The npm package @react-querybuilder/antd receives a total of 3,508 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 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.