
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
@react-querybuilder/chakra2
Advanced tools
Official react-querybuilder compatibility package for Chakra UI version 2.
[!WARNING]
This package is only compatible with Chakra UI version 2.
For Chakra UI version 3 compatibility, use
@react-querybuilder/chakra
>= 8.
npm i react-querybuilder @react-querybuilder/chakra @chakra-ui/icons@2 @chakra-ui/react@2 @chakra-ui/system@2 @emotion/react @emotion/styled framer-motion
# OR yarn add / pnpm add / bun add
To configure the query builder to use Chakra-compatible components, place QueryBuilderChakra
above QueryBuilder
and beneath ChakraProvider
in the component hierarchy.
import { ChakraProvider, extendTheme } 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 = extendTheme();
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 theme={chakraTheme}>
<QueryBuilderChakra>
<QueryBuilder fields={fields} defaultQuery={query} onQueryChange={setQuery} />
</QueryBuilderChakra>
</ChakraProvider>
);
}
[!NOTE]
Some additional styling may be necessary. We recommend the following:
.queryBuilder .chakra-select__wrapper { width: fit-content; display: inline-block; } .queryBuilder .chakra-input { width: auto; display: inline-block; } .queryBuilder .chakra-radio-group { 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 |
ChakraDragHandle | controlElements.dragHandle |
ChakraNotToggle | controlElements.notToggle |
ChakraValueEditor | controlElements.valueEditor |
ChakraValueSelector | controlElements.valueSelector |
[!TIP]
By default, this package uses icons from
@chakra-ui/icons
for button labels. To reset button labels to their default strings, usedefaultTranslations
fromreact-querybuilder
.
<QueryBuilderChakra translations={defaultTranslations}>
[v8.1.0] - 2025-01-09
react-querybuilder
.FAQs
Custom Chakra UI v2 components for react-querybuilder
We found that @react-querybuilder/chakra2 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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.