@redneckz/wildless-cms-uni-blocks 0.14.46 → 0.14.47

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.
@@ -0,0 +1,17 @@
1
+ export const description = 'v0.14.45';
2
+
3
+ const CALCULATOR_OLD_SCHEME_NAME = 'Калькулятора параметры.schema.json';
4
+ const CALCULATOR_NEW_SCHEME_NAME = 'Параметры калькулятора.schema.json';
5
+
6
+ export default (unitPath, content) => {
7
+ if (!content._schemaPath || !content._schemaPath.endsWith(CALCULATOR_OLD_SCHEME_NAME)) {
8
+ return content;
9
+ }
10
+
11
+ content._schemaPath = content._schemaPath.replace(
12
+ CALCULATOR_OLD_SCHEME_NAME,
13
+ CALCULATOR_NEW_SCHEME_NAME,
14
+ );
15
+
16
+ return { ...content };
17
+ };
@@ -5809,7 +5809,7 @@
5809
5809
  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" }) }));
5810
5810
  }
5811
5811
 
5812
- const packageVersion = "0.14.45";
5812
+ const packageVersion = "0.14.46";
5813
5813
 
5814
5814
  exports.Blocks = Blocks;
5815
5815
  exports.ContentPage = ContentPage;