@react-querybuilder/core 8.22.4 → 8.22.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -659,7 +659,7 @@ const defaultRuleGroupProcessorCypher = (ruleGroup, options) => {
659
659
  *
660
660
  * @group Export
661
661
  */
662
- const defaultRuleGroupProcessorDrizzle = (ruleGroup, options, _meta) => (columns, drizzleOperators) => {
662
+ const defaultRuleGroupProcessorDrizzle = (ruleGroup, options, _meta) => ((columns, drizzleOperators) => {
663
663
  const { fields, getParseNumberBoolean, placeholderFieldName, placeholderOperatorName, placeholderValueName, validateRule, validationMap, ruleProcessor } = options;
664
664
  if (!columns || !drizzleOperators) return void 0;
665
665
  const { and, not, or } = drizzleOperators;
@@ -686,7 +686,7 @@ const defaultRuleGroupProcessorDrizzle = (ruleGroup, options, _meta) => (columns
686
686
  return rg.not ? not(ruleGroupSQL) : ruleGroupSQL;
687
687
  };
688
688
  return processRuleGroup(convertFromIC(ruleGroup), true);
689
- };
689
+ });
690
690
  //#endregion
691
691
  //#region src/utils/formatQuery/defaultRuleGroupProcessorElasticSearch.ts
692
692
  /**