@redneckz/wildless-cms-uni-blocks 0.14.932 → 0.14.933

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.
@@ -5276,7 +5276,9 @@
5276
5276
 
5277
5277
  const MAX_LENGTH = 20;
5278
5278
  const latinPattern = /^[\u0041-\u005A\u0061-\u007A\s]+$/u;
5279
- const isValidLatin = (currentValue = '', secondValue = '') => latinPattern.test(currentValue) && secondValue.length < MAX_LENGTH;
5279
+ const isValidLatin = (currentValue = '', secondValue = '') => latinPattern.test(currentValue) &&
5280
+ secondValue.length < MAX_LENGTH &&
5281
+ currentValue.length + secondValue.length <= MAX_LENGTH;
5280
5282
  const REPLACER = {
5281
5283
  А: 'A',
5282
5284
  Б: 'B',
@@ -12228,7 +12230,7 @@
12228
12230
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
12229
12231
  });
12230
12232
 
12231
- const packageVersion = "0.14.931";
12233
+ const packageVersion = "0.14.932";
12232
12234
 
12233
12235
  exports.Blocks = Blocks;
12234
12236
  exports.ContentPage = ContentPage;