@redneckz/wildless-cms-uni-blocks 0.13.19 → 0.13.20

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.
Files changed (28) hide show
  1. package/bin/migration-scripts/0.13.14.js +1 -1
  2. package/bundle/bundle.umd.js +3 -3
  3. package/bundle/bundle.umd.min.js +1 -1
  4. package/dist/components/Footer/iconsMap.js +1 -1
  5. package/dist/components/Footer/iconsMap.js.map +1 -1
  6. package/dist/ui-kit/BaseFiltration/BaseFiltrationInner.js +1 -1
  7. package/dist/ui-kit/BaseFiltration/BaseFiltrationInner.js.map +1 -1
  8. package/lib/common.css +1 -1
  9. package/lib/components/Footer/iconsMap.js +1 -1
  10. package/lib/components/Footer/iconsMap.js.map +1 -1
  11. package/lib/ui-kit/BaseFiltration/BaseFiltrationInner.js +1 -1
  12. package/lib/ui-kit/BaseFiltration/BaseFiltrationInner.js.map +1 -1
  13. package/mobile/bundle/bundle.umd.js +3 -3
  14. package/mobile/bundle/bundle.umd.min.js +1 -1
  15. package/mobile/dist/components/Footer/iconsMap.js +1 -1
  16. package/mobile/dist/components/Footer/iconsMap.js.map +1 -1
  17. package/mobile/dist/ui-kit/BaseFiltration/BaseFiltrationInner.js +1 -1
  18. package/mobile/dist/ui-kit/BaseFiltration/BaseFiltrationInner.js.map +1 -1
  19. package/mobile/lib/common.css +1 -1
  20. package/mobile/lib/components/Footer/iconsMap.js +1 -1
  21. package/mobile/lib/components/Footer/iconsMap.js.map +1 -1
  22. package/mobile/lib/ui-kit/BaseFiltration/BaseFiltrationInner.js +1 -1
  23. package/mobile/lib/ui-kit/BaseFiltration/BaseFiltrationInner.js.map +1 -1
  24. package/mobile/src/components/Footer/iconsMap.ts +1 -1
  25. package/mobile/src/ui-kit/BaseFiltration/BaseFiltrationInner.tsx +1 -1
  26. package/package.json +1 -1
  27. package/src/components/Footer/iconsMap.ts +1 -1
  28. package/src/ui-kit/BaseFiltration/BaseFiltrationInner.tsx +1 -1
@@ -20,6 +20,6 @@ function adjustProductBlock(block) {
20
20
  }
21
21
 
22
22
  if (block.type === 'ProductBlock' && block?.content) {
23
- block.content.backwardButton = !!block.content?.backwardButton;
23
+ block.content.backwardButton = Boolean(block.content?.backwardButton?.href);
24
24
  }
25
25
  }
@@ -2778,7 +2778,7 @@
2778
2778
  label: 'Youtube',
2779
2779
  },
2780
2780
  {
2781
- origins: ['rutube.com'],
2781
+ origins: ['rutube.ru'],
2782
2782
  iconMapped: { icon: 'RutubeIcon' },
2783
2783
  label: 'Rutube',
2784
2784
  },
@@ -2959,7 +2959,7 @@
2959
2959
  };
2960
2960
 
2961
2961
  const ICONS = ['ArrowDownIcon', 'ArrowUpIcon'];
2962
- const resultsGridStyle = 'lg:grid lg:grid-cols-12 gap-2xs border-box';
2962
+ const resultsGridStyle = 'space-y-px lg:space-y-0 lg:grid lg:grid-cols-12 gap-2xs border-box';
2963
2963
  const BaseFiltrationInner = JSX(({ label = '', filtrationState = {}, topItemsCount = 0, block, notFound, ...rest }) => {
2964
2964
  const blocksToRender = block?.blocks?.filter((b) => checkShouldRenderBlock(filtrationState, b.content || {})) || [];
2965
2965
  const [visibleBlocks, hiddenBlocks] = topItemsCount > 0
@@ -5313,7 +5313,7 @@
5313
5313
  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" }) }));
5314
5314
  }
5315
5315
 
5316
- const packageVersion = "0.13.19";
5316
+ const packageVersion = "0.13.20";
5317
5317
 
5318
5318
  exports.Blocks = Blocks;
5319
5319
  exports.ContentPage = ContentPage;