@react-querybuilder/bulma
TypeScript icon, indicating that this package has built-in type declarations

7.3.0 • Public • Published

@react-querybuilder/bulma

Official react-querybuilder components for Bulma.

To see them in action, check out the react-querybuilder demo or load the example in CodeSandbox.

Full documentation

Installation

npm i react-querybuilder @react-querybuilder/bulma bulma
# OR yarn add / pnpm add / bun add

Usage

To render Bulma-compatible components in the query builder, wrap the <QueryBuilder /> element in <QueryBuilderBulma />.

import { QueryBuilderBulma } from '@react-querybuilder/bulma';
import 'bulma/bulma.sass';
import { QueryBuilder, RuleGroupType } from 'react-querybuilder';

const fields = [
  { name: 'firstName', label: 'First Name' },
  { name: 'lastName', label: 'Last Name' },
];

const App = () => {
  const [query, setQuery] = useState<RuleGroupType>({ combinator: 'and', rules: [] });

  return (
    <QueryBuilderBulma>
      <QueryBuilder fields={fields} query={query} onQueryChange={setQuery} />
    </QueryBuilderBulma>
  );
};

Notes

  • Some additional styling may be necessary, e.g.:

    .queryBuilder .input {
      width: auto;
    }
  • This package exports bulmaControlElements which can be assigned directly to the controlElements prop on <QueryBuilder /> (and also exports each component individually), but wrapping <QueryBuilder /> in <QueryBuilderBulma /> is the recommended method.

Readme

Keywords

none

Package Sidebar

Install

npm i @react-querybuilder/bulma

Weekly Downloads

50

Version

7.3.0

License

MIT

Unpacked Size

89.2 kB

Total Files

20

Last publish

Collaborators

  • jakeboone02