@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.
- package/bundle/bundle.umd.js +3 -5
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/components/DepositFiltration/DepositFiltration.js +1 -1
- package/dist/components/DepositFiltration/DepositFiltration.js.map +1 -1
- package/dist/ui-kit/FormField/Fields/SexField.js +1 -3
- package/dist/ui-kit/FormField/Fields/SexField.js.map +1 -1
- package/lib/components/DepositFiltration/DepositFiltration.js +1 -1
- package/lib/components/DepositFiltration/DepositFiltration.js.map +1 -1
- package/lib/ui-kit/FormField/Fields/SexField.js +1 -3
- package/lib/ui-kit/FormField/Fields/SexField.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +3 -5
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/components/DepositFiltration/DepositFiltration.js +1 -1
- package/mobile/dist/components/DepositFiltration/DepositFiltration.js.map +1 -1
- package/mobile/dist/ui-kit/FormField/Fields/SexField.js +1 -3
- package/mobile/dist/ui-kit/FormField/Fields/SexField.js.map +1 -1
- package/mobile/lib/components/DepositFiltration/DepositFiltration.js +1 -1
- package/mobile/lib/components/DepositFiltration/DepositFiltration.js.map +1 -1
- package/mobile/lib/ui-kit/FormField/Fields/SexField.js +1 -3
- package/mobile/lib/ui-kit/FormField/Fields/SexField.js.map +1 -1
- package/mobile/src/components/DepositFiltration/DepositFiltration.tsx +1 -1
- package/mobile/src/ui-kit/FormField/Fields/SexField.tsx +8 -12
- package/package.json +1 -1
- package/src/components/DepositFiltration/DepositFiltration.tsx +1 -1
- package/src/ui-kit/FormField/Fields/SexField.tsx +8 -12
package/bundle/bundle.umd.js
CHANGED
|
@@ -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?.
|
|
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.
|
|
7559
|
+
const packageVersion = "0.14.597";
|
|
7562
7560
|
|
|
7563
7561
|
exports.Blocks = Blocks;
|
|
7564
7562
|
exports.ContentPage = ContentPage;
|