@redneckz/wildless-cms-uni-blocks 0.14.597 → 0.14.598

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 (25) hide show
  1. package/bundle/bundle.umd.js +3 -5
  2. package/bundle/bundle.umd.min.js +1 -1
  3. package/dist/components/DepositFiltration/DepositFiltration.js +1 -1
  4. package/dist/components/DepositFiltration/DepositFiltration.js.map +1 -1
  5. package/dist/ui-kit/FormField/Fields/SexField.js +1 -3
  6. package/dist/ui-kit/FormField/Fields/SexField.js.map +1 -1
  7. package/lib/components/DepositFiltration/DepositFiltration.js +1 -1
  8. package/lib/components/DepositFiltration/DepositFiltration.js.map +1 -1
  9. package/lib/ui-kit/FormField/Fields/SexField.js +1 -3
  10. package/lib/ui-kit/FormField/Fields/SexField.js.map +1 -1
  11. package/mobile/bundle/bundle.umd.js +3 -5
  12. package/mobile/bundle/bundle.umd.min.js +1 -1
  13. package/mobile/dist/components/DepositFiltration/DepositFiltration.js +1 -1
  14. package/mobile/dist/components/DepositFiltration/DepositFiltration.js.map +1 -1
  15. package/mobile/dist/ui-kit/FormField/Fields/SexField.js +1 -3
  16. package/mobile/dist/ui-kit/FormField/Fields/SexField.js.map +1 -1
  17. package/mobile/lib/components/DepositFiltration/DepositFiltration.js +1 -1
  18. package/mobile/lib/components/DepositFiltration/DepositFiltration.js.map +1 -1
  19. package/mobile/lib/ui-kit/FormField/Fields/SexField.js +1 -3
  20. package/mobile/lib/ui-kit/FormField/Fields/SexField.js.map +1 -1
  21. package/mobile/src/components/DepositFiltration/DepositFiltration.tsx +1 -1
  22. package/mobile/src/ui-kit/FormField/Fields/SexField.tsx +8 -12
  23. package/package.json +1 -1
  24. package/src/components/DepositFiltration/DepositFiltration.tsx +1 -1
  25. package/src/ui-kit/FormField/Fields/SexField.tsx +8 -12
@@ -2215,9 +2215,7 @@
2215
2215
  { id: 'male', text: 'Мужской' },
2216
2216
  { id: 'female', text: 'Женский' },
2217
2217
  ];
2218
- const SexField = JSX(({ field, input }) => {
2219
- return (jsx("div", { children: jsx(RadioButtonGroupControl, { label: "\u041F\u043E\u043B", orientation: "horizontal", items: SEX_TYPES, ...getValidation(field('sex'), validatorObj.sex, input?.required) }) }));
2220
- });
2218
+ const SexField = JSX(({ field, input }) => (jsx(RadioButtonGroupControl, { label: "\u041F\u043E\u043B", orientation: "horizontal", items: SEX_TYPES, ...getValidation(field('sex'), validatorObj.sex, input?.required) })));
2221
2219
 
2222
2220
  const isPlaceholder = (_) => _ === '_';
2223
2221
  const isDigit = (_) => /\d/.test(_);
@@ -4783,7 +4781,7 @@
4783
4781
  page: rest.options?.page,
4784
4782
  normalize: (content) => ({ ...content, period: getPeriod(content) }),
4785
4783
  });
4786
- const rateRows = blocksWithProps.map(([, _]) => _?.paramsSource?.rateRows);
4784
+ const rateRows = blocksWithProps.map(([, _]) => _?.paramsSource?.rows?.[0]?.rates);
4787
4785
  const months = getMonths(rateRows);
4788
4786
  return (jsxs(BlockWrapper, { className: style('space-y-2xs', className), defaultPadding: "p-0", version: "transparent", ...rest, children: [jsx(FiltrationForm, { filtrationSchema: filtrationSchema, resetButton: resetButton, field: field, reset: reset, children: jsxs("div", { className: "@4xl:max-w-xs space-y-lg", children: [jsx(CurrencyInput, { label: sumInput?.title, min: DEFAULT_MIN_SUM, max: DEFAULT_MAX_SUM, ...field('sum', {
4789
4787
  parse: (min) => ({ min: Number(min), max: DEFAULT_MAX_SUM }),
@@ -7558,7 +7556,7 @@
7558
7556
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
7559
7557
  });
7560
7558
 
7561
- const packageVersion = "0.14.596";
7559
+ const packageVersion = "0.14.597";
7562
7560
 
7563
7561
  exports.Blocks = Blocks;
7564
7562
  exports.ContentPage = ContentPage;