@redneckz/wildless-cms-uni-blocks 0.14.157 → 0.14.158

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.
@@ -3500,7 +3500,7 @@
3500
3500
  const isSingularFieldMatch = (key, pattern) => (target) => isEmpty(pattern[key]) || isEmpty(target[key]) || pattern[key] === target[key];
3501
3501
  const isMultipleFieldMatch = (key, pattern) => (target) => isEmpty(pattern[key]) ||
3502
3502
  isEmpty(target[key]) ||
3503
- pattern[key]?.some((_) => target[key]?.includes(_));
3503
+ pattern[key]?.every((_) => target[key]?.includes(_));
3504
3504
  const isNumberFieldMatch = (key, pattern) => (target) => isEmpty(pattern[key]) ||
3505
3505
  isEmpty(target[key]) ||
3506
3506
  naturalNumber(pattern[key]) <= naturalNumber(target[key]);
@@ -6106,7 +6106,7 @@
6106
6106
  return (jsx("div", { className: "flex items-end absolute bottom-0 right-0 h-full pointer-events-none", children: jsx(LikeControl, { className: "rounded-tl-3xl sticky bottom-0 pointer-events-auto" }) }));
6107
6107
  }
6108
6108
 
6109
- const packageVersion = "0.14.156";
6109
+ const packageVersion = "0.14.157";
6110
6110
 
6111
6111
  exports.Blocks = Blocks;
6112
6112
  exports.ContentPage = ContentPage;