Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@react-querybuilder/bootstrap
Advanced tools
Official react-querybuilder compatibility package for Bootstrap.
npm i react-querybuilder @react-querybuilder/bootstrap bootstrap bootstrap-icons
# OR yarn add / pnpm add / bun add
To configure the query builder to use Bootstrap-compatible components, place QueryBuilderBootstrap
above QueryBuilder
in the component hierarchy.
import { QueryBuilderBootstrap } from '@react-querybuilder/bootstrap';
import 'bootstrap-icons/font/bootstrap-icons.scss';
import 'bootstrap/scss/bootstrap.scss';
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 (
<QueryBuilderBootstrap>
<QueryBuilder fields={fields} defaultQuery={query} onQueryChange={setQuery} />
</QueryBuilderBootstrap>
);
}
[!NOTE]
Some additional styling may be necessary. We recommend the following:
.queryBuilder .form-control, .queryBuilder .form-select { display: inline-block; width: auto; }
QueryBuilderBootstrap
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 |
---|---|
bootstrapControlClassnames | controlClassnames |
bootstrapControlElements | controlElements |
bootstrapTranslations | translations |
BootstrapNotToggle | controlElements.notToggle |
BootstrapValueEditor | controlElements.valueEditor |
[!TIP]
By default, this package uses icons from
bootstrap-icons
for button labels. To reset button labels to their default strings, usedefaultTranslations
fromreact-querybuilder
.
<QueryBuilderBootstrap translations={defaultTranslations}>
FAQs
Custom Bootstrap components for react-querybuilder
The npm package @react-querybuilder/bootstrap receives a total of 1,330 weekly downloads. As such, @react-querybuilder/bootstrap popularity was classified as popular.
We found that @react-querybuilder/bootstrap 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.