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/chakra
Advanced tools
Official react-querybuilder components for Chakra UI.
To see them in action, check out the react-querybuilder
demo or load the example in CodeSandbox.
npm i --save react-querybuilder @react-querybuilder/chakra @chakra-ui/icons @chakra-ui/react @chakra-ui/system @emotion/react @emotion/styled framer-motion
# OR
yarn add react-querybuilder @react-querybuilder/chakra @chakra-ui/icons @chakra-ui/react @chakra-ui/system @emotion/react @emotion/styled framer-motion
To render Chakra-compatible components in the query builder, wrap the <QueryBuilder />
element in <QueryBuilderChakra />
.
import { ChakraProvider, extendTheme } from '@chakra-ui/react';
import { QueryBuilderChakra } from '@react-querybuilder/chakra';
import { QueryBuilder, RuleGroupType } from 'react-querybuilder';
const chakraTheme = extendTheme();
const fields = [
{ name: 'firstName', label: 'First Name' },
{ name: 'lastName', label: 'Last Name' },
];
const App = () => {
const [query, setQuery] = useState<RuleGroupType>({ combinator: 'and', rules: [] });
return (
<ChakraProvider theme={chakraTheme}>
<QueryBuilderChakra>
<QueryBuilder fields={fields} query={query} onQueryChange={q => setQuery(q)} />
</QueryBuilderChakra>
</ChakraProvider>
);
};
Some additional styling may be necessary, e.g.:
.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;
}
This package exports chakraControlElements
which can be assigned directly to the controlElements
prop on <QueryBuilder />
(and also exports each component individually), but this method does not support customized Chakra themes like <QueryBuilderChakra />
.
FAQs
Custom Chakra UI components for react-querybuilder
The npm package @react-querybuilder/chakra receives a total of 2,482 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 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.