@redneckz/wildless-cms-uni-blocks 0.14.999 → 0.14.1000

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 (26) hide show
  1. package/bundle/bundle.umd.js +3 -3
  2. package/bundle/bundle.umd.min.js +1 -1
  3. package/dist/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js +1 -1
  4. package/dist/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js.map +1 -1
  5. package/dist/ui-kit/Calculator/renderCountInput.js +1 -1
  6. package/dist/ui-kit/Calculator/renderCountInput.js.map +1 -1
  7. package/lib/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js +1 -1
  8. package/lib/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js.map +1 -1
  9. package/lib/ui-kit/Calculator/renderCountInput.js +1 -1
  10. package/lib/ui-kit/Calculator/renderCountInput.js.map +1 -1
  11. package/mobile/bundle/bundle.umd.js +3 -3
  12. package/mobile/bundle/bundle.umd.min.js +1 -1
  13. package/mobile/dist/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js +1 -1
  14. package/mobile/dist/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js.map +1 -1
  15. package/mobile/dist/ui-kit/Calculator/renderCountInput.js +1 -1
  16. package/mobile/dist/ui-kit/Calculator/renderCountInput.js.map +1 -1
  17. package/mobile/lib/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js +1 -1
  18. package/mobile/lib/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js.map +1 -1
  19. package/mobile/lib/ui-kit/Calculator/renderCountInput.js +1 -1
  20. package/mobile/lib/ui-kit/Calculator/renderCountInput.js.map +1 -1
  21. package/mobile/src/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.tsx +5 -3
  22. package/mobile/src/ui-kit/Calculator/renderCountInput.tsx +1 -1
  23. package/package.json +1 -1
  24. package/src/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.tsx +5 -3
  25. package/src/icons/IconName.ts +4 -4
  26. package/src/ui-kit/Calculator/renderCountInput.tsx +1 -1
@@ -9146,7 +9146,7 @@
9146
9146
  const renderCreditParamsForm = (params, field) => (jsxs("div", { className: "space-y-lg sm:space-y-s", children: [params.isShowSalaryClient ? (jsx(Checkbox, { text: "\u041F\u043E\u043B\u0443\u0447\u0430\u044E \u0437\u0430\u0440\u043F\u043B\u0430\u0442\u0443 \u043D\u0430 \u0441\u0447\u0451\u0442 \u0432 \u0420\u043E\u0441\u0441\u0435\u043B\u044C\u0445\u043E\u0437\u0431\u0430\u043D\u043A\u0435", ...field('isSalaryClient'), value: params.isSalaryClient })) : null, params.isShowInsurance ? (jsx(Checkbox, { text: "\u041A\u043E\u043C\u043F\u043B\u0435\u043A\u0441\u043D\u0430\u044F \u0441\u0442\u0440\u0430\u0445\u043E\u0432\u0430\u044F \u0437\u0430\u0449\u0438\u0442\u0430", ...field('isInsurance'), value: params.isInsurance })) : null, jsx(Checkbox, { text: "\u041F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u0443\u044E \u0441\u0443\u043C\u043C\u0443", ...field('isExtraMoney'), value: params.isExtraMoney })] }));
9147
9147
 
9148
9148
  const DEFAULT_AMOUNT_STEP = 1;
9149
- const renderCountInput = ({ min = 0, max = 0, step = DEFAULT_AMOUNT_STEP, ...rest }) => (jsx(InputRange, { items: [`От ${min} шт`, `До ${max} шт`], step: step, ...rest }));
9149
+ const renderCountInput = ({ min = 0, max = 0, step = DEFAULT_AMOUNT_STEP, ...rest }) => (jsx(InputRange, { items: [`От ${min} шт`, `До ${max} шт`], step: step, min: min, max: max, ...rest }));
9150
9150
 
9151
9151
  const capitalize = (text) => text ? `${text.charAt(0).toUpperCase()}${text.slice(1)}` : '';
9152
9152
 
@@ -9228,7 +9228,7 @@
9228
9228
  };
9229
9229
 
9230
9230
  const renderRkoTariffsTableHeader = ({ params, className }) => {
9231
- return params ? (jsxs("div", { className: style(className), children: [jsx(Text, { size: "text-xs", font: "font-medium", className: "col-span-2", children: RKO_COMMISSIONS_TITLE_MAP['tariffName'] }), params.map((param, index) => (jsx("div", { children: jsx(Text, { size: "text-xs", font: "font-medium", children: RKO_COMMISSIONS_TITLE_MAP[param] }) }, index)))] })) : null;
9231
+ return params ? (jsxs("div", { className: style(className), children: [jsx("div", { children: jsx(Text, { size: "text-xs", font: "font-medium", className: "col-span-2", children: RKO_COMMISSIONS_TITLE_MAP['tariffName'] }) }), params.map((param, index) => (jsx("div", { children: jsx(Text, { size: "text-xs", font: "font-medium", children: RKO_COMMISSIONS_TITLE_MAP[param] }) }, index)))] })) : null;
9232
9232
  };
9233
9233
 
9234
9234
  const renderCommissionSum = (value, currency, className) => (jsxs(Text, { className: className, children: [value?.toLocaleString(), "\u00A0", (currency ?? RKO_DEFAULT_CURRENCY).text] }));
@@ -14138,7 +14138,7 @@
14138
14138
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
14139
14139
  });
14140
14140
 
14141
- const packageVersion = "0.14.998";
14141
+ const packageVersion = "0.14.999";
14142
14142
 
14143
14143
  exports.Blocks = Blocks;
14144
14144
  exports.ContentPage = ContentPage;