@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.
@@ -2620,7 +2620,7 @@ const defaultRuleGroupProcessorCypher = (ruleGroup, options) => {
2620
2620
  *
2621
2621
  * @group Export
2622
2622
  */
2623
- const defaultRuleGroupProcessorDrizzle = (ruleGroup, options, _meta) => (columns, drizzleOperators) => {
2623
+ const defaultRuleGroupProcessorDrizzle = (ruleGroup, options, _meta) => ((columns, drizzleOperators) => {
2624
2624
  const { fields, getParseNumberBoolean, placeholderFieldName, placeholderOperatorName, placeholderValueName, validateRule, validationMap, ruleProcessor } = options;
2625
2625
  if (!columns || !drizzleOperators) return void 0;
2626
2626
  const { and, not, or } = drizzleOperators;
@@ -2647,7 +2647,7 @@ const defaultRuleGroupProcessorDrizzle = (ruleGroup, options, _meta) => (columns
2647
2647
  return rg.not ? not(ruleGroupSQL) : ruleGroupSQL;
2648
2648
  };
2649
2649
  return processRuleGroup(convertFromIC(ruleGroup), true);
2650
- };
2650
+ });
2651
2651
  //#endregion
2652
2652
  //#region src/utils/formatQuery/defaultRuleGroupProcessorElasticSearch.ts
2653
2653
  /**