@react-querybuilder/core 8.20.1 → 8.20.2

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.
@@ -2658,7 +2658,7 @@ const defaultRuleGroupProcessorTanStackDB = (ruleGroup, options) => (refs) => {
2658
2658
  };
2659
2659
  //#endregion
2660
2660
  //#region src/utils/formatQuery/defaultRuleGroupProcessorDiagnostics.ts
2661
- const numericInputTypes = new Set([
2661
+ const numericInputTypes = /* @__PURE__ */ new Set([
2662
2662
  "number",
2663
2663
  "range",
2664
2664
  "bigint"
@@ -4298,7 +4298,7 @@ const defaultFormatQueryOptions = {
4298
4298
  translations: {},
4299
4299
  operatorMap: {}
4300
4300
  };
4301
- const valueProcessorCanActAsRuleProcessor = new Set([
4301
+ const valueProcessorCanActAsRuleProcessor = /* @__PURE__ */ new Set([
4302
4302
  "cel",
4303
4303
  "drizzle",
4304
4304
  "elasticsearch",
@@ -4312,7 +4312,7 @@ const valueProcessorCanActAsRuleProcessor = new Set([
4312
4312
  "spel",
4313
4313
  "tanstack_db"
4314
4314
  ]);
4315
- const sqlFormats = new Set([
4315
+ const sqlFormats = /* @__PURE__ */ new Set([
4316
4316
  "sql",
4317
4317
  "parameterized",
4318
4318
  "parameterized_named",
@@ -4593,7 +4593,7 @@ if (cryptoModule) {
4593
4593
  if (typeof cryptoModule.randomUUID === "function") generateID = () => cryptoModule.randomUUID();
4594
4594
  else if (typeof cryptoModule.getRandomValues === "function") {
4595
4595
  const position19vals = "89ab";
4596
- const container = new Uint32Array(32);
4596
+ const container = /* @__PURE__ */ new Uint32Array(32);
4597
4597
  generateID = () => {
4598
4598
  cryptoModule.getRandomValues(container);
4599
4599
  let id = (container[0] % 16).toString(16);