@redneckz/wildless-cms-uni-blocks 0.3.57 → 0.3.58

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 (446) hide show
  1. package/bundle/blocks.schema.json +1 -1
  2. package/bundle/bundle.umd.js +341 -82
  3. package/bundle/bundle.umd.min.js +1 -1
  4. package/cosmos-static/icons/SafeIcon.svg +1 -1
  5. package/dist/components/Blocks.d.ts +1 -1
  6. package/dist/components/Blocks.js +2 -2
  7. package/dist/components/Blocks.js.map +1 -1
  8. package/dist/components/Calculator/BonusCalculatorForm.d.ts +5 -0
  9. package/dist/components/Calculator/BonusCalculatorForm.js +40 -0
  10. package/dist/components/Calculator/BonusCalculatorForm.js.map +1 -0
  11. package/dist/components/Calculator/Calculator.d.ts +5 -0
  12. package/dist/components/Calculator/Calculator.js +46 -0
  13. package/dist/components/Calculator/Calculator.js.map +1 -0
  14. package/dist/components/Calculator/CalculatorContent.d.ts +110 -0
  15. package/dist/components/{ProductGalleryGreen/ProductGalleryGreenContent.js → Calculator/CalculatorContent.js} +1 -1
  16. package/dist/components/Calculator/CalculatorContent.js.map +1 -0
  17. package/dist/components/Calculator/CalculatorValueBlock.d.ts +8 -0
  18. package/dist/components/Calculator/CalculatorValueBlock.js +9 -0
  19. package/dist/components/Calculator/CalculatorValueBlock.js.map +1 -0
  20. package/dist/components/Calculator/CreditCalculatorForm.d.ts +5 -0
  21. package/dist/components/Calculator/CreditCalculatorForm.js +51 -0
  22. package/dist/components/Calculator/CreditCalculatorForm.js.map +1 -0
  23. package/dist/components/Calculator/DepositCalculatorForm.d.ts +5 -0
  24. package/dist/components/Calculator/DepositCalculatorForm.js +41 -0
  25. package/dist/components/Calculator/DepositCalculatorForm.js.map +1 -0
  26. package/dist/components/Calculator/EmbeddableCalcBlocks.d.ts +11 -0
  27. package/dist/components/Calculator/EmbeddableCalcBlocks.js +13 -0
  28. package/dist/components/Calculator/EmbeddableCalcBlocks.js.map +1 -0
  29. package/dist/components/Calculator/MortgageCalculatorForm.d.ts +5 -0
  30. package/dist/components/Calculator/MortgageCalculatorForm.js +49 -0
  31. package/dist/components/Calculator/MortgageCalculatorForm.js.map +1 -0
  32. package/dist/components/Calculator/constants.d.ts +7 -0
  33. package/dist/components/Calculator/constants.js +10 -0
  34. package/dist/components/Calculator/constants.js.map +1 -0
  35. package/dist/components/Calculator/getCalculatorParams.d.ts +7 -0
  36. package/dist/components/Calculator/getCalculatorParams.js +11 -0
  37. package/dist/components/Calculator/getCalculatorParams.js.map +1 -0
  38. package/dist/components/Calculator/getCreditRate.d.ts +7 -0
  39. package/dist/components/Calculator/getCreditRate.js +13 -0
  40. package/dist/components/Calculator/getCreditRate.js.map +1 -0
  41. package/dist/components/Calculator/getDefaultMonths.d.ts +2 -0
  42. package/dist/components/Calculator/getDefaultMonths.js +8 -0
  43. package/dist/components/Calculator/getDefaultMonths.js.map +1 -0
  44. package/dist/components/Calculator/getDefaultSum.d.ts +2 -0
  45. package/dist/components/Calculator/getDefaultSum.js +8 -0
  46. package/dist/components/Calculator/getDefaultSum.js.map +1 -0
  47. package/dist/components/Calculator/getMonthlyPayment.d.ts +11 -0
  48. package/dist/components/Calculator/getMonthlyPayment.js +19 -0
  49. package/dist/components/Calculator/getMonthlyPayment.js.map +1 -0
  50. package/dist/components/Calculator/renderButtonSection.d.ts +1 -0
  51. package/dist/components/Calculator/renderButtonSection.js +9 -0
  52. package/dist/components/Calculator/renderButtonSection.js.map +1 -0
  53. package/dist/components/Calculator/renderCalculatorList.d.ts +10 -0
  54. package/dist/components/Calculator/renderCalculatorList.js +17 -0
  55. package/dist/components/Calculator/renderCalculatorList.js.map +1 -0
  56. package/dist/components/Calculator/renderInitialFeeInput.d.ts +10 -0
  57. package/dist/components/Calculator/renderInitialFeeInput.js +18 -0
  58. package/dist/components/Calculator/renderInitialFeeInput.js.map +1 -0
  59. package/dist/components/Calculator/renderMonthsInput.d.ts +11 -0
  60. package/dist/components/Calculator/renderMonthsInput.js +15 -0
  61. package/dist/components/Calculator/renderMonthsInput.js.map +1 -0
  62. package/dist/components/Calculator/renderProposal.d.ts +1 -0
  63. package/dist/components/Calculator/renderProposal.js +10 -0
  64. package/dist/components/Calculator/renderProposal.js.map +1 -0
  65. package/dist/components/Calculator/renderProposalMortgage.d.ts +7 -0
  66. package/dist/components/Calculator/renderProposalMortgage.js +9 -0
  67. package/dist/components/Calculator/renderProposalMortgage.js.map +1 -0
  68. package/dist/components/Calculator/renderRate.d.ts +8 -0
  69. package/dist/components/Calculator/renderRate.js +9 -0
  70. package/dist/components/Calculator/renderRate.js.map +1 -0
  71. package/dist/components/Calculator/renderRealEstateValue.d.ts +10 -0
  72. package/dist/components/Calculator/renderRealEstateValue.js +15 -0
  73. package/dist/components/Calculator/renderRealEstateValue.js.map +1 -0
  74. package/dist/components/Calculator/renderWantedSumInput.d.ts +13 -0
  75. package/dist/components/Calculator/renderWantedSumInput.js +19 -0
  76. package/dist/components/Calculator/renderWantedSumInput.js.map +1 -0
  77. package/dist/components/ContentPage/ContentPage.d.ts +1 -1
  78. package/dist/components/ProductGallery/ProductGallery.js +37 -8
  79. package/dist/components/ProductGallery/ProductGallery.js.map +1 -1
  80. package/dist/components/ProductGallery/ProductGalleryContent.d.ts +3 -6
  81. package/dist/types.d.ts +1 -0
  82. package/dist/ui-kit/BlocksList/renderBlocksList.d.ts +0 -1
  83. package/dist/ui-kit/BlocksList/renderBlocksList.js +2 -3
  84. package/dist/ui-kit/BlocksList/renderBlocksList.js.map +1 -1
  85. package/dist/ui-kit/Checkbox/Checkbox.js +1 -1
  86. package/dist/ui-kit/Checkbox/Checkbox.js.map +1 -1
  87. package/dist/ui-kit/InputRange/InputRange.js +2 -2
  88. package/dist/ui-kit/InputRange/InputRange.js.map +1 -1
  89. package/dist/ui-kit/InputRange/InputRangeProps.d.ts +2 -1
  90. package/dist/ui-kit/Tabs/TabsProps.d.ts +2 -1
  91. package/lib/common.css +1 -1
  92. package/lib/components/Blocks.d.ts +1 -1
  93. package/lib/components/Blocks.js +2 -2
  94. package/lib/components/Blocks.js.map +1 -1
  95. package/lib/components/Calculator/BonusCalculatorForm.d.ts +5 -0
  96. package/lib/components/Calculator/BonusCalculatorForm.js +38 -0
  97. package/lib/components/Calculator/BonusCalculatorForm.js.map +1 -0
  98. package/lib/components/Calculator/Calculator.d.ts +5 -0
  99. package/lib/components/{ProductGalleryGreen/ProductGalleryGreen.fixture.d.ts → Calculator/Calculator.fixture.d.ts} +1 -1
  100. package/lib/components/Calculator/Calculator.js +44 -0
  101. package/lib/components/Calculator/Calculator.js.map +1 -0
  102. package/lib/components/Calculator/CalculatorContent.d.ts +110 -0
  103. package/lib/components/Calculator/CalculatorContent.js +2 -0
  104. package/lib/components/Calculator/CalculatorContent.js.map +1 -0
  105. package/lib/components/Calculator/CalculatorValueBlock.d.ts +8 -0
  106. package/lib/components/Calculator/CalculatorValueBlock.js +7 -0
  107. package/lib/components/Calculator/CalculatorValueBlock.js.map +1 -0
  108. package/lib/components/Calculator/CreditCalculatorForm.d.ts +5 -0
  109. package/lib/components/Calculator/CreditCalculatorForm.js +49 -0
  110. package/lib/components/Calculator/CreditCalculatorForm.js.map +1 -0
  111. package/lib/components/Calculator/DepositCalculatorForm.d.ts +5 -0
  112. package/lib/components/Calculator/DepositCalculatorForm.js +39 -0
  113. package/lib/components/Calculator/DepositCalculatorForm.js.map +1 -0
  114. package/lib/components/Calculator/EmbeddableCalcBlocks.d.ts +11 -0
  115. package/lib/components/Calculator/EmbeddableCalcBlocks.js +11 -0
  116. package/lib/components/Calculator/EmbeddableCalcBlocks.js.map +1 -0
  117. package/lib/components/Calculator/MortgageCalculatorForm.d.ts +5 -0
  118. package/lib/components/Calculator/MortgageCalculatorForm.js +47 -0
  119. package/lib/components/Calculator/MortgageCalculatorForm.js.map +1 -0
  120. package/lib/components/Calculator/constants.d.ts +7 -0
  121. package/lib/components/Calculator/constants.js +8 -0
  122. package/lib/components/Calculator/constants.js.map +1 -0
  123. package/lib/components/Calculator/getCalculatorParams.d.ts +7 -0
  124. package/lib/components/Calculator/getCalculatorParams.js +8 -0
  125. package/lib/components/Calculator/getCalculatorParams.js.map +1 -0
  126. package/lib/components/Calculator/getCreditRate.d.ts +7 -0
  127. package/lib/components/Calculator/getCreditRate.js +10 -0
  128. package/lib/components/Calculator/getCreditRate.js.map +1 -0
  129. package/lib/components/Calculator/getDefaultMonths.d.ts +2 -0
  130. package/lib/components/Calculator/getDefaultMonths.js +5 -0
  131. package/lib/components/Calculator/getDefaultMonths.js.map +1 -0
  132. package/lib/components/Calculator/getDefaultSum.d.ts +2 -0
  133. package/lib/components/Calculator/getDefaultSum.js +5 -0
  134. package/lib/components/Calculator/getDefaultSum.js.map +1 -0
  135. package/lib/components/Calculator/getMonthlyPayment.d.ts +11 -0
  136. package/lib/components/Calculator/getMonthlyPayment.js +16 -0
  137. package/lib/components/Calculator/getMonthlyPayment.js.map +1 -0
  138. package/lib/components/Calculator/renderButtonSection.d.ts +1 -0
  139. package/lib/components/Calculator/renderButtonSection.js +6 -0
  140. package/lib/components/Calculator/renderButtonSection.js.map +1 -0
  141. package/lib/components/Calculator/renderCalculatorList.d.ts +10 -0
  142. package/lib/components/Calculator/renderCalculatorList.js +14 -0
  143. package/lib/components/Calculator/renderCalculatorList.js.map +1 -0
  144. package/lib/components/Calculator/renderInitialFeeInput.d.ts +10 -0
  145. package/lib/components/Calculator/renderInitialFeeInput.js +15 -0
  146. package/lib/components/Calculator/renderInitialFeeInput.js.map +1 -0
  147. package/lib/components/Calculator/renderMonthsInput.d.ts +11 -0
  148. package/lib/components/Calculator/renderMonthsInput.js +12 -0
  149. package/lib/components/Calculator/renderMonthsInput.js.map +1 -0
  150. package/lib/components/Calculator/renderProposal.d.ts +1 -0
  151. package/lib/components/Calculator/renderProposal.js +7 -0
  152. package/lib/components/Calculator/renderProposal.js.map +1 -0
  153. package/lib/components/Calculator/renderProposalMortgage.d.ts +7 -0
  154. package/lib/components/Calculator/renderProposalMortgage.js +6 -0
  155. package/lib/components/Calculator/renderProposalMortgage.js.map +1 -0
  156. package/lib/components/Calculator/renderRate.d.ts +8 -0
  157. package/lib/components/Calculator/renderRate.js +6 -0
  158. package/lib/components/Calculator/renderRate.js.map +1 -0
  159. package/lib/components/Calculator/renderRealEstateValue.d.ts +10 -0
  160. package/lib/components/Calculator/renderRealEstateValue.js +12 -0
  161. package/lib/components/Calculator/renderRealEstateValue.js.map +1 -0
  162. package/lib/components/Calculator/renderWantedSumInput.d.ts +13 -0
  163. package/lib/components/Calculator/renderWantedSumInput.js +16 -0
  164. package/lib/components/Calculator/renderWantedSumInput.js.map +1 -0
  165. package/lib/components/ContentPage/ContentPage.d.ts +1 -1
  166. package/lib/components/ProductGallery/ProductGallery.fixture.d.ts +1 -0
  167. package/lib/components/ProductGallery/ProductGallery.js +37 -8
  168. package/lib/components/ProductGallery/ProductGallery.js.map +1 -1
  169. package/lib/components/ProductGallery/ProductGalleryContent.d.ts +3 -6
  170. package/lib/types.d.ts +1 -0
  171. package/lib/ui-kit/BlocksList/renderBlocksList.d.ts +0 -1
  172. package/lib/ui-kit/BlocksList/renderBlocksList.js +1 -1
  173. package/lib/ui-kit/BlocksList/renderBlocksList.js.map +1 -1
  174. package/lib/ui-kit/Checkbox/Checkbox.js +1 -1
  175. package/lib/ui-kit/Checkbox/Checkbox.js.map +1 -1
  176. package/lib/ui-kit/InputRange/InputRange.js +2 -2
  177. package/lib/ui-kit/InputRange/InputRange.js.map +1 -1
  178. package/lib/ui-kit/InputRange/InputRangeProps.d.ts +2 -1
  179. package/lib/ui-kit/Tabs/TabsProps.d.ts +2 -1
  180. package/mobile/dist/components/Calculator/BonusCalculatorForm.d.ts +5 -0
  181. package/mobile/dist/components/Calculator/BonusCalculatorForm.js +40 -0
  182. package/mobile/dist/components/Calculator/BonusCalculatorForm.js.map +1 -0
  183. package/mobile/dist/components/Calculator/Calculator.d.ts +5 -0
  184. package/mobile/dist/components/Calculator/Calculator.js +46 -0
  185. package/mobile/dist/components/Calculator/Calculator.js.map +1 -0
  186. package/mobile/dist/components/Calculator/CalculatorContent.d.ts +110 -0
  187. package/mobile/dist/components/{ProductGalleryGreen/ProductGalleryGreenContent.js → Calculator/CalculatorContent.js} +1 -1
  188. package/mobile/dist/components/Calculator/CalculatorContent.js.map +1 -0
  189. package/mobile/dist/components/Calculator/CalculatorValueBlock.d.ts +8 -0
  190. package/mobile/dist/components/Calculator/CalculatorValueBlock.js +9 -0
  191. package/mobile/dist/components/Calculator/CalculatorValueBlock.js.map +1 -0
  192. package/mobile/dist/components/Calculator/CreditCalculatorForm.d.ts +5 -0
  193. package/mobile/dist/components/Calculator/CreditCalculatorForm.js +51 -0
  194. package/mobile/dist/components/Calculator/CreditCalculatorForm.js.map +1 -0
  195. package/mobile/dist/components/Calculator/DepositCalculatorForm.d.ts +5 -0
  196. package/mobile/dist/components/Calculator/DepositCalculatorForm.js +41 -0
  197. package/mobile/dist/components/Calculator/DepositCalculatorForm.js.map +1 -0
  198. package/mobile/dist/components/Calculator/EmbeddableCalcBlocks.d.ts +11 -0
  199. package/mobile/dist/components/Calculator/EmbeddableCalcBlocks.js +13 -0
  200. package/mobile/dist/components/Calculator/EmbeddableCalcBlocks.js.map +1 -0
  201. package/mobile/dist/components/Calculator/MortgageCalculatorForm.d.ts +5 -0
  202. package/mobile/dist/components/Calculator/MortgageCalculatorForm.js +49 -0
  203. package/mobile/dist/components/Calculator/MortgageCalculatorForm.js.map +1 -0
  204. package/mobile/dist/components/Calculator/constants.d.ts +7 -0
  205. package/mobile/dist/components/Calculator/constants.js +10 -0
  206. package/mobile/dist/components/Calculator/constants.js.map +1 -0
  207. package/mobile/dist/components/Calculator/getCalculatorParams.d.ts +7 -0
  208. package/mobile/dist/components/Calculator/getCalculatorParams.js +11 -0
  209. package/mobile/dist/components/Calculator/getCalculatorParams.js.map +1 -0
  210. package/mobile/dist/components/Calculator/getCreditRate.d.ts +7 -0
  211. package/mobile/dist/components/Calculator/getCreditRate.js +13 -0
  212. package/mobile/dist/components/Calculator/getCreditRate.js.map +1 -0
  213. package/mobile/dist/components/Calculator/getDefaultMonths.d.ts +2 -0
  214. package/mobile/dist/components/Calculator/getDefaultMonths.js +8 -0
  215. package/mobile/dist/components/Calculator/getDefaultMonths.js.map +1 -0
  216. package/mobile/dist/components/Calculator/getDefaultSum.d.ts +2 -0
  217. package/mobile/dist/components/Calculator/getDefaultSum.js +8 -0
  218. package/mobile/dist/components/Calculator/getDefaultSum.js.map +1 -0
  219. package/mobile/dist/components/Calculator/getMonthlyPayment.d.ts +11 -0
  220. package/mobile/dist/components/Calculator/getMonthlyPayment.js +19 -0
  221. package/mobile/dist/components/Calculator/getMonthlyPayment.js.map +1 -0
  222. package/mobile/dist/components/Calculator/renderButtonSection.d.ts +1 -0
  223. package/mobile/dist/components/Calculator/renderButtonSection.js +9 -0
  224. package/mobile/dist/components/Calculator/renderButtonSection.js.map +1 -0
  225. package/mobile/dist/components/Calculator/renderCalculatorList.d.ts +10 -0
  226. package/mobile/dist/components/Calculator/renderCalculatorList.js +17 -0
  227. package/mobile/dist/components/Calculator/renderCalculatorList.js.map +1 -0
  228. package/mobile/dist/components/Calculator/renderInitialFeeInput.d.ts +10 -0
  229. package/mobile/dist/components/Calculator/renderInitialFeeInput.js +18 -0
  230. package/mobile/dist/components/Calculator/renderInitialFeeInput.js.map +1 -0
  231. package/mobile/dist/components/Calculator/renderMonthsInput.d.ts +11 -0
  232. package/mobile/dist/components/Calculator/renderMonthsInput.js +15 -0
  233. package/mobile/dist/components/Calculator/renderMonthsInput.js.map +1 -0
  234. package/mobile/dist/components/Calculator/renderProposal.d.ts +1 -0
  235. package/mobile/dist/components/Calculator/renderProposal.js +10 -0
  236. package/mobile/dist/components/Calculator/renderProposal.js.map +1 -0
  237. package/mobile/dist/components/Calculator/renderProposalMortgage.d.ts +7 -0
  238. package/mobile/dist/components/Calculator/renderProposalMortgage.js +9 -0
  239. package/mobile/dist/components/Calculator/renderProposalMortgage.js.map +1 -0
  240. package/mobile/dist/components/Calculator/renderRate.d.ts +8 -0
  241. package/mobile/dist/components/Calculator/renderRate.js +9 -0
  242. package/mobile/dist/components/Calculator/renderRate.js.map +1 -0
  243. package/mobile/dist/components/Calculator/renderRealEstateValue.d.ts +10 -0
  244. package/mobile/dist/components/Calculator/renderRealEstateValue.js +15 -0
  245. package/mobile/dist/components/Calculator/renderRealEstateValue.js.map +1 -0
  246. package/mobile/dist/components/Calculator/renderWantedSumInput.d.ts +13 -0
  247. package/mobile/dist/components/Calculator/renderWantedSumInput.js +19 -0
  248. package/mobile/dist/components/Calculator/renderWantedSumInput.js.map +1 -0
  249. package/mobile/dist/components/ContentPage/ContentPage.d.ts +1 -1
  250. package/mobile/dist/components/ProductGallery/ProductGalleryContent.d.ts +3 -6
  251. package/mobile/dist/types.d.ts +1 -0
  252. package/mobile/dist/ui-kit/BlocksList/renderBlocksList.d.ts +0 -1
  253. package/mobile/dist/ui-kit/BlocksList/renderBlocksList.js +2 -3
  254. package/mobile/dist/ui-kit/BlocksList/renderBlocksList.js.map +1 -1
  255. package/mobile/dist/ui-kit/Checkbox/Checkbox.js +1 -1
  256. package/mobile/dist/ui-kit/Checkbox/Checkbox.js.map +1 -1
  257. package/mobile/dist/ui-kit/InputRange/InputRange.js +2 -2
  258. package/mobile/dist/ui-kit/InputRange/InputRange.js.map +1 -1
  259. package/mobile/dist/ui-kit/InputRange/InputRangeProps.d.ts +2 -1
  260. package/mobile/dist/ui-kit/Tabs/TabsProps.d.ts +2 -1
  261. package/mobile/lib/components/Calculator/BonusCalculatorForm.d.ts +5 -0
  262. package/mobile/lib/components/Calculator/BonusCalculatorForm.js +38 -0
  263. package/mobile/lib/components/Calculator/BonusCalculatorForm.js.map +1 -0
  264. package/mobile/lib/components/Calculator/Calculator.d.ts +5 -0
  265. package/mobile/lib/components/Calculator/Calculator.js +44 -0
  266. package/mobile/lib/components/Calculator/Calculator.js.map +1 -0
  267. package/mobile/lib/components/Calculator/CalculatorContent.d.ts +110 -0
  268. package/mobile/lib/components/Calculator/CalculatorContent.js +2 -0
  269. package/mobile/lib/components/Calculator/CalculatorContent.js.map +1 -0
  270. package/mobile/lib/components/Calculator/CalculatorValueBlock.d.ts +8 -0
  271. package/mobile/lib/components/Calculator/CalculatorValueBlock.js +7 -0
  272. package/mobile/lib/components/Calculator/CalculatorValueBlock.js.map +1 -0
  273. package/mobile/lib/components/Calculator/CreditCalculatorForm.d.ts +5 -0
  274. package/mobile/lib/components/Calculator/CreditCalculatorForm.js +49 -0
  275. package/mobile/lib/components/Calculator/CreditCalculatorForm.js.map +1 -0
  276. package/mobile/lib/components/Calculator/DepositCalculatorForm.d.ts +5 -0
  277. package/mobile/lib/components/Calculator/DepositCalculatorForm.js +39 -0
  278. package/mobile/lib/components/Calculator/DepositCalculatorForm.js.map +1 -0
  279. package/mobile/lib/components/Calculator/EmbeddableCalcBlocks.d.ts +11 -0
  280. package/mobile/lib/components/Calculator/EmbeddableCalcBlocks.js +11 -0
  281. package/mobile/lib/components/Calculator/EmbeddableCalcBlocks.js.map +1 -0
  282. package/mobile/lib/components/Calculator/MortgageCalculatorForm.d.ts +5 -0
  283. package/mobile/lib/components/Calculator/MortgageCalculatorForm.js +47 -0
  284. package/mobile/lib/components/Calculator/MortgageCalculatorForm.js.map +1 -0
  285. package/mobile/lib/components/Calculator/constants.d.ts +7 -0
  286. package/mobile/lib/components/Calculator/constants.js +8 -0
  287. package/mobile/lib/components/Calculator/constants.js.map +1 -0
  288. package/mobile/lib/components/Calculator/getCalculatorParams.d.ts +7 -0
  289. package/mobile/lib/components/Calculator/getCalculatorParams.js +8 -0
  290. package/mobile/lib/components/Calculator/getCalculatorParams.js.map +1 -0
  291. package/mobile/lib/components/Calculator/getCreditRate.d.ts +7 -0
  292. package/mobile/lib/components/Calculator/getCreditRate.js +10 -0
  293. package/mobile/lib/components/Calculator/getCreditRate.js.map +1 -0
  294. package/mobile/lib/components/Calculator/getDefaultMonths.d.ts +2 -0
  295. package/mobile/lib/components/Calculator/getDefaultMonths.js +5 -0
  296. package/mobile/lib/components/Calculator/getDefaultMonths.js.map +1 -0
  297. package/mobile/lib/components/Calculator/getDefaultSum.d.ts +2 -0
  298. package/mobile/lib/components/Calculator/getDefaultSum.js +5 -0
  299. package/mobile/lib/components/Calculator/getDefaultSum.js.map +1 -0
  300. package/mobile/lib/components/Calculator/getMonthlyPayment.d.ts +11 -0
  301. package/mobile/lib/components/Calculator/getMonthlyPayment.js +16 -0
  302. package/mobile/lib/components/Calculator/getMonthlyPayment.js.map +1 -0
  303. package/mobile/lib/components/Calculator/renderButtonSection.d.ts +1 -0
  304. package/mobile/lib/components/Calculator/renderButtonSection.js +6 -0
  305. package/mobile/lib/components/Calculator/renderButtonSection.js.map +1 -0
  306. package/mobile/lib/components/Calculator/renderCalculatorList.d.ts +10 -0
  307. package/mobile/lib/components/Calculator/renderCalculatorList.js +14 -0
  308. package/mobile/lib/components/Calculator/renderCalculatorList.js.map +1 -0
  309. package/mobile/lib/components/Calculator/renderInitialFeeInput.d.ts +10 -0
  310. package/mobile/lib/components/Calculator/renderInitialFeeInput.js +15 -0
  311. package/mobile/lib/components/Calculator/renderInitialFeeInput.js.map +1 -0
  312. package/mobile/lib/components/Calculator/renderMonthsInput.d.ts +11 -0
  313. package/mobile/lib/components/Calculator/renderMonthsInput.js +12 -0
  314. package/mobile/lib/components/Calculator/renderMonthsInput.js.map +1 -0
  315. package/mobile/lib/components/Calculator/renderProposal.d.ts +1 -0
  316. package/mobile/lib/components/Calculator/renderProposal.js +7 -0
  317. package/mobile/lib/components/Calculator/renderProposal.js.map +1 -0
  318. package/mobile/lib/components/Calculator/renderProposalMortgage.d.ts +7 -0
  319. package/mobile/lib/components/Calculator/renderProposalMortgage.js +6 -0
  320. package/mobile/lib/components/Calculator/renderProposalMortgage.js.map +1 -0
  321. package/mobile/lib/components/Calculator/renderRate.d.ts +8 -0
  322. package/mobile/lib/components/Calculator/renderRate.js +6 -0
  323. package/mobile/lib/components/Calculator/renderRate.js.map +1 -0
  324. package/mobile/lib/components/Calculator/renderRealEstateValue.d.ts +10 -0
  325. package/mobile/lib/components/Calculator/renderRealEstateValue.js +12 -0
  326. package/mobile/lib/components/Calculator/renderRealEstateValue.js.map +1 -0
  327. package/mobile/lib/components/Calculator/renderWantedSumInput.d.ts +13 -0
  328. package/mobile/lib/components/Calculator/renderWantedSumInput.js +16 -0
  329. package/mobile/lib/components/Calculator/renderWantedSumInput.js.map +1 -0
  330. package/mobile/lib/components/ContentPage/ContentPage.d.ts +1 -1
  331. package/mobile/lib/components/ProductGallery/ProductGalleryContent.d.ts +3 -6
  332. package/mobile/lib/types.d.ts +1 -0
  333. package/mobile/lib/ui-kit/BlocksList/renderBlocksList.d.ts +0 -1
  334. package/mobile/lib/ui-kit/BlocksList/renderBlocksList.js +1 -1
  335. package/mobile/lib/ui-kit/BlocksList/renderBlocksList.js.map +1 -1
  336. package/mobile/lib/ui-kit/Checkbox/Checkbox.js +1 -1
  337. package/mobile/lib/ui-kit/Checkbox/Checkbox.js.map +1 -1
  338. package/mobile/lib/ui-kit/InputRange/InputRange.js +2 -2
  339. package/mobile/lib/ui-kit/InputRange/InputRange.js.map +1 -1
  340. package/mobile/lib/ui-kit/InputRange/InputRangeProps.d.ts +2 -1
  341. package/mobile/lib/ui-kit/Tabs/TabsProps.d.ts +2 -1
  342. package/mobile/src/common.css +7 -0
  343. package/mobile/src/components/Calculator/BonusCalculatorForm.tsx +71 -0
  344. package/mobile/src/components/Calculator/Calculator.tsx +141 -0
  345. package/mobile/src/components/Calculator/CalculatorContent.ts +134 -0
  346. package/mobile/src/components/Calculator/CalculatorValueBlock.tsx +25 -0
  347. package/mobile/src/components/Calculator/CreditCalculatorForm.tsx +99 -0
  348. package/mobile/src/components/Calculator/DepositCalculatorForm.tsx +69 -0
  349. package/mobile/src/components/Calculator/EmbeddableCalcBlocks.tsx +17 -0
  350. package/mobile/src/components/Calculator/MortgageCalculatorForm.tsx +88 -0
  351. package/mobile/src/components/Calculator/constants.ts +8 -0
  352. package/mobile/src/components/Calculator/getCalculatorParams.ts +16 -0
  353. package/mobile/src/components/Calculator/getCreditRate.ts +18 -0
  354. package/mobile/src/components/Calculator/getDefaultMonths.ts +7 -0
  355. package/mobile/src/components/Calculator/getDefaultSum.ts +7 -0
  356. package/mobile/src/components/Calculator/getMonthlyPayment.ts +32 -0
  357. package/mobile/src/components/Calculator/renderButtonSection.tsx +7 -0
  358. package/mobile/src/components/Calculator/renderCalculatorList.tsx +43 -0
  359. package/mobile/src/components/Calculator/renderInitialFeeInput.tsx +37 -0
  360. package/mobile/src/components/Calculator/renderMonthsInput.tsx +34 -0
  361. package/mobile/src/components/Calculator/renderProposal.tsx +14 -0
  362. package/mobile/src/components/Calculator/renderProposalMortgage.tsx +17 -0
  363. package/mobile/src/components/Calculator/renderRate.tsx +23 -0
  364. package/mobile/src/components/Calculator/renderRealEstateValue.tsx +33 -0
  365. package/mobile/src/components/Calculator/renderWantedSumInput.tsx +49 -0
  366. package/mobile/src/components/ContentPage/ContentPage.page.json +9 -8
  367. package/mobile/src/components/ContentPage/ContentPage.tsx +2 -2
  368. package/mobile/src/components/ProductGallery/ProductGallery.example.json +8 -10
  369. package/mobile/src/components/ProductGallery/ProductGalleryContent.ts +3 -6
  370. package/mobile/src/icons/SafeIcon.svg +7 -1
  371. package/mobile/src/types.ts +2 -0
  372. package/mobile/src/ui-kit/BlocksList/renderBlocksList.tsx +1 -1
  373. package/mobile/src/ui-kit/Checkbox/Checkbox.tsx +1 -3
  374. package/mobile/src/ui-kit/InputRange/InputRange.tsx +7 -9
  375. package/mobile/src/ui-kit/InputRange/InputRangeProps.ts +3 -1
  376. package/mobile/src/ui-kit/Tabs/TabsProps.ts +2 -1
  377. package/package.json +1 -1
  378. package/src/common.css +7 -0
  379. package/src/components/Blocks.ts +2 -2
  380. package/src/components/Calculator/BonusCalculatorForm.tsx +71 -0
  381. package/src/components/Calculator/Calculator.fixture.tsx +131 -0
  382. package/src/components/Calculator/Calculator.tsx +141 -0
  383. package/src/components/Calculator/CalculatorContent.ts +134 -0
  384. package/src/components/Calculator/CalculatorValueBlock.tsx +25 -0
  385. package/src/components/Calculator/CreditCalculatorForm.tsx +99 -0
  386. package/src/components/Calculator/DepositCalculatorForm.tsx +69 -0
  387. package/src/components/Calculator/EmbeddableCalcBlocks.tsx +17 -0
  388. package/src/components/Calculator/MortgageCalculatorForm.tsx +88 -0
  389. package/src/components/Calculator/constants.ts +8 -0
  390. package/src/components/Calculator/getCalculatorParams.ts +16 -0
  391. package/src/components/Calculator/getCreditRate.ts +18 -0
  392. package/src/components/Calculator/getDefaultMonths.ts +7 -0
  393. package/src/components/Calculator/getDefaultSum.ts +7 -0
  394. package/src/components/Calculator/getMonthlyPayment.ts +32 -0
  395. package/src/components/Calculator/renderButtonSection.tsx +7 -0
  396. package/src/components/Calculator/renderCalculatorList.tsx +43 -0
  397. package/src/components/Calculator/renderInitialFeeInput.tsx +37 -0
  398. package/src/components/Calculator/renderMonthsInput.tsx +34 -0
  399. package/src/components/Calculator/renderProposal.tsx +14 -0
  400. package/src/components/Calculator/renderProposalMortgage.tsx +17 -0
  401. package/src/components/Calculator/renderRate.tsx +23 -0
  402. package/src/components/Calculator/renderRealEstateValue.tsx +33 -0
  403. package/src/components/Calculator/renderWantedSumInput.tsx +49 -0
  404. package/src/components/ContentPage/ContentPage.page.json +9 -8
  405. package/src/components/ContentPage/ContentPage.tsx +2 -2
  406. package/src/components/ProductBlock/ProductBlock.fixture.mobile.tsx +1 -1
  407. package/src/components/ProductGallery/ProductGallery.example.json +8 -10
  408. package/src/components/ProductGallery/ProductGallery.fixture.tsx +146 -104
  409. package/src/components/ProductGallery/ProductGallery.tsx +73 -24
  410. package/src/components/ProductGallery/ProductGalleryContent.ts +3 -6
  411. package/src/icons/SafeIcon.svg +7 -1
  412. package/src/types.ts +2 -0
  413. package/src/ui-kit/BlocksList/renderBlocksList.tsx +1 -1
  414. package/src/ui-kit/Checkbox/Checkbox.tsx +1 -3
  415. package/src/ui-kit/InputRange/InputRange.tsx +7 -9
  416. package/src/ui-kit/InputRange/InputRangeProps.ts +3 -1
  417. package/src/ui-kit/Tabs/TabsProps.ts +2 -1
  418. package/dist/components/ProductGalleryGreen/ProductGalleryGreen.d.ts +0 -5
  419. package/dist/components/ProductGalleryGreen/ProductGalleryGreen.js +0 -53
  420. package/dist/components/ProductGalleryGreen/ProductGalleryGreen.js.map +0 -1
  421. package/dist/components/ProductGalleryGreen/ProductGalleryGreenContent.d.ts +0 -32
  422. package/dist/components/ProductGalleryGreen/ProductGalleryGreenContent.js.map +0 -1
  423. package/lib/components/ProductGalleryGreen/ProductGalleryGreen.d.ts +0 -5
  424. package/lib/components/ProductGalleryGreen/ProductGalleryGreen.js +0 -51
  425. package/lib/components/ProductGalleryGreen/ProductGalleryGreen.js.map +0 -1
  426. package/lib/components/ProductGalleryGreen/ProductGalleryGreenContent.d.ts +0 -32
  427. package/lib/components/ProductGalleryGreen/ProductGalleryGreenContent.js +0 -2
  428. package/lib/components/ProductGalleryGreen/ProductGalleryGreenContent.js.map +0 -1
  429. package/mobile/dist/components/ProductGalleryGreen/ProductGalleryGreen.d.ts +0 -5
  430. package/mobile/dist/components/ProductGalleryGreen/ProductGalleryGreen.js +0 -53
  431. package/mobile/dist/components/ProductGalleryGreen/ProductGalleryGreen.js.map +0 -1
  432. package/mobile/dist/components/ProductGalleryGreen/ProductGalleryGreenContent.d.ts +0 -32
  433. package/mobile/dist/components/ProductGalleryGreen/ProductGalleryGreenContent.js.map +0 -1
  434. package/mobile/lib/components/ProductGalleryGreen/ProductGalleryGreen.d.ts +0 -5
  435. package/mobile/lib/components/ProductGalleryGreen/ProductGalleryGreen.js +0 -51
  436. package/mobile/lib/components/ProductGalleryGreen/ProductGalleryGreen.js.map +0 -1
  437. package/mobile/lib/components/ProductGalleryGreen/ProductGalleryGreenContent.d.ts +0 -32
  438. package/mobile/lib/components/ProductGalleryGreen/ProductGalleryGreenContent.js +0 -2
  439. package/mobile/lib/components/ProductGalleryGreen/ProductGalleryGreenContent.js.map +0 -1
  440. package/mobile/src/components/ProductGalleryGreen/ProductGalleryGreen.example.json +0 -23
  441. package/mobile/src/components/ProductGalleryGreen/ProductGalleryGreen.tsx +0 -120
  442. package/mobile/src/components/ProductGalleryGreen/ProductGalleryGreenContent.ts +0 -34
  443. package/src/components/ProductGalleryGreen/ProductGalleryGreen.example.json +0 -23
  444. package/src/components/ProductGalleryGreen/ProductGalleryGreen.fixture.tsx +0 -186
  445. package/src/components/ProductGalleryGreen/ProductGalleryGreen.tsx +0 -120
  446. package/src/components/ProductGalleryGreen/ProductGalleryGreenContent.ts +0 -34
