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

7.0.2 • Public • Published

@react-querybuilder/antd

Official react-querybuilder components for Ant Design.

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/antd @ant-design/icons antd
# OR yarn add / pnpm add / bun add

Usage

To render Ant Design-compatible components in the query builder, wrap the <QueryBuilder /> element in <QueryBuilderAntD />.

import { QueryBuilderAntD } from '@react-querybuilder/antd';
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 (
    <QueryBuilderAntD>
      <QueryBuilder fields={fields} query={query} onQueryChange={setQuery} />
    </QueryBuilderAntD>
  );
};

Notes

  • You may also want to reduce the width of the value editor component (100% by default) with the following CSS rule:

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

Readme

Keywords

none

Package Sidebar

Install

npm i @react-querybuilder/antd

Weekly Downloads

1,997

Version

7.0.2

License

MIT

Unpacked Size

316 kB

Total Files

20

Last publish

Collaborators

  • jakeboone02