@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.
- package/bundle/bundle.umd.js +2 -2
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/ui-kit/BaseFiltration/shouldRenderBlock.js +1 -1
- package/dist/ui-kit/BaseFiltration/shouldRenderBlock.js.map +1 -1
- package/lib/ui-kit/BaseFiltration/shouldRenderBlock.js +1 -1
- package/lib/ui-kit/BaseFiltration/shouldRenderBlock.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +2 -2
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/ui-kit/BaseFiltration/shouldRenderBlock.js +1 -1
- package/mobile/dist/ui-kit/BaseFiltration/shouldRenderBlock.js.map +1 -1
- package/mobile/lib/ui-kit/BaseFiltration/shouldRenderBlock.js +1 -1
- package/mobile/lib/ui-kit/BaseFiltration/shouldRenderBlock.js.map +1 -1
- package/mobile/src/ui-kit/BaseFiltration/shouldRenderBlock.ts +1 -1
- package/package.json +1 -1
- package/src/components/DepositFiltration/DepositFiltration.fixture.tsx +6 -13
- package/src/ui-kit/BaseFiltration/shouldRenderBlock.ts +1 -1
package/bundle/bundle.umd.js
CHANGED
|
@@ -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]?.
|
|
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.
|
|
6109
|
+
const packageVersion = "0.14.157";
|
|
6110
6110
|
|
|
6111
6111
|
exports.Blocks = Blocks;
|
|
6112
6112
|
exports.ContentPage = ContentPage;
|