@@ -0,0 +1,19 @@
1
+ Object.defineProperty(exports, "__esModule", { value: true });
2
+ exports.getMonthlyPayment = void 0;
3
+ const clamp_1 = require("../../utils/clamp");
4
+ const constants_1 = require("./constants");
5
+ const getMonthlyPayment = (params) => {
6
+ const { calculatorParams, paymentType, rate, sum, months } = params;
7
+ if (!calculatorParams)
8
+ return 0;
9
+ const finalSum = (0, clamp_1.clamp)(sum, calculatorParams.minSum || constants_1.DEFAULT_MIN_SUM, calculatorParams.maxSum || constants_1.DEFAULT_MAX_SUM);
10
+ if (paymentType === 'annuity') {
11
+ const annuityCoef = Number(rate) / (constants_1.MONTHS_IN_YEAR * 100);
12
+ return finalSum * (annuityCoef + annuityCoef / (Math.pow(1 + annuityCoef, months) - 1));
13
+ }
14
+ else {
15
+ return finalSum / months + finalSum * (Number(rate) / 12);
16
+ }
17
+ };
18
+ exports.getMonthlyPayment = getMonthlyPayment;
19
+ //# sourceMappingURL=getMonthlyPayment.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getMonthlyPayment.js","sourceRoot":"","sources":["../../../src/components/Calculator/getMonthlyPayment.ts"],"names":[],"mappings":";;AAAA,6CAA0C;AAC1C,2CAA+E;AAaxE,MAAM,iBAAiB,GAAG,CAAC,MAA+B,EAAE,EAAE;IACnE,MAAM,EAAE,gBAAgB,EAAE,WAAW,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,MAAM,CAAC;IAEpE,IAAI,CAAC,gBAAgB;QAAE,OAAO,CAAC,CAAC;IAEhC,MAAM,QAAQ,GAAG,IAAA,aAAK,EACpB,GAAG,EACH,gBAAgB,CAAC,MAAM,IAAI,2BAAe,EAC1C,gBAAgB,CAAC,MAAM,IAAI,2BAAe,CAC3C,CAAC;IAEF,IAAI,WAAW,KAAK,SAAS,EAAE;QAC7B,MAAM,WAAW,GAAG,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,0BAAc,GAAG,GAAG,CAAC,CAAC;QAC1D,OAAO,QAAQ,GAAG,CAAC,WAAW,GAAG,WAAW,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,WAAW,EAAE,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;KACzF;SAAM;QACL,OAAO,QAAQ,GAAG,MAAM,GAAG,QAAQ,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;KAC3D;AACH,CAAC,CAAC;AAjBW,QAAA,iBAAiB,qBAiB5B"}
@@ -0,0 +1 @@
1
+ export declare function renderButtonSection(context: any, buttons: any): any;
@@ -0,0 +1,9 @@
1
+ Object.defineProperty(exports, "__esModule", { value: true });
2
+ exports.renderButtonSection = void 0;
3
+ const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
+ const ButtonSection_1 = require("../../ui-kit/Button/ButtonSection");
5
+ function renderButtonSection(context, buttons) {
6
+ return buttons?.length ? ((0, jsx_runtime_1.jsx)(ButtonSection_1.ButtonSection, { context: context, buttons: buttons, className: "flex flex-col mt-7 gap-2" })) : null;
7
+ }
8
+ exports.renderButtonSection = renderButtonSection;
9
+ //# sourceMappingURL=renderButtonSection.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"renderButtonSection.js","sourceRoot":"","sources":["../../../src/components/Calculator/renderButtonSection.tsx"],"names":[],"mappings":";;;AAAA,qEAAkE;AAElE,SAAgB,mBAAmB,CAAC,OAAO,EAAE,OAAO;IAClD,OAAO,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC,CACvB,uBAAC,6BAAa,IAAC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,SAAS,EAAC,0BAA0B,GAAG,CAC3F,CAAC,CAAC,CAAC,IAAI,CAAC;AACX,CAAC;AAJD,kDAIC"}
@@ -0,0 +1,10 @@
1
+ import type { ContentPageContext } from '../../components/ContentPage/ContentPageContext';
2
+ import type { CalculatorBlockDef } from './CalculatorContent';
3
+ import { EmbeddableCalcBlocks } from './EmbeddableCalcBlocks';
4
+ declare type EmbeddableCalcBlocks = {
5
+ blockCalcTabs?: CalculatorBlockDef[];
6
+ context: ContentPageContext;
7
+ className?: string;
8
+ };
9
+ export declare const renderCalculatorList: ({ blockCalcTabs, context, className, }: EmbeddableCalcBlocks) => any[] | null;
10
+ export {};
@@ -0,0 +1,17 @@
1
+ Object.defineProperty(exports, "__esModule", { value: true });
2
+ exports.renderCalculatorList = void 0;
3
+ const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
+ const EmbeddableCalcBlocks_1 = require("./EmbeddableCalcBlocks");
5
+ const renderCalculatorList = ({ blockCalcTabs, context, className, }) => {
6
+ return blockCalcTabs?.length ? blockCalcTabs.map(renderBlock({ context, className })) : null;
7
+ };
8
+ exports.renderCalculatorList = renderCalculatorList;
9
+ const renderBlock = ({ context, className }) => (blockCalcTabs, i) => {
10
+ const type = blockCalcTabs?.calcType;
11
+ if (!type || !(type in EmbeddableCalcBlocks_1.EmbeddableCalcBlocks)) {
12
+ return null;
13
+ }
14
+ const EmbeddedBlock = EmbeddableCalcBlocks_1.EmbeddableCalcBlocks[type];
15
+ return ((0, jsx_runtime_1.jsx)("section", { className: `box-border relative flex grow-0 shrink-0 basis-full ${className}`, role: "listitem", children: (0, jsx_runtime_1.jsx)("div", { className: `box-border p-9 w-full`, children: (0, jsx_runtime_1.jsx)(EmbeddedBlock, { context: context, ...blockCalcTabs, className: "!p-0 flex justify-between" }) }) }, `${String(i)}`));
16
+ };
17
+ //# sourceMappingURL=renderCalculatorList.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"renderCalculatorList.js","sourceRoot":"","sources":["../../../src/components/Calculator/renderCalculatorList.tsx"],"names":[],"mappings":";;;AAGA,iEAAmF;AAQ5E,MAAM,oBAAoB,GAAG,CAAC,EACnC,aAAa,EACb,OAAO,EACP,SAAS,GACY,EAAE,EAAE;IACzB,OAAO,aAAa,EAAE,MAAM,CAAC,CAAC,CAAC,aAAa,CAAC,GAAG,CAAC,WAAW,CAAC,EAAE,OAAO,EAAE,SAAS,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;AAC/F,CAAC,CAAC;AANW,QAAA,oBAAoB,wBAM/B;AAEF,MAAM,WAAW,GACf,CAAC,EAAE,OAAO,EAAE,SAAS,EAAO,EAAE,EAAE,CAChC,CAAC,aAAiC,EAAE,CAAS,EAAE,EAAE;IAC/C,MAAM,IAAI,GAAG,aAAa,EAAE,QAAQ,CAAC;IACrC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,IAAI,2CAAoB,CAAC,EAAE;QAC5C,OAAO,IAAI,CAAC;KACb;IACD,MAAM,aAAa,GAAkC,2CAAoB,CAAC,IAAI,CAAC,CAAC;IAChF,OAAO,CACL,oCAEE,SAAS,EAAE,uDAAuD,SAAS,EAAE,EAC7E,IAAI,EAAC,UAAU,YAEf,gCAAK,SAAS,EAAE,uBAAuB,YACrC,uBAAC,aAAa,IACZ,OAAO,EAAE,OAAO,KACZ,aAAa,EACjB,SAAS,EAAC,2BAA2B,GACrC,GACE,IAVD,GAAG,MAAM,CAAC,CAAC,CAAC,EAAE,CAWX,CACX,CAAC;AACJ,CAAC,CAAC"}
@@ -0,0 +1,10 @@
1
+ import type { InputRangeProps } from '../../ui-kit/InputRange/InputRangeProps';
2
+ import type { CalculatorParams } from './CalculatorContent';
3
+ interface RenderWantedSumInputProps {
4
+ calculatorParams: CalculatorParams;
5
+ moneyValue: number | undefined;
6
+ defaultSum: number;
7
+ setMoneyValue: InputRangeProps['onChange'];
8
+ }
9
+ export declare function renderInitialFeeInput(props: RenderWantedSumInputProps): any;
10
+ export {};
@@ -0,0 +1,18 @@
1
+ Object.defineProperty(exports, "__esModule", { value: true });
2
+ exports.renderInitialFeeInput = void 0;
3
+ const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
+ const InputRange_1 = require("../../ui-kit/InputRange/InputRange");
5
+ const addSpacesBetweenNumbers_1 = require("../../utils/addSpacesBetweenNumbers");
6
+ const constants_1 = require("./constants");
7
+ const STEP_MONEY = 1000;
8
+ function renderInitialFeeInput(props) {
9
+ const { calculatorParams, moneyValue, defaultSum, setMoneyValue } = props;
10
+ const minSum = calculatorParams?.minSum || constants_1.DEFAULT_MIN_SUM;
11
+ const maxSum = calculatorParams?.maxSum || constants_1.DEFAULT_MAX_SUM;
12
+ return ((0, jsx_runtime_1.jsx)(InputRange_1.InputRange, { className: "mt-6", title: "\u041F\u0435\u0440\u0432\u043E\u043D\u0430\u0447\u0430\u043B\u044C\u043D\u044B\u0439 \u0432\u0437\u043D\u043E\u0441, \u20BD ", items: [
13
+ `От ${(0, addSpacesBetweenNumbers_1.addSpacesBetweenNumbers)(minSum)} рублей`,
14
+ `До ${(0, addSpacesBetweenNumbers_1.addSpacesBetweenNumbers)(maxSum)} рублей`,
15
+ ], min: minSum, max: maxSum, step: STEP_MONEY, value: moneyValue || defaultSum, onChange: setMoneyValue }));
16
+ }
17
+ exports.renderInitialFeeInput = renderInitialFeeInput;
18
+ //# sourceMappingURL=renderInitialFeeInput.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"renderInitialFeeInput.js","sourceRoot":"","sources":["../../../src/components/Calculator/renderInitialFeeInput.tsx"],"names":[],"mappings":";;;AAAA,mEAAgE;AAEhE,iFAA8E;AAC9E,2CAA+D;AAG/D,MAAM,UAAU,GAAG,IAAI,CAAC;AASxB,SAAgB,qBAAqB,CAAC,KAAgC;IACpE,MAAM,EAAE,gBAAgB,EAAE,UAAU,EAAE,UAAU,EAAE,aAAa,EAAE,GAAG,KAAK,CAAC;IAE1E,MAAM,MAAM,GAAG,gBAAgB,EAAE,MAAM,IAAI,2BAAe,CAAC;IAC3D,MAAM,MAAM,GAAG,gBAAgB,EAAE,MAAM,IAAI,2BAAe,CAAC;IAE3D,OAAO,CACL,uBAAC,uBAAU,IACT,SAAS,EAAC,MAAM,EAChB,KAAK,EAAC,8HAA0B,EAChC,KAAK,EAAE;YACL,MAAM,IAAA,iDAAuB,EAAC,MAAM,CAAC,SAAS;YAC9C,MAAM,IAAA,iDAAuB,EAAC,MAAM,CAAC,SAAS;SAC/C,EACD,GAAG,EAAE,MAAM,EACX,GAAG,EAAE,MAAM,EACX,IAAI,EAAE,UAAU,EAChB,KAAK,EAAE,UAAU,IAAI,UAAU,EAC/B,QAAQ,EAAE,aAAa,GACvB,CACH,CAAC;AACJ,CAAC;AArBD,sDAqBC"}
@@ -0,0 +1,11 @@
1
+ import type { InputRangeProps } from '../../ui-kit/InputRange/InputRangeProps';
2
+ interface RenderMonthsInputProps {
3
+ title: string;
4
+ minMonths: number;
5
+ maxMonths: number;
6
+ monthsValue: number | undefined;
7
+ defaultMonths: number;
8
+ setMonthsValue: InputRangeProps['onChange'];
9
+ }
10
+ export declare function renderMonthsInput(props: RenderMonthsInputProps): any;
11
+ export {};
@@ -0,0 +1,15 @@
1
+ Object.defineProperty(exports, "__esModule", { value: true });
2
+ exports.renderMonthsInput = void 0;
3
+ const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
+ const InputRange_1 = require("../../ui-kit/InputRange/InputRange");
5
+ const STEP_MONTHS = 1;
6
+ function renderMonthsInput(props) {
7
+ const { title, minMonths, maxMonths, monthsValue, defaultMonths, setMonthsValue } = props;
8
+ const monthText = (month) => {
9
+ const text = Number(month) % 10 === 1 ? 'месяца' : 'месяцев';
10
+ return `${month} ${text}`;
11
+ };
12
+ return ((0, jsx_runtime_1.jsx)(InputRange_1.InputRange, { className: "mt-6", title: title, items: [`От ${monthText(minMonths)}`, `До ${monthText(maxMonths)}`], min: minMonths, max: maxMonths, step: STEP_MONTHS, value: monthsValue || defaultMonths, onChange: setMonthsValue }));
13
+ }
14
+ exports.renderMonthsInput = renderMonthsInput;
15
+ //# sourceMappingURL=renderMonthsInput.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"renderMonthsInput.js","sourceRoot":"","sources":["../../../src/components/Calculator/renderMonthsInput.tsx"],"names":[],"mappings":";;;AAAA,mEAAgE;AAGhE,MAAM,WAAW,GAAG,CAAC,CAAC;AAWtB,SAAgB,iBAAiB,CAAC,KAA6B;IAC7D,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,WAAW,EAAE,aAAa,EAAE,cAAc,EAAE,GAAG,KAAK,CAAC;IAC1F,MAAM,SAAS,GAAG,CAAC,KAAK,EAAE,EAAE;QAC1B,MAAM,IAAI,GAAG,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;QAC7D,OAAO,GAAG,KAAK,IAAI,IAAI,EAAE,CAAC;IAC5B,CAAC,CAAC;IAEF,OAAO,CACL,uBAAC,uBAAU,IACT,SAAS,EAAC,MAAM,EAChB,KAAK,EAAE,KAAK,EACZ,KAAK,EAAE,CAAC,MAAM,SAAS,CAAC,SAAS,CAAC,EAAE,EAAE,MAAM,SAAS,CAAC,SAAS,CAAC,EAAE,CAAC,EACnE,GAAG,EAAE,SAAS,EACd,GAAG,EAAE,SAAS,EACd,IAAI,EAAE,WAAW,EACjB,KAAK,EAAE,WAAW,IAAI,aAAa,EACnC,QAAQ,EAAE,cAAc,GACxB,CACH,CAAC;AACJ,CAAC;AAnBD,8CAmBC"}
@@ -0,0 +1 @@
1
+ export declare function renderProposal(monthlyPayment: number): any;
@@ -0,0 +1,10 @@
1
+ Object.defineProperty(exports, "__esModule", { value: true });
2
+ exports.renderProposal = void 0;
3
+ const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
+ const addSpacesBetweenNumbers_1 = require("../../utils/addSpacesBetweenNumbers");
5
+ const Button_1 = require("../../ui-kit/Button/Button");
6
+ function renderProposal(monthlyPayment) {
7
+ return ((0, jsx_runtime_1.jsxs)("div", { className: "box-border ", children: [(0, jsx_runtime_1.jsx)("div", { className: "text-base font-light", children: "\u0415\u0436\u0435\u043C\u0435\u0441\u044F\u0447\u043D\u044B\u0439 \u043F\u043B\u0430\u0442\u0451\u0436" }), (0, jsx_runtime_1.jsxs)("div", { className: "text-title mb-3 font-normal", children: [(0, addSpacesBetweenNumbers_1.addSpacesBetweenNumbers)(Math.round(monthlyPayment)), " \u20BD"] }), (0, jsx_runtime_1.jsx)(Button_1.Button, { className: "mt-[50px] w-full", text: "\u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C \u0437\u0430\u044F\u0432\u043A\u0443", version: "primary", href: "#" })] }));
8
+ }
9
+ exports.renderProposal = renderProposal;
10
+ //# sourceMappingURL=renderProposal.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"renderProposal.js","sourceRoot":"","sources":["../../../src/components/Calculator/renderProposal.tsx"],"names":[],"mappings":";;;AAAA,iFAA8E;AAC9E,uDAAoD;AAEpD,SAAgB,cAAc,CAAC,cAAsB;IACnD,OAAO,CACL,iCAAK,SAAS,EAAC,aAAa,aAC1B,gCAAK,SAAS,EAAC,sBAAsB,wHAAyB,EAC9D,iCAAK,SAAS,EAAC,6BAA6B,aACzC,IAAA,iDAAuB,EAAC,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,eAChD,EACN,uBAAC,eAAM,IAAC,SAAS,EAAC,kBAAkB,EAAC,IAAI,EAAC,6FAAkB,EAAC,OAAO,EAAC,SAAS,EAAC,IAAI,EAAC,GAAG,GAAG,IACtF,CACP,CAAC;AACJ,CAAC;AAVD,wCAUC"}
@@ -0,0 +1,7 @@
1
+ declare type porposalMortgage = {
2
+ credit: number;
3
+ period: number;
4
+ taxRefund: number;
5
+ };
6
+ export declare function renderProposalMortgage({ credit, period, taxRefund }: porposalMortgage): any;
7
+ export {};
@@ -0,0 +1,9 @@
1
+ Object.defineProperty(exports, "__esModule", { value: true });
2
+ exports.renderProposalMortgage = void 0;
3
+ const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
+ const CalculatorValueBlock_1 = require("./CalculatorValueBlock");
5
+ function renderProposalMortgage({ credit, period, taxRefund }) {
6
+ return ((0, jsx_runtime_1.jsxs)("div", { children: [(0, jsx_runtime_1.jsx)(CalculatorValueBlock_1.CalculatorValueBlock, { title: "\u0421\u0443\u043C\u043C\u0430 \u043A\u0440\u0435\u0434\u0438\u0442\u0430", value: credit, postfix: "\u20BD" }), (0, jsx_runtime_1.jsx)(CalculatorValueBlock_1.CalculatorValueBlock, { title: "\u0421\u0440\u043E\u043A", value: period, postfix: "\u043B\u0435\u0442" }), (0, jsx_runtime_1.jsx)(CalculatorValueBlock_1.CalculatorValueBlock, { title: "\u041D\u0430\u043B\u043E\u0433\u043E\u0432\u044B\u0439 \u0432\u044B\u0447\u0435\u0442", value: taxRefund, postfix: "\u20BD" })] }));
7
+ }
8
+ exports.renderProposalMortgage = renderProposalMortgage;
9
+ //# sourceMappingURL=renderProposalMortgage.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"renderProposalMortgage.js","sourceRoot":"","sources":["../../../src/components/Calculator/renderProposalMortgage.tsx"],"names":[],"mappings":";;;AAAA,iEAA8D;AAQ9D,SAAgB,sBAAsB,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,SAAS,EAAoB;IACpF,OAAO,CACL,4CACG,uBAAC,2CAAoB,IAAC,KAAK,EAAC,2EAAe,EAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAC,QAAG,GAAG,EACzE,uBAAC,2CAAoB,IAAC,KAAK,EAAC,0BAAM,EAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAC,oBAAK,GAAG,EAClE,uBAAC,2CAAoB,IAAC,KAAK,EAAC,uFAAiB,EAAC,KAAK,EAAE,SAAS,EAAE,OAAO,EAAC,QAAG,GAAG,IAC3E,CACP,CAAC;AACJ,CAAC;AARD,wDAQC"}
@@ -0,0 +1,8 @@
1
+ declare type rateType = {
2
+ rate: number;
3
+ title?: string;
4
+ sup?: string;
5
+ className?: string;
6
+ };
7
+ export declare function renderRate({ rate, title, sup, className }: rateType): any;
8
+ export {};
@@ -0,0 +1,9 @@
1
+ Object.defineProperty(exports, "__esModule", { value: true });
2
+ exports.renderRate = void 0;
3
+ const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
+ function renderRate({ rate, title, sup, className = '' }) {
5
+ const rateFormat = String(rate).replace('.', ',');
6
+ return ((0, jsx_runtime_1.jsxs)("div", { children: [(0, jsx_runtime_1.jsx)("div", { className: "text-sm font-light ml-3", children: title }), (0, jsx_runtime_1.jsxs)("div", { className: "flex justify-start", children: [(0, jsx_runtime_1.jsx)("span", { className: `calc-rate-text font-mohave text-[200px] leading-[250px] pr-4 mt-[-16px] ${className}`, children: rateFormat }), sup ? (0, jsx_runtime_1.jsx)("span", { className: "calc-rate-text text-[65px] leading-[75px]", children: sup }) : ''] })] }));
7
+ }
8
+ exports.renderRate = renderRate;
9
+ //# sourceMappingURL=renderRate.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"renderRate.js","sourceRoot":"","sources":["../../../src/components/Calculator/renderRate.tsx"],"names":[],"mappings":";;;AAOA,SAAgB,UAAU,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,SAAS,GAAG,EAAE,EAAY;IACvE,MAAM,UAAU,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;IAClD,OAAO,CACL,4CACE,gCAAK,SAAS,EAAC,yBAAyB,YAAE,KAAK,GAAO,EACtD,iCAAK,SAAS,EAAC,oBAAoB,aACjC,iCACE,SAAS,EAAE,2EAA2E,SAAS,EAAE,YAEhG,UAAU,GACN,EACN,GAAG,CAAC,CAAC,CAAC,iCAAM,SAAS,EAAC,2CAA2C,YAAE,GAAG,GAAQ,CAAC,CAAC,CAAC,EAAE,IAChF,IACF,CACP,CAAC;AACJ,CAAC;AAfD,gCAeC"}
@@ -0,0 +1,10 @@
1
+ import type { InputRangeProps } from '../../ui-kit/InputRange/InputRangeProps';
2
+ import type { CalculatorParams } from './CalculatorContent';
3
+ interface RenderRealEstateValueInputProps {
4
+ calculatorParams: CalculatorParams;
5
+ moneyValue: number | undefined;
6
+ defaultSum: number;
7
+ setMoneyValue: InputRangeProps['onChange'];
8
+ }
9
+ export declare function renderRealEstateValue(props: RenderRealEstateValueInputProps): any;
10
+ export {};
@@ -0,0 +1,15 @@
1
+ Object.defineProperty(exports, "__esModule", { value: true });
2
+ exports.renderRealEstateValue = void 0;
3
+ const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
+ const InputRange_1 = require("../../ui-kit/InputRange/InputRange");
5
+ const addSpacesBetweenNumbers_1 = require("../../utils/addSpacesBetweenNumbers");
6
+ const constants_1 = require("./constants");
7
+ const STEP_MONEY = 1000;
8
+ function renderRealEstateValue(props) {
9
+ const { calculatorParams, moneyValue, defaultSum, setMoneyValue } = props;
10
+ const minSum = calculatorParams?.minSum || constants_1.DEFAULT_MIN_SUM;
11
+ const maxSum = calculatorParams?.maxSum || constants_1.DEFAULT_MAX_SUM;
12
+ return ((0, jsx_runtime_1.jsx)(InputRange_1.InputRange, { title: "\u0421\u0442\u043E\u0438\u043C\u043E\u0441\u0442\u044C \u043D\u0435\u0434\u0432\u0438\u0436\u0438\u043C\u043E\u0441\u0442\u0438, \u20BD ", items: [`От ${(0, addSpacesBetweenNumbers_1.addSpacesBetweenNumbers)(minSum)} ₽`, `До ${(0, addSpacesBetweenNumbers_1.addSpacesBetweenNumbers)(maxSum)} ₽`], min: minSum, max: maxSum, step: STEP_MONEY, value: moneyValue || defaultSum, onChange: setMoneyValue }));
13
+ }
14
+ exports.renderRealEstateValue = renderRealEstateValue;
15
+ //# sourceMappingURL=renderRealEstateValue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"renderRealEstateValue.js","sourceRoot":"","sources":["../../../src/components/Calculator/renderRealEstateValue.tsx"],"names":[],"mappings":";;;AAAA,mEAAgE;AAEhE,iFAA8E;AAC9E,2CAA+D;AAG/D,MAAM,UAAU,GAAG,IAAI,CAAC;AASxB,SAAgB,qBAAqB,CAAC,KAAsC;IAC1E,MAAM,EAAE,gBAAgB,EAAE,UAAU,EAAE,UAAU,EAAE,aAAa,EAAE,GAAG,KAAK,CAAC;IAE1E,MAAM,MAAM,GAAG,gBAAgB,EAAE,MAAM,IAAI,2BAAe,CAAC;IAC3D,MAAM,MAAM,GAAG,gBAAgB,EAAE,MAAM,IAAI,2BAAe,CAAC;IAE3D,OAAO,CACL,uBAAC,uBAAU,IACT,KAAK,EAAC,0IAA4B,EAClC,KAAK,EAAE,CAAC,MAAM,IAAA,iDAAuB,EAAC,MAAM,CAAC,IAAI,EAAE,MAAM,IAAA,iDAAuB,EAAC,MAAM,CAAC,IAAI,CAAC,EAC7F,GAAG,EAAE,MAAM,EACX,GAAG,EAAE,MAAM,EACX,IAAI,EAAE,UAAU,EAChB,KAAK,EAAE,UAAU,IAAI,UAAU,EAC/B,QAAQ,EAAE,aAAa,GACvB,CACH,CAAC;AACJ,CAAC;AAjBD,sDAiBC"}
@@ -0,0 +1,13 @@
1
+ import type { InputRangeProps } from '../../ui-kit/InputRange/InputRangeProps';
2
+ import type { CalculatorParams } from './CalculatorContent';
3
+ interface RenderWantedSumInputProps {
4
+ className?: string;
5
+ title: string;
6
+ isShowItems?: boolean;
7
+ calculatorParams: CalculatorParams;
8
+ moneyValue: number | undefined;
9
+ defaultSum: number;
10
+ setMoneyValue: InputRangeProps['onChange'];
11
+ }
12
+ export declare function renderWantedSumInput(props: RenderWantedSumInputProps): any;
13
+ export {};
@@ -0,0 +1,19 @@
1
+ Object.defineProperty(exports, "__esModule", { value: true });
2
+ exports.renderWantedSumInput = void 0;
3
+ const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
+ const InputRange_1 = require("../../ui-kit/InputRange/InputRange");
5
+ const addSpacesBetweenNumbers_1 = require("../../utils/addSpacesBetweenNumbers");
6
+ const constants_1 = require("./constants");
7
+ const STEP_MONEY = 1000;
8
+ function renderWantedSumInput(props) {
9
+ const { title, className = '', calculatorParams, moneyValue, defaultSum, setMoneyValue, isShowItems = true, } = props;
10
+ const minSum = calculatorParams?.minSum || constants_1.DEFAULT_MIN_SUM;
11
+ const maxSum = calculatorParams?.maxSum || constants_1.DEFAULT_MAX_SUM;
12
+ const items = [
13
+ `От ${(0, addSpacesBetweenNumbers_1.addSpacesBetweenNumbers)(minSum)} ₽`,
14
+ `До ${(0, addSpacesBetweenNumbers_1.addSpacesBetweenNumbers)(maxSum)} ₽`,
15
+ ];
16
+ return ((0, jsx_runtime_1.jsx)(InputRange_1.InputRange, { className: className, title: title, items: isShowItems ? items : [], min: minSum, max: maxSum, step: STEP_MONEY, value: moneyValue || defaultSum, onChange: setMoneyValue }));
17
+ }
18
+ exports.renderWantedSumInput = renderWantedSumInput;
19
+ //# sourceMappingURL=renderWantedSumInput.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"renderWantedSumInput.js","sourceRoot":"","sources":["../../../src/components/Calculator/renderWantedSumInput.tsx"],"names":[],"mappings":";;;AAAA,mEAAgE;AAEhE,iFAA8E;AAC9E,2CAA+D;AAG/D,MAAM,UAAU,GAAG,IAAI,CAAC;AAYxB,SAAgB,oBAAoB,CAAC,KAAgC;IACnE,MAAM,EACJ,KAAK,EACL,SAAS,GAAG,EAAE,EACd,gBAAgB,EAChB,UAAU,EACV,UAAU,EACV,aAAa,EACb,WAAW,GAAG,IAAI,GACnB,GAAG,KAAK,CAAC;IAEV,MAAM,MAAM,GAAG,gBAAgB,EAAE,MAAM,IAAI,2BAAe,CAAC;IAC3D,MAAM,MAAM,GAAG,gBAAgB,EAAE,MAAM,IAAI,2BAAe,CAAC;IAC3D,MAAM,KAAK,GAAG;QACZ,MAAM,IAAA,iDAAuB,EAAC,MAAM,CAAC,IAAI;QACzC,MAAM,IAAA,iDAAuB,EAAC,MAAM,CAAC,IAAI;KAC1C,CAAC;IAEF,OAAO,CACL,uBAAC,uBAAU,IACT,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,KAAK,EACZ,KAAK,EAAE,WAAW,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAC/B,GAAG,EAAE,MAAM,EACX,GAAG,EAAE,MAAM,EACX,IAAI,EAAE,UAAU,EAChB,KAAK,EAAE,UAAU,IAAI,UAAU,EAC/B,QAAQ,EAAE,aAAa,GACvB,CACH,CAAC;AACJ,CAAC;AA9BD,oDA8BC"}
@@ -11,7 +11,7 @@ interface BlockDecoratorProps<VNode> {
11
11
  }) => VNode;
