
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
@react-querybuilder/chakra
Advanced tools
Official react-querybuilder compatibility package for Chakra UI.
npm i react-querybuilder @react-querybuilder/chakra @chakra-ui/react @emotion/react react-icons
# OR yarn add / pnpm add / bun add
[!NOTE]
As of version 8, this package is no longer compatible with Chakra UI version 2.
For compatibility with Chakra UI version 2, use
@react-querybuilder/chakra2
.
To configure the query builder to use Chakra-compatible components, place QueryBuilderChakra
above QueryBuilder
and beneath ChakraProvider
in the component hierarchy.
import { ChakraProvider, createSystem, defaultConfig, Theme } from '@chakra-ui/react';
import { QueryBuilderChakra } from '@react-querybuilder/chakra';
import { useState } from 'react';
import { type Field, QueryBuilder, type RuleGroupType } from 'react-querybuilder';
const chakraTheme = createSystem(defaultConfig);
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 (
<ChakraProvider value={chakraTheme}>
<Theme colorPalette="teal">
<QueryBuilderChakra>
<QueryBuilder fields={fields} defaultQuery={query} onQueryChange={setQuery} />
</QueryBuilderChakra>
</Theme>
</ChakraProvider>
);
}
[!NOTE]
Some additional styling may be necessary. We recommend the following:
.queryBuilder .chakra-native-select__root { width: fit-content; display: inline-block; } .queryBuilder .chakra-input { width: auto; display: inline-block; }
QueryBuilderChakra
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 |
---|---|
chakraControlElements | controlElements |
chakraTranslations | translations |
ChakraActionElement | controlElements.actionElement |
ChakraNotToggle | controlElements.notToggle |
ChakraValueEditor | controlElements.valueEditor |
ChakraValueSelector | controlElements.valueSelector |
[!TIP]
By default, this package uses icons from
react-icons
for button labels. To reset button labels to their default strings, usedefaultTranslations
fromreact-querybuilder
.
<QueryBuilderChakra translations={defaultTranslations}>
[v8.7.1] - 2025-06-09
rqb-base-color
. rqb-background-color
is rqb-base-color
with 20% opacity (effectively the same color as before, just calculated differently).maxLevels
prop to limit the addition of new rule groups beyond the specified nesting level. Default is Infinity
(allows unlimited levels), and values other than 1 or greater will be ignored.FAQs
Custom Chakra UI components for react-querybuilder
The npm package @react-querybuilder/chakra receives a total of 3,654 weekly downloads. As such, @react-querybuilder/chakra popularity was classified as popular.
We found that @react-querybuilder/chakra 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.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.