@redneckz/wildless-cms-uni-blocks 0.14.180 → 0.14.181

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.
@@ -4617,7 +4617,9 @@
4617
4617
  return '';
4618
4618
  }
4619
4619
  const index = href.lastIndexOf('.');
4620
- return index !== -1 ? href.substring(index + 1) : '';
4620
+ const regexp = new RegExp(/\/(.*)/);
4621
+ const docFormat = index !== -1 ? href.substring(index + 1) : '';
4622
+ return docFormat.includes('/') ? docFormat.replace(regexp, '') : docFormat;
4621
4623
  };
4622
4624
 
4623
4625
  const MobileAppTile = JSX(({ className, padding, align = 'text-left', buttons = [], description, image, items, qr, additionalDescription = '', title = 'Мобильное приложение', version = 'primary', ...rest }) => {
@@ -6004,7 +6006,7 @@
6004
6006
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
6005
6007
  });
6006
6008
 
6007
- const packageVersion = "0.14.179";
6009
+ const packageVersion = "0.14.180";
6008
6010
 
6009
6011
  exports.Blocks = Blocks;
6010
6012
  exports.ContentPage = ContentPage;