12
12
  }
13
13
  export declare type BlockDecorator<VNode = any> = (props: BlockDecoratorProps<VNode>, index?: number | string) => any;
14
- export declare type JSXBlock = (props: PropsWithChildren<UniBlockProps & BlockContent, any>, context?: any) => any;
14
+ export declare type JSXBlock<BlockProps = BlockContent> = (props: PropsWithChildren<UniBlockProps & BlockProps, any>, context?: any) => any;
15
15
  export declare type BlocksRegistry = Record<string, JSXBlock>;
16
16
  export interface ContentPageProps extends UniBlockProps {
17
17
  blocksRegistry: BlocksRegistry;
@@ -2,23 +2,52 @@ Object.defineProperty(exports, "__esModule", { value: true });
2
2
  exports.ProductGallery = void 0;
3
3
  const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
4
  const uni_jsx_1 = require("@redneckz/uni-jsx");
5
- const ProductGalleryBlock_1 = require("./ProductGalleryBlock");
6
- exports.ProductGallery = (0, uni_jsx_1.JSX)(({ className, context, duration = 0, slides = [], anchor = null }) => {
5
+ const ProductBlockInner_1 = require("../ProductBlock/ProductBlockInner");
6
+ const productGalleryStyleMap = {
7
+ primary: 'bg-white text-primary-text',
8
+ secondary: 'bg-primary-main text-white',
9
+ };
10
+ const productBlockStyleMap = {
11
+ primary: { title: 'text-secondary-text', text: 'text-secondary-text' },
12
+ secondary: { title: 'text-white', text: 'text-white/80' },
13
+ };
14
+ const productSlideStyleMap = {
15
+ primary: 'bg-white text-primary-text',
16
+ secondary: 'bg-primary-main text-white',
17
+ };
18
+ exports.ProductGallery = (0, uni_jsx_1.JSX)(({ className = '', context, slides = [], version = 'primary', anchor = null }) => {
7
19
  const galleryNav = slides.map((s) => s.nav);
8
20
  const galleryBlocks = slides.map((s) => s.productBlock);
9
21
  const [activeSlideIndex, setActiveSlideIndex] = context.useState(0);
10
- return ((0, jsx_runtime_1.jsxs)("section", { className: `font-sans bg-white overflow-hidden w-100 ${className || ''}`, id: anchor, children: [(0, jsx_runtime_1.jsx)("div", { className: `flex duration-1000`, style: { transform: `translateX(-${activeSlideIndex}00%)` }, role: "list", children: galleryBlocks.map((_, i) => ((0, jsx_runtime_1.jsx)(ProductGalleryBlock_1.ProductGalleryBlock, { context: context, block: _ }, String(i)))) }), (0, jsx_runtime_1.jsx)("div", { className: "flex", children: galleryNav.map((slide, i) => renderNavButton({
22
+ return ((0, jsx_runtime_1.jsxs)("section", { id: anchor, className: `box-border pt-[50px] overflow-hidden relative font-sans w-100 ${className}
23
+ ${productGalleryStyleMap[version]}`, children: [(0, jsx_runtime_1.jsx)("div", { className: "flex duration-1000 pb-14", style: { transform: `translateX(-${activeSlideIndex}00%)` }, role: "list", children: galleryBlocks.map((_, i) => renderProductBlock({ ..._, version }, i, context)) }), (0, jsx_runtime_1.jsx)("div", { className: "flex items-center absolute bottom-6 left-0 right-0 px-[26px] box-border", children: galleryNav.map((slide, i) => renderNavButton({
11
24
  slide,
12
25
  i,
13
26
  activeSlideIndex,
14
27
  onClick: () => setActiveSlideIndex(i),
15
- duration,
28
+ version,
16
29
  })) })] }));
17
30
  });
18
- function renderNavButton({ slide, i, activeSlideIndex, onClick, duration }) {
31
+ function renderProductBlock(block, i, context) {
32
+ const { version } = block;
33
+ const additionalClass = version ? productBlockStyleMap[version].title : '';
34
+ return ((0, jsx_runtime_1.jsx)("section", { className: "box-border relative flex grow-0 shrink-0 basis-full", role: "listitem", children: (0, jsx_runtime_1.jsx)("div", { className: "flex grow", children: (0, jsx_runtime_1.jsx)(ProductBlockInner_1.ProductBlockInner, { className: `pl-[50px] z-[1] ${additionalClass}`, context: context, textBlockClassName: "mb-[154px]", ...block }) }) }, String(i)));
35
+ }
36
+ function renderNavButton({ slide, i, activeSlideIndex, onClick, version }) {
19
37
  const isActiveBtn = i === activeSlideIndex;
20
- const progressBarClassName = isActiveBtn ? 'animate-slide' : '';
21
- const btnTitleClassName = isActiveBtn ? 'text-primary-text' : 'text-secondary-text';
22
- return ((0, jsx_runtime_1.jsxs)("button", { type: "button", onClick: onClick, "aria-label": slide?.title, className: `font-sans group relative overflow-hidden border-0 bg-inherit cursor-pointer text-left px-0 pt-4 pb-[23px] grow basis-0`, children: [(0, jsx_runtime_1.jsxs)("div", { className: "border-0 border-r border-solid border-main-divider px-6", children: [(0, jsx_runtime_1.jsx)("div", { className: `text-sm font-medium pb-[3px] group-hover:text-primary-text ${btnTitleClassName}`, children: slide?.title }), (0, jsx_runtime_1.jsx)("div", { className: "text-xs text-secondary-text", children: slide.desc })] }), (0, jsx_runtime_1.jsx)("div", { className: `absolute bottom-0 left-0 w-full h-[3px] bg-primary-main -translate-x-full ${progressBarClassName}`, style: { animationDuration: `${duration}s`, animationFillMode: 'forwards' } })] }, String(i)));
38
+ const btnClassName = isActiveBtn
39
+ ? 'bg-white shadow-dark-blue/42 h-[102px] w-[354px] min-w-[354px] p-0 border-none'
40
+ : `min-w-[277px] px-0 pt-4 pb-[23px] hover:py-[26px] hover:py-[26px] ease-in duration-300 bg-white/10
41
+ ${productSlideStyleMap[version]}`;
42
+ const btnTitleClassName = isActiveBtn
43
+ ? 'text-primary-text text-title-2xs'
44
+ : `text-base ${productBlockStyleMap[version].title}`;
45
+ const btnDescClassName = isActiveBtn
46
+ ? 'text-secondary-text text-m-title-xs mt-2.5'
47
+ : `text-m-md mt-1.5 ${productBlockStyleMap[version].text}`;
48
+ const additionalBorder = version === 'secondary' ? 'border-white/50' : 'border-black/50';
49
+ return ((0, jsx_runtime_1.jsx)("button", { type: "button", onClick: onClick, "aria-label": slide?.title, className: `box-border font-sans relative overflow-hidden border-[1px] border-white/50 cursor-pointer text-left mx-1 grow basis-0
50
+ ${btnClassName} ${additionalBorder}
51
+ `, children: (0, jsx_runtime_1.jsxs)("div", { className: "border-0 px-6", children: [(0, jsx_runtime_1.jsx)("div", { className: `font-medium ${btnTitleClassName}`, children: slide?.title }), (0, jsx_runtime_1.jsx)("div", { className: `text-secondary-text ${btnDescClassName}`, children: slide.description })] }) }, String(i)));
23
52
  }
24
53
  //# sourceMappingURL=ProductGallery.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ProductGallery.js","sourceRoot":"","sources":["../../../src/components/ProductGallery/ProductGallery.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AACxC,+DAA4D;AAM/C,QAAA,cAAc,GAAG,IAAA,aAAG,EAC/B,CAAC,EAAE,SAAS,EAAE,OAAO,EAAE,QAAQ,GAAG,CAAC,EAAE,MAAM,GAAG,EAAE,EAAE,MAAM,GAAG,IAAI,EAAE,EAAE,EAAE;IACnE,MAAM,UAAU,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;IAC5C,MAAM,aAAa,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC;IACxD,MAAM,CAAC,gBAAgB,EAAE,mBAAmB,CAAC,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;IAEpE,OAAO,CACL,qCACE,SAAS,EAAE,4CAA4C,SAAS,IAAI,EAAE,EAAE,EACxE,EAAE,EAAE,MAAM,aAEV,gCACE,SAAS,EAAE,oBAAoB,EAC/B,KAAK,EAAE,EAAE,SAAS,EAAE,eAAe,gBAAgB,MAAM,EAAE,EAC3D,IAAI,EAAC,MAAM,YAEV,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAC3B,uBAAC,yCAAmB,IAAiB,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC,IAArC,MAAM,CAAC,CAAC,CAAC,CAAgC,CACpE,CAAC,GACE,EAEN,gCAAK,SAAS,EAAC,MAAM,YAClB,UAAU,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,CAAC,EAAE,EAAE,CAC3B,eAAe,CAAC;oBACd,KAAK;oBACL,CAAC;oBACD,gBAAgB;oBAChB,OAAO,EAAE,GAAG,EAAE,CAAC,mBAAmB,CAAC,CAAC,CAAC;oBACrC,QAAQ;iBACT,CAAC,CACH,GACG,IACE,CACX,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,SAAS,eAAe,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,gBAAgB,EAAE,OAAO,EAAE,QAAQ,EAAE;IACxE,MAAM,WAAW,GAAG,CAAC,KAAK,gBAAgB,CAAC;IAC3C,MAAM,oBAAoB,GAAG,WAAW,CAAC,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,CAAC;IAChE,MAAM,iBAAiB,GAAG,WAAW,CAAC,CAAC,CAAC,mBAAmB,CAAC,CAAC,CAAC,qBAAqB,CAAC;IACpF,OAAO,CACL,oCACE,IAAI,EAAC,QAAQ,EAEb,OAAO,EAAE,OAAO,gBACJ,KAAK,EAAE,KAAK,EACxB,SAAS,EAAE,wHAAwH,aAEnI,iCAAK,SAAS,EAAC,yDAAyD,aACtE,gCACE,SAAS,EAAE,8DAA8D,iBAAiB,EAAE,YAE3F,KAAK,EAAE,KAAK,GACT,EACN,gCAAK,SAAS,EAAC,6BAA6B,YAAE,KAAK,CAAC,IAAI,GAAO,IAC3D,EACN,gCACE,SAAS,EAAE,6EAA6E,oBAAoB,EAAE,EAC9G,KAAK,EAAE,EAAE,iBAAiB,EAAE,GAAG,QAAQ,GAAG,EAAE,iBAAiB,EAAE,UAAU,EAAE,GACtE,KAhBF,MAAM,CAAC,CAAC,CAAC,CAiBP,CACV,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"ProductGallery.js","sourceRoot":"","sources":["../../../src/components/ProductGallery/ProductGallery.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AAIxC,yEAAsE;AAUtE,MAAM,sBAAsB,GAAiC;IAC3D,OAAO,EAAE,4BAA4B;IACrC,SAAS,EAAE,4BAA4B;CACxC,CAAC;AAEF,MAAM,oBAAoB,GAAoC;IAC5D,OAAO,EAAE,EAAE,KAAK,EAAE,qBAAqB,EAAE,IAAI,EAAE,qBAAqB,EAAE;IACtE,SAAS,EAAE,EAAE,KAAK,EAAE,YAAY,EAAE,IAAI,EAAE,eAAe,EAAE;CAC1D,CAAC;AAEF,MAAM,oBAAoB,GAAiC;IACzD,OAAO,EAAE,4BAA4B;IACrC,SAAS,EAAE,4BAA4B;CACxC,CAAC;AAEW,QAAA,cAAc,GAAG,IAAA,aAAG,EAC/B,CAAC,EAAE,SAAS,GAAG,EAAE,EAAE,OAAO,EAAE,MAAM,GAAG,EAAE,EAAE,OAAO,GAAG,SAAS,EAAE,MAAM,GAAG,IAAI,EAAE,EAAE,EAAE;IAC/E,MAAM,UAAU,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;IAC5C,MAAM,aAAa,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC;IACxD,MAAM,CAAC,gBAAgB,EAAE,mBAAmB,CAAC,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;IAEpE,OAAO,CACL,qCACE,EAAE,EAAE,MAAM,EACV,SAAS,EAAE,iEAAiE,SAAS;UACnF,sBAAsB,CAAC,OAAO,CAAC,EAAE,aAEnC,gCACE,SAAS,EAAC,0BAA0B,EACpC,KAAK,EAAE,EAAE,SAAS,EAAE,eAAe,gBAAgB,MAAM,EAAE,EAC3D,IAAI,EAAC,MAAM,YAEV,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,kBAAkB,CAAC,EAAE,GAAG,CAAC,EAAE,OAAO,EAAE,EAAE,CAAC,EAAE,OAAO,CAAC,CAAC,GAC3E,EAEN,gCAAK,SAAS,EAAC,yEAAyE,YACrF,UAAU,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,CAAC,EAAE,EAAE,CAC3B,eAAe,CAAC;oBACd,KAAK;oBACL,CAAC;oBACD,gBAAgB;oBAChB,OAAO,EAAE,GAAG,EAAE,CAAC,mBAAmB,CAAC,CAAC,CAAC;oBACrC,OAAO;iBACR,CAAC,CACH,GACG,IACE,CACX,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,SAAS,kBAAkB,CAAC,KAA+B,EAAE,CAAS,EAAE,OAAO;IAC7E,MAAM,EAAE,OAAO,EAAE,GAAG,KAAK,CAAC;IAC1B,MAAM,eAAe,GAAG,OAAO,CAAC,CAAC,CAAC,oBAAoB,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC;IAE3E,OAAO,CACL,oCAEE,SAAS,EAAC,qDAAqD,EAC/D,IAAI,EAAC,UAAU,YAEf,gCAAK,SAAS,EAAC,WAAW,YACxB,uBAAC,qCAAiB,IAChB,SAAS,EAAE,mBAAmB,eAAe,EAAE,EAC/C,OAAO,EAAE,OAAO,EAChB,kBAAkB,EAAC,YAAY,KAC3B,KAAK,GACT,GACE,IAXD,MAAM,CAAC,CAAC,CAAC,CAYN,CACX,CAAC;AACJ,CAAC;AAED,SAAS,eAAe,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,gBAAgB,EAAE,OAAO,EAAE,OAAO,EAAE;IACvE,MAAM,WAAW,GAAG,CAAC,KAAK,gBAAgB,CAAC;IAE3C,MAAM,YAAY,GAAG,WAAW;QAC9B,CAAC,CAAC,gFAAgF;QAClF,CAAC,CAAC;QACE,oBAAoB,CAAC,OAAO,CAAC,EAAE,CAAC;IACtC,MAAM,iBAAiB,GAAG,WAAW;QACnC,CAAC,CAAC,kCAAkC;QACpC,CAAC,CAAC,aAAa,oBAAoB,CAAC,OAAO,CAAC,CAAC,KAAK,EAAE,CAAC;IACvD,MAAM,gBAAgB,GAAG,WAAW;QAClC,CAAC,CAAC,4CAA4C;QAC9C,CAAC,CAAC,oBAAoB,oBAAoB,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,CAAC;IAE7D,MAAM,gBAAgB,GAAG,OAAO,KAAK,WAAW,CAAC,CAAC,CAAC,iBAAiB,CAAC,CAAC,CAAC,iBAAiB,CAAC;IAEzF,OAAO,CACL,mCACE,IAAI,EAAC,QAAQ,EAEb,OAAO,EAAE,OAAO,gBACJ,KAAK,EAAE,KAAK,EACxB,SAAS,EAAE;UACP,YAAY,IAAI,gBAAgB;OACnC,YAED,iCAAK,SAAS,EAAC,eAAe,aAC5B,gCAAK,SAAS,EAAE,eAAe,iBAAiB,EAAE,YAAG,KAAK,EAAE,KAAK,GAAO,EACxE,gCAAK,SAAS,EAAE,uBAAuB,gBAAgB,EAAE,YAAG,KAAK,CAAC,WAAW,GAAO,IAChF,IAVD,MAAM,CAAC,CAAC,CAAC,CAWP,CACV,CAAC;AACJ,CAAC"}
@@ -1,4 +1,5 @@
1
1
  import type { ProductBlockInnerContent } from '../ProductBlock/ProductBlockContent';
2
+ import type { BlockVersion } from '../../model/BlockVersion';
2
3
  /** @title Кнопка под слайдом */
3
4
  interface ProductGalleryNav {
4
5
  /** @title Заголовок */
@@ -16,18 +17,14 @@ export interface ProductSlide {
16
17
  productBlock: ProductBlockInnerContent;
17
18
  }
18
19
  /**
19
- * @title Продуктовая галерея (для мобильных горизонтальная прокрутка shift+mouseScroll)
20
+ * @title Продуктовая галерея
20
21
  */
21
22
  export interface ProductGalleryContent {
22
- /**
23
- * @title Задержка
24
- * @hidden //! temporary not used
25
- */
26
- duration?: number;
27
23
  /**
28
24
  * @title Слайды
29
25
  * @minItems 2
30
26
  */
31
27
  slides?: ProductSlide[];
28
+ version?: BlockVersion;
32
29
  }
33
30
  export {};
package/dist/types.d.ts CHANGED
@@ -65,3 +65,4 @@ export interface DaDataSuggestion<T> {
65
65
  export interface DaDataAddress {
66
66
  city?: string | null;
67
67
  }
68
+ export declare type FuncSetNumber = (value: number) => void;
@@ -7,5 +7,4 @@ declare type EmbeddableBlocksProps = {
7
7
  className?: string;
8
8
  };
9
9
  export declare const renderBlocksList: ({ blocks, context, className, columns }: EmbeddableBlocksProps) => any[] | null;
10
- export declare const renderBlock: ({ context, columns, className }: EmbeddableBlocksProps) => (block: BlockDef, i: number) => any;
11
10
  export {};
@@ -1,8 +1,8 @@
1
1
  Object.defineProperty(exports, "__esModule", { value: true });
2
- exports.renderBlock = exports.renderBlocksList = void 0;
2
+ exports.renderBlocksList = void 0;
3
3
  const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
4
  const EmbeddableBlocks_1 = require("./EmbeddableBlocks");
5
- const renderBlocksList = ({ blocks, context, className, columns }) => blocks?.length ? blocks.map((0, exports.renderBlock)({ context, className, columns })) : null;
5
+ const renderBlocksList = ({ blocks, context, className, columns }) => blocks?.length ? blocks.map(renderBlock({ context, className, columns })) : null;
6
6
  exports.renderBlocksList = renderBlocksList;
7
7
  const renderBlock = ({ context, columns, className }) => (block, i) => {
8
8
  const type = block?.blockListType;
@@ -13,5 +13,4 @@ const renderBlock = ({ context, columns, className }) => (block, i) => {
13
13
  const EmbeddedBlock = EmbeddableBlocks_1.EmbeddableBlocks[type];
14
14
  return ((0, jsx_runtime_1.jsx)("div", { className: `${className} ${columnsCountClass}`, children: (0, jsx_runtime_1.jsx)(EmbeddedBlock, { context: context, ...block, className: "!p-0" }) }, `block_${i}`));
15
15
  };
16
- exports.renderBlock = renderBlock;
17
16
  //# sourceMappingURL=renderBlocksList.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"renderBlocksList.js","sourceRoot":"","sources":["../../../src/ui-kit/BlocksList/renderBlocksList.tsx"],"names":[],"mappings":";;;AAGA,yDAAsD;AAS/C,MAAM,gBAAgB,GAAG,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,EAAyB,EAAE,EAAE,CACjG,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,IAAA,mBAAW,EAAC,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;AADtE,QAAA,gBAAgB,oBACsD;AAE5E,MAAM,WAAW,GACtB,CAAC,EAAE,OAAO,EAAE,OAAO,EAAE,SAAS,EAAyB,EAAE,EAAE,CAC3D,CAAC,KAAe,EAAE,CAAS,EAAE,EAAE;IAC7B,MAAM,IAAI,GAAG,KAAK,EAAE,aAAa,CAAC;IAClC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,IAAI,mCAAgB,CAAC,EAAE;QACxC,OAAO,IAAI,CAAC;KACb;IACD,MAAM,iBAAiB,GAAG,OAAO,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC;IACvD,MAAM,aAAa,GAAa,mCAAgB,CAAC,IAAI,CAAC,CAAC;IACvD,OAAO,CACL,gCAAK,SAAS,EAAE,GAAG,SAAS,IAAI,iBAAiB,EAAE,YACjD,uBAAC,aAAa,IAAC,OAAO,EAAE,OAAO,KAAM,KAAK,EAAE,SAAS,EAAC,MAAM,GAAG,IADP,SAAS,CAAC,EAAE,CAEhE,CACP,CAAC;AACJ,CAAC,CAAC;AAdS,QAAA,WAAW,eAcpB"}
1
+ {"version":3,"file":"renderBlocksList.js","sourceRoot":"","sources":["../../../src/ui-kit/BlocksList/renderBlocksList.tsx"],"names":[],"mappings":";;;AAGA,yDAAsD;AAS/C,MAAM,gBAAgB,GAAG,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,EAAyB,EAAE,EAAE,CACjG,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,WAAW,CAAC,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;AADtE,QAAA,gBAAgB,oBACsD;AAEnF,MAAM,WAAW,GACf,CAAC,EAAE,OAAO,EAAE,OAAO,EAAE,SAAS,EAAyB,EAAE,EAAE,CAC3D,CAAC,KAAe,EAAE,CAAS,EAAE,EAAE;IAC7B,MAAM,IAAI,GAAG,KAAK,EAAE,aAAa,CAAC;IAClC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,IAAI,mCAAgB,CAAC,EAAE;QACxC,OAAO,IAAI,CAAC;KACb;IACD,MAAM,iBAAiB,GAAG,OAAO,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC;IACvD,MAAM,aAAa,GAAa,mCAAgB,CAAC,IAAI,CAAC,CAAC;IACvD,OAAO,CACL,gCAAK,SAAS,EAAE,GAAG,SAAS,IAAI,iBAAiB,EAAE,YACjD,uBAAC,aAAa,IAAC,OAAO,EAAE,OAAO,KAAM,KAAK,EAAE,SAAS,EAAC,MAAM,GAAG,IADP,SAAS,CAAC,EAAE,CAEhE,CACP,CAAC;AACJ,CAAC,CAAC"}
@@ -13,5 +13,5 @@ const CHECK_PATHS = [
13
13
  ];
14
14
  exports.Checkbox = (0, uni_jsx_1.JSX)(({ text, checked, onChange, className }) => ((0, jsx_runtime_1.jsx)("div", { className: className, children: (0, jsx_runtime_1.jsxs)("label", { className: "flex items-center cursor-pointer relative", children: [(0, jsx_runtime_1.jsx)("input", { className: `peer appearance-none w-5 h-5 border-solid border ${checked ? 'border-black' : 'border-main-stroke'} rounded checked:bg-primary-main checked:border-primary-main m-0`, type: "checkbox", onChange: (e) => {
15
15
  onChange(e.target.checked);
16
- }, checked: checked }), (0, jsx_runtime_1.jsx)(SVG_1.SVG, { paths: CHECK_PATHS, className: "hidden absolute left-1 ml-px peer-checked:block", width: "11", height: "9", fill: "white", viewBox: "0 0 11 9" }), text ? ((0, jsx_runtime_1.jsx)("span", { className: "font-sans ml-3 text-sm leading-5 cursor-pointer", children: text })) : null] }) })));
16
+ }, checked: checked }), (0, jsx_runtime_1.jsx)(SVG_1.SVG, { paths: CHECK_PATHS, className: "hidden absolute left-1 ml-px peer-checked:block", width: "11", height: "9", fill: "white", viewBox: "0 0 11 9" }), text ? (0, jsx_runtime_1.jsx)("span", { className: "font-sans ml-3 text-m-base cursor-pointer", children: text }) : null] }) })));
17
17
  //# sourceMappingURL=Checkbox.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Checkbox.js","sourceRoot":"","sources":["../../../src/ui-kit/Checkbox/Checkbox.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AAExC,gCAA6B;AAE7B,MAAM,WAAW,GAAG;IAClB;QACE,CAAC,EAAE,4HAA4H;QAC/H,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;QACnB,IAAI,EAAE,OAAO;KACd;CACF,CAAC;AAEW,QAAA,QAAQ,GAAG,IAAA,aAAG,EAAgB,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,EAAE,EAAE,CAAC,CACrF,gCAAK,SAAS,EAAE,SAAS,YACvB,mCAAO,SAAS,EAAC,2CAA2C,aAC1D,kCACE,SAAS,EAAE,oDACT,OAAO,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,oBAC7B,kEAAkE,EAClE,IAAI,EAAC,UAAU,EACf,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE;oBACd,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;gBAC7B,CAAC,EACD,OAAO,EAAE,OAAO,GAChB,EACF,uBAAC,SAAG,IACF,KAAK,EAAE,WAAW,EAClB,SAAS,EAAC,iDAAiD,EAC3D,KAAK,EAAC,IAAI,EACV,MAAM,EAAC,GAAG,EACV,IAAI,EAAC,OAAO,EACZ,OAAO,EAAC,UAAU,GAClB,EACD,IAAI,CAAC,CAAC,CAAC,CACN,iCAAM,SAAS,EAAC,iDAAiD,YAAE,IAAI,GAAQ,CAChF,CAAC,CAAC,CAAC,IAAI,IACF,GACJ,CACP,CAAC,CAAC"}
1
+ {"version":3,"file":"Checkbox.js","sourceRoot":"","sources":["../../../src/ui-kit/Checkbox/Checkbox.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AAExC,gCAA6B;AAE7B,MAAM,WAAW,GAAG;IAClB;QACE,CAAC,EAAE,4HAA4H;QAC/H,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;QACnB,IAAI,EAAE,OAAO;KACd;CACF,CAAC;AAEW,QAAA,QAAQ,GAAG,IAAA,aAAG,EAAgB,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,EAAE,EAAE,CAAC,CACrF,gCAAK,SAAS,EAAE,SAAS,YACvB,mCAAO,SAAS,EAAC,2CAA2C,aAC1D,kCACE,SAAS,EAAE,oDACT,OAAO,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,oBAC7B,kEAAkE,EAClE,IAAI,EAAC,UAAU,EACf,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE;oBACd,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;gBAC7B,CAAC,EACD,OAAO,EAAE,OAAO,GAChB,EACF,uBAAC,SAAG,IACF,KAAK,EAAE,WAAW,EAClB,SAAS,EAAC,iDAAiD,EAC3D,KAAK,EAAC,IAAI,EACV,MAAM,EAAC,GAAG,EACV,IAAI,EAAC,OAAO,EACZ,OAAO,EAAC,UAAU,GAClB,EACD,IAAI,CAAC,CAAC,CAAC,iCAAM,SAAS,EAAC,2CAA2C,YAAE,IAAI,GAAQ,CAAC,CAAC,CAAC,IAAI,IAClF,GACJ,CACP,CAAC,CAAC"}
@@ -21,7 +21,7 @@ exports.InputRange = (0, uni_jsx_1.JSX)(({ className, title, items = [], min = 1
21
21
  if (value > max)
22
22
  onChange(max);
23
23
  };
24
- return ((0, jsx_runtime_1.jsxs)("div", { className: className, children: [(0, jsx_runtime_1.jsxs)("label", { className: "block relative", children: [title ? ((0, jsx_runtime_1.jsx)("span", { className: "absolute text-xs text-secondary-text top-1 mt-0.5 pl-4 ml-0.5", children: title })) : null, (0, jsx_runtime_1.jsx)("input", { className: `m-0 font-sans text-sm w-full h-12 border border-solid border-main-stroke rounded-md
25
- outline-none p-0 pl-4 m-0 box-border text-primary-text ${title ? 'pt-4' : ''}`, value: (0, addSpacesBetweenNumbers_1.addSpacesBetweenNumbers)(value), onChange: (e) => handleChange(e.target.value), onBlur: handleBlur }), (0, jsx_runtime_1.jsx)("div", { className: "absolute inset-x-0 top-[35px] px-4 leading-[18px]", children: (0, jsx_runtime_1.jsx)("input", { className: "box-border w-full m-0 cursor-pointer slider", type: "range", min: min, max: max, step: step, value: value, onChange: (e) => handleChange(e.target.value), style: inputStyle }) })] }), (0, jsx_runtime_1.jsx)("div", { className: "flex justify-between my-3", children: items.map((item, i) => ((0, jsx_runtime_1.jsxs)("span", { className: "text-xs leading-[14px] text-secondary-text pl-4", children: [" ", item, " "] }, String(i)))) })] }));
24
+ return ((0, jsx_runtime_1.jsxs)("div", { className: className, children: [(0, jsx_runtime_1.jsxs)("label", { className: "block relative", children: [title ? (0, jsx_runtime_1.jsx)("span", { className: "text-base text-secondary-text pl-4", children: title }) : null, (0, jsx_runtime_1.jsx)("input", { className: `m-0 mt-[5px] font-sans text-title w-full h-14 border border-solid border-main-stroke rounded-md
25
+ outline-none p-0 pl-4 box-border text-primary-text`, value: (0, addSpacesBetweenNumbers_1.addSpacesBetweenNumbers)(value), onChange: (e) => handleChange(e.target.value), onBlur: handleBlur }), (0, jsx_runtime_1.jsx)("div", { className: "absolute inset-x-0 bottom-[-4px] px-4 leading-[18px]", children: (0, jsx_runtime_1.jsx)("input", { className: "box-border w-full m-0 cursor-pointer slider", type: "range", min: min, max: max, step: step, value: value, onChange: (e) => handleChange(e.target.value), style: inputStyle }) })] }), (0, jsx_runtime_1.jsx)("div", { className: "flex justify-between my-3", children: items.map((item, i) => ((0, jsx_runtime_1.jsx)("span", { className: "text-sm leading-[14px] text-secondary-text pl-4", children: item }, String(i)))) })] }));
26
26
  });
27
27
  //# sourceMappingURL=InputRange.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"InputRange.js","sourceRoot":"","sources":["../../../src/ui-kit/InputRange/InputRange.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AACxC,iFAA8E;AAGjE,QAAA,UAAU,GAAG,IAAA,aAAG,EAC3B,CAAC,EAAE,SAAS,EAAE,KAAK,EAAE,KAAK,GAAG,EAAE,EAAE,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,EAAE,IAAI,GAAG,CAAC,EAAE,KAAK,GAAG,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE;IACxF,MAAM,YAAY,GAAG,CAAC,KAAa,EAAE,EAAE;QACrC,IAAI,CAAC,QAAQ;YAAE,OAAO;QACtB,MAAM,cAAc,GAAG,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC;QACxD,QAAQ,CAAC,cAAc,CAAC,CAAC;IAC3B,CAAC,CAAC;IACF,MAAM,UAAU,GAAG;QACjB,cAAc,EAAE,GAAG,CAAC,CAAC,CAAC,KAAK,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,GAAG,GAAG,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ;KAC5E,CAAC;IACF,MAAM,UAAU,GAAG,GAAG,EAAE;QACtB,IAAI,CAAC,QAAQ;YAAE,OAAO;QACtB,IAAI,KAAK,GAAG,GAAG;YAAE,QAAQ,CAAC,GAAG,CAAC,CAAC;QAC/B,IAAI,KAAK,GAAG,GAAG;YAAE,QAAQ,CAAC,GAAG,CAAC,CAAC;IACjC,CAAC,CAAC;IACF,OAAO,CACL,iCAAK,SAAS,EAAE,SAAS,aACvB,mCAAO,SAAS,EAAC,gBAAgB,aAC9B,KAAK,CAAC,CAAC,CAAC,CACP,iCAAM,SAAS,EAAC,+DAA+D,YAC5E,KAAK,GACD,CACR,CAAC,CAAC,CAAC,IAAI,EACR,kCACE,SAAS,EAAE;iFAC2D,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAG,EAAE,EAC5F,KAAK,EAAE,IAAA,iDAAuB,EAAC,KAAK,CAAC,EACrC,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,EAC7C,MAAM,EAAE,UAAU,GAClB,EACF,gCAAK,SAAS,EAAC,mDAAmD,YAChE,kCACE,SAAS,EAAC,6CAA6C,EACvD,IAAI,EAAC,OAAO,EACZ,GAAG,EAAE,GAAG,EACR,GAAG,EAAE,GAAG,EACR,IAAI,EAAE,IAAI,EACV,KAAK,EAAE,KAAK,EACZ,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,EAC7C,KAAK,EAAE,UAAU,GACjB,GACE,IACA,EACR,gCAAK,SAAS,EAAC,2BAA2B,YACvC,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC,CACtB,kCAAsB,SAAS,EAAC,iDAAiD,kBAAG,IAAI,UAA7E,MAAM,CAAC,CAAC,CAAC,CAA6E,CAClG,CAAC,GACE,IACF,CACP,CAAC;AACJ,CAAC,CACF,CAAC"}
1
+ {"version":3,"file":"InputRange.js","sourceRoot":"","sources":["../../../src/ui-kit/InputRange/InputRange.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AACxC,iFAA8E;AAGjE,QAAA,UAAU,GAAG,IAAA,aAAG,EAC3B,CAAC,EAAE,SAAS,EAAE,KAAK,EAAE,KAAK,GAAG,EAAE,EAAE,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,EAAE,IAAI,GAAG,CAAC,EAAE,KAAK,GAAG,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE;IACxF,MAAM,YAAY,GAAG,CAAC,KAAa,EAAE,EAAE;QACrC,IAAI,CAAC,QAAQ;YAAE,OAAO;QACtB,MAAM,cAAc,GAAG,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC;QACxD,QAAQ,CAAC,cAAc,CAAC,CAAC;IAC3B,CAAC,CAAC;IACF,MAAM,UAAU,GAAG;QACjB,cAAc,EAAE,GAAG,CAAC,CAAC,CAAC,KAAK,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,GAAG,GAAG,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ;KAC5E,CAAC;IACF,MAAM,UAAU,GAAG,GAAG,EAAE;QACtB,IAAI,CAAC,QAAQ;YAAE,OAAO;QACtB,IAAI,KAAK,GAAG,GAAG;YAAE,QAAQ,CAAC,GAAG,CAAC,CAAC;QAC/B,IAAI,KAAK,GAAG,GAAG;YAAE,QAAQ,CAAC,GAAG,CAAC,CAAC;IACjC,CAAC,CAAC;IACF,OAAO,CACL,iCAAK,SAAS,EAAE,SAAS,aACvB,mCAAO,SAAS,EAAC,gBAAgB,aAC9B,KAAK,CAAC,CAAC,CAAC,iCAAM,SAAS,EAAC,oCAAoC,YAAE,KAAK,GAAQ,CAAC,CAAC,CAAC,IAAI,EACnF,kCACE,SAAS,EAAE;2EACoD,EAC/D,KAAK,EAAE,IAAA,iDAAuB,EAAC,KAAK,CAAC,EACrC,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,EAC7C,MAAM,EAAE,UAAU,GAClB,EACF,gCAAK,SAAS,EAAC,sDAAsD,YACnE,kCACE,SAAS,EAAC,6CAA6C,EACvD,IAAI,EAAC,OAAO,EACZ,GAAG,EAAE,GAAG,EACR,GAAG,EAAE,GAAG,EACR,IAAI,EAAE,IAAI,EACV,KAAK,EAAE,KAAK,EACZ,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,EAC7C,KAAK,EAAE,UAAU,GACjB,GACE,IACA,EACR,gCAAK,SAAS,EAAC,2BAA2B,YACvC,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC,CACtB,iCAAsB,SAAS,EAAC,iDAAiD,YAC9E,IAAI,IADI,MAAM,CAAC,CAAC,CAAC,CAEb,CACR,CAAC,GACE,IACF,CACP,CAAC;AACJ,CAAC,CACF,CAAC"}
@@ -1,3 +1,4 @@
1
+ import type { FuncSetNumber } from '../../types';
1
2
  export interface InputRangeProps {
2
3
  className?: string;
3
4
  items?: string[];
@@ -6,5 +7,5 @@ export interface InputRangeProps {
6
7
  step?: number;
7
8
  value?: number;
8
9
  title?: string;
9
- onChange?: (value: number) => void;
10
+ onChange?: FuncSetNumber;
10
11
  }
@@ -1,4 +1,5 @@
1
1
  import type { Picture } from '../../model/Picture';
2
+ import { FuncSetNumber } from '../../types';
2
3
  /**
3
4
  * @title Вкладка
4
5
  */
@@ -9,7 +10,7 @@ export interface Tab {
9
10
  description?: string;
10
11
  icon?: Picture;
11
12
  }
12
- export declare type TabClickHandler = (value: number) => void;
13
+ export declare type TabClickHandler = FuncSetNumber;
13
14
  export interface TabsProps {
14
15
  tabs?: Tab[];
15
16
  currentTabIndex: number;