@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
@@ -1 +1 @@
1
- !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).UniBlocks={})}(this,(function(e){"use strict";const t=(e,n)=>{t._jsx=e,t._jsxs=n||e};t.vue=e=>{t(((t,{children:n,dangerouslySetInnerHTML:r,...a}={})=>{const l=Object.assign({},a,r?{innerHTML:r.__html}:{});return e(t,l,"string"!=typeof t?()=>n:n)}))};const n=(...e)=>t._jsx(...e),r=(...e)=>t._jsxs(...e),a=e=>(e._tmpl||(e._tmpl=function(t,n){const{children:r,...a}=t||{},l=n?.slots?.default,i=r||l&&l();return e(Object.assign(a,i&&{children:i}),n)},e._tmpl.inheritAttrs=!1),e._tmpl);const l="likesToken";const i={h1:"text-title-xl tracking-[-0.3px]",h2:"text-title-lg",h3:"text-title",h4:"text-title-sm",h5:"text-title-xs",h6:"text-title-2xs tracking-[0.2px]"},s=a((e=>{const{className:t="",headingType:r,title:a,as:l}=e;if(!r)return;return n(l||r,{className:`font-sans m-0 ${i[r]} ${t}`,children:a})}));var o,c;!function(e){e.ActualBalanceIcon="ActualBalanceIcon",e.AppleIcon="AppleIcon",e.ArrowDownIcon="ArrowDownIcon",e.ArrowLeftIcon="ArrowLeftIcon",e.ArrowsRewindRight="ArrowsRewindRight",e.ArrowUpIcon="ArrowUpIcon",e.AtmIcon="AtmIcon",e.BankIcon="BankIcon",e.BurgerIcon="BurgerIcon",e.BurgerIconWhite="BurgerIconWhite",e.Calendar2Icon="Calendar2Icon",e.CalendarCircleIcon="CalendarCircleIcon",e.CalendarIcon="CalendarIcon",e.CalendarTickIcon="CalendarTickIcon",e.CalendarWhiteIcon="CalendarWhiteIcon",e.CardIcon="CardIcon",e.CardPosIcon="CardPosIcon",e.CardTickIcon="CardTickIcon",e.CardWithGemIcon="CardWithGemIcon",e.ChartSquareIcon="ChartSquareIcon",e.ClockIcon="ClockIcon",e.CloseIcon="CloseIcon",e.ComfortableCompIcon="ComfortableCompIcon",e.CreditCardsIcon="CreditCardsIcon",e.DiscountShapeIcon="DiscountShapeIcon",e.DocIcon="DocIcon",e.DocIconMonoColor="DocIconMonoColor",e.DocumentTextIcon="DocumentTextIcon",e.DollarIcon="DollarIcon",e.EarthIcon="EarthIcon",e.EmptyWalletChangeIcon="EmptyWalletChangeIcon",e.EmptyWalletIcon="EmptyWalletIcon",e.EmptyWalletWhiteIcon="EmptyWalletWhiteIcon",e.EuroIcon="EuroIcon",e.GeolocationIcon="GeolocationIcon",e.GlassIcon="GlassIcon",e.GlobalIcon="GlobalIcon",e.GpsIcon="GpsIcon",e.GridIcon="GridIcon",e.GridIconWhite="GridIconWhite",e.InterestGrowthIcon="InterestGrowthIcon",e.InterestIcon="InterestIcon",e.JCBIcon="JCBIcon",e.LoupeIcon="LoupeIcon",e.MasterCardIcon="MasterCardIcon",e.MinusIcon="MinusIcon",e.MirIcon="MirIcon",e.MoneyIcon="MoneyIcon",e.MoneyInsuranceIcon="MoneyInsuranceIcon",e.MonitorMobileIcon="MonitorMobileIcon",e.NewDocIcon="NewDocIcon",e.OfficeIcon="OfficeIcon",e.OkIcon="OkIcon",e.PassSendIcon="PassSendIcon",e.PercentageRoundIcon="PercentageRoundIcon",e.PercentageSquareIcon="PercentageSquareIcon",e.PercentageSquareWhiteIcon="PercentageSquareWhiteIcon",e.PersonalCardIcon="PersonalCardIcon",e.PlayMarketIcon="PlayMarketIcon",e.PlusIcon="PlusIcon",e.Profile2UserIcon="Profile2UserIcon",e.ProfileIcon="ProfileIcon",e.RoundRubleIcon="RoundRubleIcon",e.SafeIcon="SafeIcon",e.ShieldTickIcon="ShieldTickIcon",e.SignDocsIcon="SignDocsIcon",e.SmallClockIcon="SmallClockIcon",e.TelegramIcon="TelegramIcon",e.UnionPayIcon="UnionPayIcon",e.UserTickIcon="UserTickIcon",e.VisaIcon="VisaIcon",e.VKIcon="VKIcon",e.WalletAdd2Icon="WalletAdd2Icon",e.WalletAddIcon="WalletAddIcon",e.WalletIcon="WalletIcon",e.WalletWithMoneyIcon="WalletWithMoneyIcon"}(o||(o={})),function(e){e.ActualBalanceIcon="Деньги",e.AppleIcon="Лого «Apple»",e.ArrowDownIcon="Стрелка 'Вниз'",e.ArrowLeftIcon="Стрелка",e.ArrowsRewindRight="ArrowsRewindRight",e.ArrowUpIcon="ArrowUpIcon",e.AtmIcon="Банкомат",e.BankIcon="Банк",e.BurgerIcon="Бургер",e.BurgerIconWhite="Бургер (белый)",e.Calendar2Icon="Календарь 2",e.CalendarCircleIcon="Скруглённый календарь",e.CalendarIcon="Календарь",e.CalendarTickIcon="Календарь с галочкой",e.CalendarWhiteIcon="Календарь белый",e.CardIcon="Кред. карта",e.CardPosIcon="Кред. карта под наклоном",e.CardTickIcon="Кред. карта с галочкой",e.CardWithGemIcon="Карта с драгоценностями",e.ChartSquareIcon="Деньги внутри кошелька",e.ClockIcon="Часы",e.CloseIcon="Крестик",e.ComfortableCompIcon="Кресло",e.CreditCardsIcon="Кредитные карты",e.DiscountShapeIcon="Скидка",e.DocIcon="Документ",e.DocIconMonoColor="Документ (одноцветный)",e.DocumentTextIcon="Документ с текстом",e.DollarIcon="Доллар",e.EarthIcon="Земля",e.EmptyWalletChangeIcon="Пустой кошелёк с возвратом",e.EmptyWalletIcon="Пустой кошелёк",e.EmptyWalletWhiteIcon="Пустой кошелёк (белый)",e.EuroIcon="Евро",e.GeolocationIcon="Геолокация",e.GlassIcon="Зеркало",e.GlobalIcon="Глобус",e.GpsIcon="Gps",e.GridIcon="Сетка",e.GridIconWhite="Сетка (белая)",e.InterestGrowthIcon="Диаграмма роста",e.InterestIcon="Скидка",e.JCBIcon="JCB",e.LoupeIcon="Лупа",e.MasterCardIcon="MasterCard",e.MinusIcon="Минус",e.MirIcon="МИР",e.MoneyIcon="Деньги",e.MoneyInsuranceIcon="Денежное страхование",e.MonitorMobileIcon="Монитор и мобильный",e.NewDocIcon="Новый документ",e.OfficeIcon="Офис",e.OkIcon="Лого «Одноклассники»",e.PassSendIcon="Бизнес",e.PercentageRoundIcon="Проценты (круг.)",e.PercentageSquareIcon="Проценты",e.PercentageSquareWhiteIcon="Проценты белые",e.PersonalCardIcon="Персональная карта",e.PlayMarketIcon="Лого «PlayMarket»",e.PlusIcon="Плюс",e.Profile2UserIcon="Профиль, 2 персоны",e.ProfileIcon="Профиль",e.RoundRubleIcon="Рубль (круг.)",e.SafeIcon="Сейф",e.ShieldTickIcon="Безопасность",e.SignDocsIcon="Подписанные документы",e.SmallClockIcon="Маленькие часы",e.TelegramIcon="Лого «Telegram»",e.UnionPayIcon="UnionPay",e.UserTickIcon="Пользователь",e.VisaIcon="Visa",e.VKIcon="Лого «VK»",e.WalletAdd2Icon="Пополнение карты",e.WalletAddIcon="Кошелёк с плюсом",e.WalletIcon="Кошелёк",e.WalletWithMoneyIcon="Кошелёк с деньгами"}(c||(c={}));const d=new class{_={PROD_BRANCH:"master",FORCED_DRAFT_FLOW:!1};setup(e){this._=e}get TEST_BRANCH(){return this._.TEST_BRANCH}get RC_BRANCH(){return this._.RC_BRANCH}get PROD_BRANCH(){return this._.PROD_BRANCH}get FORCED_DRAFT_FLOW(){return this._.FORCED_DRAFT_FLOW}get ENABLE_ASSIST(){return this._.ENABLE_ASSIST}get SITEMAP(){return this._.SITEMAP}get CDN(){return this._.CDN}},m=a((({className:e="",name:t="",alt:a=`Иконка ${c[t]||t}`,title:l=a,iconVersion:i,asSVG:s,...o})=>{const m=`${d.CDN||""}icons/${t}.svg`,h="white"===i?"text-black invert":"";return s?r("svg",{className:e,...o,"aria-hidden":"true",children:[l?n("title",{children:l}):null,a?n("desc",{children:a}):null,n("use",{className:h,href:`${m}#icon`,xlinkHref:`${m}#icon`})]}):n("img",{className:e,src:m,alt:a,title:l,...o,"aria-hidden":"true"})}));function h(e){return"string"==typeof e?"normal":e.iconVersion||"normal"}const x=a((({className:e="",image:t,imageClassName:r="",...a})=>{if(!t)return null;const l="string"==typeof t?t:t.icon;return l||""===l?l.length?n(m,{className:e,iconVersion:h(t),name:l,...a}):null:n(u,{className:e,imageClassName:r,image:t})})),u=a((({className:e="",image:t,imageClassName:a=""})=>t?r("picture",{className:`flex-none ${e}`,children:[t?.sources?.length?t.sources.map((({src:e,format:t},r)=>n("source",{srcSet:e,type:b(t)},`${r}_${e}`))):null,p(t,a)]}):null)),p=(e,t="")=>{const r={width:e.size?.width?`${e.size?.width}px`:"100%",height:e.size?.height?`${e.size?.height}px`:"100%"},a=e.title||"",l=e.alt||e.title;return n("img",{src:e.src,className:t,alt:l,title:a,style:r,...e.size})};function b(e){return e?`image/${String(e)}`:void 0}const g={left:"text-left",center:"text-center",right:"text-right"},f={transparent:{background:"bg-transparent",text:"text-primary-text",description:"text-primary-text"},primary:{background:"bg-white",text:"text-primary-text",description:"text-primary-text"},secondary:{background:"bg-primary-main",text:"text-white",description:"text-white/80"}},N=a((({bgColorHeadline:e="transparent",align:t="left",className:a="",title:l,description:i,anchor:o=null})=>{const c=f[e];return r("section",{className:`p-[50px] ${c.background} ${a}`,id:o,children:[l&&n(s,{headingType:"h2",className:`text-primary-text ${c.text} ${g[t]}`,title:l}),i&&n("p",{className:`font-normal text-base mt-4 ${c.text} ${g[t]}`,children:i})]})})),v=a((({className:e,iconClassName:t,textClassName:a,suffixClassName:l,doc:i,icon:s})=>{const{text:o,fileSize:c,...d}=i;return r("a",{className:e,role:"link",...d,children:[s?n(x,{className:t,image:s,width:"24px",height:"24px",asSVG:!0}):null,o?r("span",{className:a,children:[o,n("span",{className:l,children:d?.href&&y(w(d.href),c)})]}):null]})})),y=(e,t)=>(e||t?",":"")+(e?` ${e}`:"")+(t?` (${t})`:""),w=e=>{if(!e)return"";const t=e.lastIndexOf(".");return-1!==t?e.substring(t+1):""},I=a((({className:e="",doc:t,icon:r})=>n(v,{className:`flex h-full box-border ${e}`,iconClassName:"mr-2.5 min-w-6 min-h-6",textClassName:"self-center font-light",suffixClassName:"text-secondary-text group-hover:text-primary-main",doc:t,icon:r}))),k=a((({className:e,documents:t,columnsMode:r="double",icon:a})=>t?.length?n("div",{className:e,role:"list",children:t.map(((e,t)=>n("div",{className:"double"===r?"basis-[calc(50%-20px)]":"",role:"listitem",children:n(I,{className:"group flex align-middle h-fit w-fit text-primary-text no-underline hover:text-primary-main",doc:e,icon:a})},String(t))))}):null)),C={left:"text-left",center:"text-center",right:"text-right"},$={double:"mb-8",single:"mb-[26px]"},S={double:"flex gap-x-5 gap-y-[26px] flex-wrap",single:"flex gap-3.5 flex-col"},T=a((({className:e="",title:t,subtitle:a,align:l,documents:i,icon:o={icon:"DocIcon"},columnsMode:c="double",anchor:d=null})=>r("section",{className:`font-sans text-primary-text p-[50px] bg-white ${e}`,id:d,children:[t?n(s,{headingType:"h2",className:`${a?"mb-2.5":$[c]} ${C[l??"center"]}`,title:t}):null,a?n("h3",{className:`text-base mt-0 font-normal ${$[c]} ${C[l??"center"]}`,children:a}):null,n(k,{className:S[c],columnsMode:c,documents:i,icon:o})]}))),D={primary:"bg-white text-primary-text",secondary:"bg-primary-main text-white"},A=a((({className:e="",title:t,image:a,benefits:l,version:i="primary",directionRight:o=!1,anchor:c=null})=>r("section",{className:`relative font-sans p-14 ${D[i]} ${e}`,id:c,children:[n(s,{headingType:"h2",className:"text-center",title:t}),r("div",{className:"flex justify-center mt-9",children:[a?.src&&n(x,{className:o?"order-2 ml-6":"mr-6",image:a}),l?.length?n("div",{className:"flex flex-col",children:l.map(((e,t)=>function(e,t,a){return r("div",{className:"flex flex-row mb-8",children:[e.icon?n(x,{className:"w-[48px] h-[48px] bg-main rounded-full box-border p-[12px]",image:e.icon,width:"48",height:"48",asSVG:!0}):null,r("div",{className:"flex gap-1 flex-col h-full ml-5 max-w-[490px]",children:[e.label&&n("div",{className:"font-medium text-xl m-0 "+("primary"===a?"text-primary-text":""),children:e.label}),e.description&&n("div",{className:"font-normal text-sm "+("primary"===a?"text-secondary-text":""),children:e.description})]})]},String(t))}(e,t,i)))}):null]})]})));const R=e=>e?.includes("//"),M=e=>(e||"").replace(/\/?\?.*/,""),L=e=>{if(!e||!R(e))return;const t=e,n=t.indexOf("//"),r=t.indexOf("/",n+"//".length);return-1!==r?t.substring(0,r):t},P=e=>{if(!e||!R(e))return;const t=e.indexOf("#");return-1!==t?e.substring(t,e.length):void 0};var B=Object.freeze({__proto__:null,isURL:R,withoutQuery:M,getOrigin:L,getHash:P});const j="/mobile",_=(e,t)=>{if(!e)return e;const n=L(t?.href);return n?e.replace(n,"")||"/":e},G=e=>e;function V({router:e,handlerDecorator:t=G},n){const r=((e,t)=>{if(!e)return e;const n=_(e,t)||"",r=t?.pathname.startsWith(j);return r&&!R(n)?`/mobile${n}`:n})(n.href,e);return{...n,href:r,"aria-label":n.text,onClick:t((t=>{const a=r&&!R(r),l=!n.target||"_self"===n.target;a&&l&&(t.preventDefault(),e.push(r))}),n)}}const W=a((({text:e,href:t,target:r,onClick:a,className:l="",children:i})=>t?n("a",{className:`no-underline ${l}`,href:t,target:r,onClick:a,children:n("span",{className:l,children:e||i})}):n("span",{className:l,children:e||i})));function E(e){return t=>t.reduce(((t,n,r)=>t.length?t.concat({...e,key:r},n):[n]),[])}const O=a((e=>{const{text:t,aboveText:a,appendLeft:l}=e;return r("div",{className:F(e),children:[l||null,U(e)?r("div",{children:[n("div",{className:"text-m-2xs font-light text-left",children:a}),n("div",{className:"text-button text-left",children:t})]}):null]})})),F=e=>{const{version:t,aboveText:n,rounded:r}=e;if("link"===t)return"";const a="px-8 gap-2 "+(n?"py-2":"py-[18px]");return["flex items-center justify-center",U(e)?a:"h-12 w-12",r?"rounded-full":""].join(" ")},U=({text:e,aboveText:t,appendLeft:n})=>Boolean(e||t||!n),H={primary:"text-white bg-primary-main hover:bg-primary-hover active:bg-primary-active",secondary:"text-primary-main bg-secondary-light hover:bg-secondary-hover active:bg-secondary-active",link:""},Z={primary:"bg-secondary-dark text-secondary-text",secondary:"bg-secondary-light text-secondary-text",link:""},z="text-center font-sans select-none",q=a((e=>{const{text:t,aboveText:r,appendLeft:a,children:l,disabled:i,rounded:s,...o}=e,c=l??n(O,{text:t,aboveText:r,appendLeft:a,rounded:s});return n(i?K:J,{rounded:s,...o,children:c})})),J=a((({className:e="",ariaLabel:t,version:r="none",rounded:a,href:l,target:i,children:s,onClick:o,...c})=>n("a",{className:`${z} inline-block cursor-pointer no-underline ${H[r]||""} ${a?"rounded-full":"rounded-md"} ${e}`,href:l,target:i,onClick:o,"aria-label":t,role:l?"link":"button",...c,children:s}))),K=a((({className:e,children:t,ariaLabel:r,version:a="none",rounded:l})=>n("div",{role:"button","aria-disabled":"true","aria-label":r,tabIndex:"-1",className:`inline-block ${z} ${Z[a]||""} ${l?"rounded-full":"rounded-md"} ${e||""}`,children:t}))),X=a((({context:e,className:t="",buttons:r})=>{const{handlerDecorator:a}=e,l=e.useRouter();return r?.length?n("div",{className:`${t}`,children:r.map(((e,t)=>function({icon:e,...t},r){if(!t?.text)return;return n(q,e?{appendLeft:n(x,{image:e,width:"24",height:"24",asSVG:!0}),...t}:{...t},String(r))}(V({router:l,handlerDecorator:a},e),t)))}):null}));const Q=a((e=>{const{className:t="",description:r}=e;return n("div",{className:`font-normal text-base ${t}`,children:r})})),Y={primary:"rounded-full inline-block mr-3 mt-2",secondary:"rounded-full inline-block mr-3 mt-2",gray:"rounded-full inline-block mr-3 mt-2",tile:"rounded-full inline-block mr-4 mt-3","tile-white":"rounded-full inline-block mr-4 mt-3"},ee={primary:"bg-primary-text",secondary:"bg-white",gray:"bg-secondary-text",tile:"bg-black","tile-white":"bg-white"},te=a((({className:e="",isDotted:t=!0,children:a,version:l="primary"})=>r("div",{className:`font-sans flex items-start ${e}`,role:"listitem",children:[t?n("div",{className:ne(l)}):null,n("span",{children:a})]}))),ne=e=>`${Y[e]} ${ee[e]} ${{primary:"w-2 h-2 min-w-2 min-h-2",secondary:"w-2 h-2 min-w-2 min-h-2",gray:"w-1.5 h-1.5 min-w-1.5 min-h-1.5",tile:"w-[7px] h-[7px] min-w-[7px] min-h-[7px]","tile-white":"w-[7px] h-[7px] min-w-[7px] min-h-[7px]"}[e]}`,re={primary:"text-primary-text",secondary:"text-white",gray:"text-secondary-text",tile:"text-primary-text","tile-white":"text-white"},ae=a((e=>{const{className:t="",itemClassName:r,isDotted:a,items:l,version:i="primary"}=e;return n("section",{className:`${re[i]} ${t}`,role:"list",children:l?.length?l.map(((e,t)=>n(te,{className:r,isDotted:a,version:i,children:e},String(t)))):null})})),le=a((({className:e="",title:t,children:a,buttons:l,image:i,anchor:s=null})=>r("div",{className:`font-sans flex flex-col grow h-full items-start ${e}`,id:s,children:[t,r("div",{className:"flex grow w-full justify-between",children:[r("div",{className:"flex flex-col justify-between w-full",children:[n("div",{children:a}),l?n("div",{children:l}):null]}),i]})]}))),ie={primary:"text-primary-text",secondary:"text-white"},se={primary:"text-secondary-text",secondary:"text-white"};function oe(e,t){let n="bg-primary-main text-black";return"secondary"===e?n="bg-white/30 text-black":"normal"===t&&(n="bg-secondary-light text-primary-main"),`w-[50px] h-[50px] min-w-[50px] min-h-[50px] rounded-full p-[10px] box-border ${n}`}const ce=a((({className:e="",context:t,title:a,headingType:l="h2",description:i,benefits:s,benefitsVersion:o="normal",buttons:c,image:d,items:m,version:h="primary",isDotted:u=!0,textBlockClassName:p=""})=>{const b="secondary"===h?"text-white":"text-primary-text";return r("div",{className:`flex grow justify-between items-stretch ${e}`,children:[n("div",{className:`flex flex-col ${p}`,children:r(le,{context:t,title:de(a,l),buttons:me(t,c),children:[i&&n(Q,{className:`mt-4 max-w-[600px] text-md font-light ${b}`,description:i}),s?.filter((e=>e.label))?.length?n("div",{className:"flex gap-6 mt-6",children:s.map(((e,t)=>function({benefit:e,version:t="primary",benefitsVersion:a="normal"},l){const i="white"===a||"secondary"===t;return r("div",{className:"flex gap-4 items-center",children:[e.icon?n(x,{className:oe(t,a),image:{...e?.icon,iconVersion:i?"white":"normal"},width:"24",height:"24",asSVG:!0}):null,r("div",{className:"flex gap-0.5 flex-col h-full max-w-[149px] min-w-[149px]",children:[n("div",{className:`text-xl m-0 ${ie[t]}`,children:e.label}),e.description&&n("div",{className:`font-light text-m-md ${se[t]}`,children:e.description})]})]},String(l))}({benefit:e,version:h,benefitsVersion:o},t)))}):null,m?.length?n(ae,{className:"mt-5 text-title-2xs font-light",items:m,itemClassName:"mb-[7px]",version:h,isDotted:u}):null]})}),d?.src&&n(x,{className:"mt-[-50px]",image:d})]})})),de=(e,t)=>e&&n(s,{headingType:t,title:e,className:"whitespace-pre-wrap max-w-[600px]"}),me=(e,t)=>t?.length?n(X,{context:e,buttons:t,className:"flex mt-9 gap-4"}):null;function he(e,t,a){return r("div",{className:`flex items-center ${a}`,children:[n(q,{version:t,rounded:!0,className:"w-12 h-12 min-h-12 min-w-12 flex items-center justify-center mr-3",ariaLabel:e?.text,href:e?.href,children:n(x,{className:"w-4 h-4",image:e?.icon||{icon:"ArrowLeftIcon"},asSVG:!0})}),e?.text?n("span",{className:"text-m-md font-light",children:e.text}):null]})}const xe={primary:"bg-white text-primary-text",secondary:"bg-primary-main text-white"},ue={primary:"text-secondary-text",secondary:"text-white/80"},pe=a((e=>{const{context:t,className:a="",breadcrumbs:l,backwardButton:i,version:s="primary",anchor:o=null,...c}=e,d=t.useRouter(),{handlerDecorator:m}=t;return r("section",{className:`font-sans overflow-hidden pt-[50px] pl-[50px] pb-[50px] pr-[7.5rem] box-border min-h-[420px] ${xe[s]} ${a}`,id:o,children:[i?.text?he(i,s,"mb-10 -mt-2.5"):null,l?.length?n("div",{className:"text-xs mb-6",children:E(n("span",{className:`mx-2 ${ue[s]}`,children:"/"}))(l.map(((e,t)=>n(W,{...V({router:d,handlerDecorator:m},{className:ue[s],...e})},String(t)))))}):null,n(ce,{context:t,version:s,...c})]})})),be={primary:{background:"bg-white",icon:"bg-primary-main text-white",title:"text-primary-text",description:"text-secondary-text"},secondary:{background:"bg-primary-main",icon:"bg-white text-primary-main",title:"text-white",description:"text-white"},"secondary-light":{background:"bg-primary-main/10",icon:"bg-primary-main text-white",title:"text-primary-text",description:"text-secondary-text"}},ge=a((({title:e,description:t,blockVersion:a="primary",iconVersion:l,image:i,className:s,anchor:o=null})=>{const c=be[a];return r("section",{className:`font-sans px-9 py-4 flex ${c.background} ${s||""}`,id:o,children:["small"===l?fe(c.icon):null,"big"===l?Ne(i):null,r("div",{className:"py-0.5",children:[e&&n("div",{className:`font-medium text-base mb-1 ${c.title}`,children:e}),t&&n("div",{className:`text-sm ${c.description}`,children:t})]})]})}));function fe(e){return n("div",{className:"pt-1.5 pl-1 pr-4",children:n("div",{className:`rounded-full h-4 w-4 text-center text-xs ${e}`,children:"i"})})}function Ne(e){return e?.src?n(x,{className:"pt-0.5 pr-3",image:e}):null}const ve=e=>{const t="col-span-",n=e.split(/\s+/).find((e=>e.startsWith(t)));return n?parseInt(n.substring(t.length),10):12};function ye(e=""){const t=ve(e);return t<=6?"min-h-[300px]":t<=8?"min-h-[320px]":"min-h-[360px]"}function we(e=""){const t=ve(e);return t<=6?"pr-9":t<=8?"pr-[4.75rem]":"pr-[9.4rem]"}const Ie={primary:"bg-white text-primary-text",secondary:"bg-primary-main text-white"},ke=a((e=>{const{context:t,title:a,headingType:l="h3",description:i,items:o,children:c,buttons:d,image:m,className:h="",version:u="primary",role:p,anchor:b=null}=e;return n("section",{className:`overflow-hidden font-sans p-9 pr-3 box-border ${h} ${Ie[u]} ${we(h)} ${ye(h)} `,role:p,id:b,children:r(le,{context:t,title:a&&n(s,{headingType:l,as:"h3",title:a,className:`whitespace-pre-wrap max-w-[600px] ${a?"mb-3":""}\n ${"primary"===u?"text-primary-text":""}`}),buttons:d?.length?n(X,{context:t,buttons:d,className:"flex mt-9 gap-3"}):null,image:m?.src&&n(x,{className:"mt-auto ml-7",image:m}),children:[i&&n(Q,{className:"max-w-[600px] text-title-new-sm font-light",description:i}),c,Ce(o,u)]})})}));function Ce(e,t){return e?.length?n(ae,{items:e,itemClassName:"text-title-2xs font-light mt-2",version:"primary"===t?"tile":"tile-white"}):null}const $e={primary:"bg-white text-primary-text",secondary:"bg-primary-main text-white"},Se=a((({context:e,className:t="",title:a,headingType:l="h3",description:i,benefits:o,buttons:c,image:d,version:m="primary",anchor:h=null})=>n("section",{className:`bg-white overflow-hidden text-primary-text font-sans p-9 box-border ${t} ${$e[m]} ${we(t)} ${ye(t)} `,id:h,children:r(le,{context:e,title:a&&n(s,{headingType:l,as:"h3",title:a,className:"whitespace-pre-wrap max-w-[600px]"}),buttons:c?.length?n(X,{context:e,buttons:c,className:"flex mt-9 gap-3"}):null,image:d?.src&&n(x,{className:"mt-auto ml-7",image:d}),children:[i?n(Q,{className:"mt-4 max-w-[600px]",description:i}):null,r("div",{className:"flex mt-5 mb-1",children:[o?.length?n("div",{className:"mr-8",children:o.map(Te)}):null,o?.length?n("div",{className:"pt-1",children:o.map(((e,t)=>function(e,t,r="primary"){return n("div",{className:`text-sm ${t?"mt-4":""} ${{primary:"text-secondary-text",secondary:"text-white"}[r]}`,children:e.description},String(t))}(e,t,m)))}):null]})]})})));function Te(e,t){return n("div",{className:"text-xl font-medium "+(t?"mt-2.5":""),children:e.label},String(t))}const De=a((({className:e,disabled:t,...r})=>n(q,{rounded:!0,className:`shadow-[0_4px_25px_rgba(0,0,0,0.07)] w-12 h-12 min-h-12 max-h-12 flex items-center justify-center ${t?"bg-secondary-light text-secondary-text":"bg-white text-primary-text hover:text-primary-main"} ${e||""}`,disabled:t,...r,children:n(x,{className:"w-4 h-4 min-w-4 min-h-4 rounded-full box-border",image:{icon:"ArrowLeftIcon"},width:"16",height:"16",asSVG:!0})}))),Ae={primary:"bg-white text-secondary-text",secondary:"bg-primary-main text-white"},Re={normal:3,mini:4},Me={normal:"min-w-[364px] w-[364px]",mini:"min-w-[260px] w-[260px]"},Le={normal:380,mini:276},Pe=a((({title:e,description:t,image:a,items:l,button:i,version:s,isDotted:o=!0})=>{const c=function(e){return`text-xl m-0\n ${"secondary"!==e?"text-primary-text":""}\n `}(s);return r("div",{className:"h-full flex flex-col justify-between text-center",children:[r("div",{children:[a?.src?n("div",{className:"flex justify-center",children:n(x,{className:"mb-6",image:a})}):null,e?je(e,c):null,t?n("div",{className:"font-light text-m-md-new "+(e?"mt-2":""),children:t}):null,l?.length?_e(l,s,o):null]}),i?.text?Be(i):null]})}));function Be(e){return n(q,{className:"mt-6 w-full",appendLeft:e.icon&&n(x,{image:e.icon,width:"24px",height:"24px",asSVG:!0}),...e})}function je(e,t){return n("div",{className:`text-xl m-0 ${t}`,children:e})}function _e(e,t="primary",r){return n(ae,{className:"max-w-[308px] mt-2 text-sm "+("primary"===t?"!text-secondary-text":""),itemClassName:"mt-1 first:mt-0",items:e.filter((e=>e?.text)).map((e=>e.text)),isDotted:r,version:t})}const Ge=a((({context:e,title:t,description:a,cards:l=[],version:i="normal",activeCardIndex:o})=>r("div",{children:[n("div",{className:"absolute top-0 left-0 bottom-0 w-[84px] bg-gradient-to-r from-white to-transparent"}),r("div",{className:"flex flex-col items-center mb-8",children:[t?n(s,{headingType:"h2",className:"text-center",title:t}):null,a?n("div",{className:"font-light text-md max-w-[600px] mt-2.5",children:a}):null]}),n("div",{className:`flex ${l?.length<=Re[i]?"justify-center":""} duration-1000`,style:{transform:`translateX(-${o*Le[i]}px)`},role:"list",children:l?.map(((t,r)=>function({card:e,version:t},r){return n("section",{className:`box-border border-solid border border-main-stroke p-6 mx-2 flex flex-col justify-between\n items-stretch ${Me[t]} ${Ae[e.version??"primary"]} w-full col-span-4`,role:"listitem",children:n(Pe,{...e})},String(r))}({card:t,version:i,context:e},r)))})]})));const Ve=a((({context:e,cards:t=[],className:a="",version:l="normal",anchor:i=null,...s})=>{const[o,c]=e.useState(0),d=t?.length>Re[l],m=d&&t?.length-o>Re[l],h=d&&o>0;return r("section",{className:`relative font-sans text-primary-text bg-white p-[42px] overflow-hidden ${a}`,id:i,children:[n(Ge,{context:e,cards:t,version:l,activeCardIndex:o,...s}),h&&n(De,{className:"absolute top-1/2 left-8 z-10 mt-[25px]",onClick:()=>c(o-1),ariaLabel:"Пролистать влево","data-block-control":"scroll-left"}),m&&n(De,{className:"absolute top-1/2 right-8 z-10 mt-[25px] rotate-180",onClick:()=>c(o+1),ariaLabel:"Пролистать вправо","data-block-control":"scroll-right"}),n("div",{className:"absolute top-0 left-0 bottom-0 w-[84px] bg-opacity-from-white"}),n("div",{className:"absolute top-0 right-0 bottom-0 w-[100px] bg-opacity-to-white"})]})})),We=a((e=>n(Ve,{...e,version:"normal"}))),Ee=a((e=>n(Ve,{...e,version:"mini"}))),Oe=a((({className:e="",documents:t,anchor:r=null})=>n("section",{className:`font-sans bg-white mt-[10px] ${e}`,id:r,children:n("ul",{className:"flex flex-col text-sm text-secondary-text p-0",children:t?.length?Fe(t):null})}))),Fe=e=>e.map(((e,t)=>{const{text:r,...a}=e;return n("li",{className:"mb-4 list-none",children:n("a",{className:"hover:text-primary-main",role:"link",...a,children:r||null})},`list_item_${String(t)}`)})),Ue={Headline:N,LinkDocs:T,TextBlock:ge,PictureText:A,ProductBlock:pe,Tile:ke,ProductTile:Se,Gallery:We,MiniGallery:Ee,LinkList:Oe},He=({blocks:e,context:t,className:n,columns:r})=>e?.length?e.map(Ze({context:t,className:n,columns:r})):null,Ze=({context:e,columns:t,className:r})=>(a,l)=>{const i=a?.blockListType;if(!i||!(i in Ue))return null;return n("div",{className:`${r} ${2===t?"w-1/2":""}`,children:n(Ue[i],{context:e,...a,className:"!p-0"})},`block_${l}`)},ze=a((({blocks:e,context:t})=>n("div",{className:"transition-all duration-300 max-h-0 overflow-hidden",children:He({context:t,className:"mb-5 last:mb-0 pb-5",blocks:e})}))),qe=a((({label:e,isExpanded:t,blocks:a,context:l})=>{const{isActive:i,hasContent:s,icon:o,handleToggle:c}=(({context:e,blocks:t,initialState:n=!1})=>{const[r,a]=e.useState(n),l=t?.length;return{isActive:r,hasContent:l,icon:r?"MinusIcon":"PlusIcon",handleToggle:e=>{if(!l)return;a(!r);const t=(({currentTarget:e})=>e.nextSibling)(e);t.style.maxHeight=t.style.maxHeight?null:`${t.scrollHeight}px`}}})({context:l,blocks:a,initialState:t});return r("li",{className:"border-0 border-b border-solid border-main-divider last:border-b-0",children:[r("button",{className:`border-none bg-transparent px-0 py-5 flex justify-between text-left w-full font-sans\n ${s?"group cursor-pointer":""}\n `,onClick:c,children:[n("span",{className:"text-xl pr-2.5 font-medium",children:e}),s?n(x,{image:o,className:"text-primary-main",width:"24",height:"24",asSVG:!0}):null]}),s?n(ze,{isExpanded:i,blocks:a,context:l}):null]})})),Je=a((({title:e,description:t,accordionItems:a,context:l,className:i="",anchor:o=null})=>r("section",{className:`p-[50px] font-sans bg-white text-primary-text ${i}`,id:o,children:[e?n(s,{headingType:"h4",className:"mb-2.5",title:e}):null,t?n("div",{className:"mb-2.5 text-base",children:t}):null,a?.length?n("ul",{className:"list-none m-0 p-0",children:a.map(((e,t)=>n(qe,{...e,context:l},`AccordionItem${t}`)))}):null]}))),Ke=a((({className:e,title:t,benefits:a,anchor:l=null})=>r("section",{className:`font-sans text-primary-text bg-white p-12 flex flex-col items-center ${e||""}`,id:l,children:[t?n(s,{headingType:"h2",className:"max-w-[47rem] text-center",title:t}):null,a?.length?n("div",{className:"grid grid-cols-2 gap-8 mt-9",children:a.map(Xe)}):null]}))),Xe=(e,t)=>r("div",{className:"flex items-center gap-5 max-w-[500px]",children:[e.icon?n(x,{className:"h-[70px] w-[70px] min-w-[70px] min-h-[70px]",image:e.icon,width:"70",height:"70"}):null,r("div",{children:[n("h3",{className:"font-medium text-xl m-0",children:e.label}),e.description&&n("div",{className:"font-normal text-sm mt-2",children:e.description})]})]},String(t)),Qe=a((e=>{const{className:t="",title:a,description:l,bonusItems:i,anchor:o=null}=e;return n("section",{className:`font-sans bg-white p-[50px] pb-9 ${t}`,id:o,children:r("div",{className:"container",children:[a?n(s,{headingType:"h3",className:"text-center",title:a}):null,l?n("div",{className:"text-md font-light text-center mt-[10px]",children:l}):null,n("div",{className:"flex flex-wrap w-full mt-9",children:i?i.map(((e,t)=>n("div",{className:"flex-grow w-[49%] border border-gray pl-9 pt-9 pr-6 pb-6 mb-[14px] mx-[7px] even:mr-0 odd:ml-0 last:odd:mx-0",children:r("div",{className:"flex justify-between w-full",children:[r("div",{className:"mr-4",children:[n("div",{className:"text-title-sm",children:e.name}),n("div",{className:"text-md font-light mt-[14px] max-w-[488px]",children:e.description})]}),e.bonusCount?r("div",{className:"relative -bottom-3 h-auto flex items-end mt-14 shrink-0",children:[n("span",{className:"font-mohave -tracking-[5px] text-title-extra bg-clip-text text-transparent bg-green-to-yellow -mb-7",children:e.bonusCount}),n("span",{className:"text-[44px] bg-clip-text text-transparent bg-green-to-yellow",children:e.bonusName})]}):null]})},String(t)))):null})]})})})),Ye=a((({children:e})=>n("div",{className:"self-start flex flex-col",role:"row",children:n("div",{className:"flex",children:e})}))),et="bg-gradient-to-r from-main-gradient-start to-main-gradient-end",tt="border-main-stroke border-solid border",nt="border-main-divider border border-t-0 border-x-0",rt="w-[200px] mr-6",at={comparison:"flex gap-4 duration-1000",tariff:"flex flex-grow duration-1000"},lt=a((({children:e,activeCardIndex:t,columnWidth:r,version:a="comparison"})=>n("div",{className:"flex flex-1 overflow-hidden",children:n("div",{className:at[a],style:{transform:`translateX(-${t*r}px)`},children:e})}))),it=a((({icon:e,image:t,title:a,link:l})=>r("div",{className:`w-80 box-border flex flex-col items-center rounded-t-md border-b-0 px-7 pt-7 pb-[46px] ${tt} ${et}`,role:"columnheader",scope:"col",children:[e&&!t?.src&&n(x,{className:"h-[63px] w-[63px] min-w-[63px] min-h-[63px] mb-4",image:e,width:"63",height:"63"}),t?.src&&n(x,{className:"mb-[18px]",image:t}),a?n(s,{headingType:"h4",as:"h3",className:"text-center text-white",title:a}):null,l?.text&&n("div",{className:"mt-auto w-full",children:n(q,{href:l.href,target:l.target,className:"mt-4 w-full text-primary-main bg-white hover:bg-secondary-hover active:bg-secondary-active",children:n("div",{className:"font-medium text-xs py-[11px]",children:l.text})})})]}))),st=a((({colHeaders:e,activeCardIndex:t,router:a,handlerDecorator:l})=>r(Ye,{children:[n("div",{className:rt,role:"columnheader",scope:"col"}),n(lt,{activeCardIndex:t,columnWidth:336,children:e.map(((e,t)=>n(it,{...e,link:e.link&&V({router:a,handlerDecorator:l},e.link)},String(t))))})]}))),ot=a((({cell:e,isFirstRow:t,isLastRow:r,isFillGradient:a})=>n("div",{className:`w-80 box-border flex flex-col ${tt} ${r?"border-t-0 rounded-b-md":"border-y-0"} ${a?et:""}`,role:"cell",children:n("div",{className:`mx-7 h-full ${nt} ${a&&t?"border-t":""} ${r?"border-b-0":"border-solid"}`,children:e.map(((e,t)=>ct(e,t,a)))})}))),ct=({label:e,description:t},a,l)=>r("div",{className:"first:pt-7 pt-6 last:pb-7",children:[e&&n("h4",{className:"text-xl font-medium m-0 "+(l?"text-white":""),children:e}),t&&n("div",{className:"text-sm opacity-80 "+(l?"text-white":"text-secondary-text"),children:t})]},String(a)),dt=a((({row:{header:e,data:t},activeCardIndex:a,isColoredFirstColumn:l,isFirstRow:i,isLastRow:s})=>r(Ye,{children:[e?.title?n("div",{className:`text-sm py-7 ${nt} w-[200px] mr-6 ${s?"border-b-0":"border-solid"}`,children:e.title}):null,t?.length?n(lt,{activeCardIndex:a,columnWidth:336,children:t.map(((e,t)=>n(ot,{cell:e,isFirstRow:i,isLastRow:s,isFillGradient:l&&0===t},String(t))))}):null]}))),mt=a((({isScrollAvailable:e,onNextClick:t,onPrevClick:a,showNextButton:l,showPrevButton:i})=>e?n("div",{children:r("div",{className:"absolute top-7 right-7 z-10",children:[n(De,{className:"mt-4 rotate-180",onClick:t,disabled:!l,ariaLabel:"Пролистать вправо","data-block-control":"scroll-right"}),n(De,{className:"mt-4",onClick:a,disabled:!i,ariaLabel:"Пролистать влево","data-block-control":"scroll-left"})]})}):null)),ht=a((({rowData:e,activeCardIndex:t,isColoredFirstColumn:a,...l})=>r("div",{className:"relative",children:[e.map(((e,r,{length:l})=>n(dt,{row:e,isFirstRow:0===r,isLastRow:r+1===l,activeCardIndex:t,isColoredFirstColumn:a},String(r)))),n(mt,{...l})]}))),xt=({columnsLength:e,colsLengthForScroll:t,activeCardIndex:n,setActiveCardIndex:r})=>{const a=e>t;return{onNextClick:()=>r(n+1),onPrevClick:()=>r(n-1),isScrollAvailable:a,showNextButton:a&&e-n>t,showPrevButton:Boolean(a&&n>0)}},ut=a((({context:e,columns:t,rowHeaders:a,isShowAllRow:l,visibleRowLength:i,isColoredFirstColumn:s})=>{const o=e.useRouter(),{handlerDecorator:c}=e,d=t?.map((({header:e})=>e||{})),m=t?.map((({data:e})=>e))||[],h=a?.map(((e,t)=>({header:e,data:m.map((e=>e?.[t]||[{}]))}))).slice(0,l?a.length:i),[x,u]=e.useState(0),p=xt({columnsLength:m.length,colsLengthForScroll:2,activeCardIndex:x,setActiveCardIndex:u}),{isScrollAvailable:b}=p;return r("div",{children:[r("div",{role:"table",children:[d?.length?n(st,{colHeaders:d,activeCardIndex:x,router:o,handlerDecorator:c}):null,h?.length?n(ht,{rowData:h,activeCardIndex:x,isColoredFirstColumn:s,...p}):null]}),b?n("div",{className:"absolute top-0 right-0 bottom-0 w-[84px] bg-opacity-to-white"}):null]})})),pt=a((({className:e,context:t,title:a,rowHeaders:l,columns:i,visibleRowLength:o=0,isColoredFirstColumn:c=!1,anchor:d=null})=>{const[m,h]=t.useState(!o);return r("section",{className:`bg-white font-sans py-[50px] pl-[50px] overflow-hidden text-primary-text relative ${e||""}`,id:d,children:[n(s,{headingType:"h2",className:"max-w-[47rem] text-center mb-9 mx-auto",title:a}),n(ut,{context:t,columns:i,rowHeaders:l,isShowAllRow:m,isColoredFirstColumn:c,visibleRowLength:o}),o?bt({isShowAllRow:m,onClick:()=>h(!m)}):null]})})),bt=({isShowAllRow:e,onClick:t})=>n("div",{className:"pr-[50px]",children:r("div",{className:"flex w-full",children:[n("div",{className:rt}),n("button",{onClick:t,className:"mt-5 flex-1 border-main-stroke border-solid border text-primary-text bg-white hover:border-primary-main hover:text-primary-main",children:n("div",{className:"font-sans font-medium text-xs py-[11px]",children:e?"Скрыть":"Показать все параметры"})})]})}),gt=a((({tabs:e,currentTabIndex:t,onTabClick:r})=>n("div",{className:"flex items-end border-b border-main-stroke",role:"tablist",children:e?.map(ft(t,r))}))),ft=(e,t)=>(a,l)=>{const i=e===l;return r("div",{className:"flex h-full flex-1 cursor-pointer mr-2 last:mr-0 box-content "+(i?"px-2 h-16 pt-4 pb-2 text-white bg-primary-main":"px-2 h-14 pb-2 pt-3 border border-b-0 border-main-stroke"),role:"tab",onClick:()=>t(l),"aria-selected":String(i),children:[a?.icon?Nt(a,i):null,r("div",{children:[a?.title?n("h3",{className:"font-medium m-0 text-base",children:a?.title}):null,a?.description?n("span",{className:"font-light text-xs "+(i?"":"text-secondary-text"),children:a?.description}):null]})]},String(l))},Nt=(e,t)=>n("div",{className:"h-full mt-1",children:n(x,{className:"w-5 h-5 mr-3 "+(t?"invert":""),image:e?.icon||"CardIcon",asSVG:!t})});function vt(e=""){const t=ve(e);return t<=4?"h4":t<=8?"h3":"h2"}async function yt(e){const t=await fetch(e);return await t.json()}const wt=a((({className:e,viewBox:t,fill:r="none",width:a,height:l,paths:i,...s})=>n("svg",{xmlns:"http://www.w3.org/2000/svg",className:e,viewBox:t,fill:r,width:a,height:l,children:i.map((({d:e,fill:t,...r},a)=>n("path",{d:e,fill:t||"currentColor",...s,...r},a)))}))),It=[{d:"M10.207.793a1 1 0 0 1 0 1.414l-6 6a1 1 0 0 1-1.414 0l-2.5-2.5a1 1 0 0 1 1.414-1.414L3.5 6.086 8.793.793a1 1 0 0 1 1.414 0Z",fillRule:"evenodd",clipRule:"evenodd",fill:"white"}],kt=a((({text:e,checked:t,onChange:a,className:l})=>n("div",{className:l,children:r("label",{className:"flex items-center cursor-pointer relative",children:[n("input",{className:`peer appearance-none w-5 h-5 border-solid border ${t?"border-black":"border-main-stroke"} rounded checked:bg-primary-main checked:border-primary-main m-0`,type:"checkbox",onChange:e=>{a(e.target.checked)},checked:t}),n(wt,{paths:It,className:"hidden absolute left-1 ml-px peer-checked:block",width:"11",height:"9",fill:"white",viewBox:"0 0 11 9"}),e?n("span",{className:"font-sans ml-3 text-sm leading-5 cursor-pointer",children:e}):null]})}))),Ct=(e,t,n)=>Math.max(t,Math.min(e,n)),$t=3e4,St=3e6,Tt=Math.round(41.5),Dt=(At=[[e=>1===e,"год"],[e=>e<=4,"года"],[()=>!0,"лет"]],e=>{const[,t]=At.find((([t])=>t(e)))||[];return t});var At;const Rt=e=>new Intl.NumberFormat("ru-RU",{maximumSignificantDigits:3}).format(e),Mt=a((({className:e,title:t,items:a=[],min:l=1,max:i=100,step:s=1,value:o=l,onChange:c})=>{const d=e=>{if(!c)return;const t=Number(e.replace(/\D/g,""));c(t)},m={backgroundSize:`${(100*(o-l)/(i-l)).toFixed(2)}% 100%`};return r("div",{className:e,children:[r("label",{className:"block relative",children:[t?n("span",{className:"absolute text-xs text-secondary-text top-1 mt-0.5 pl-4 ml-0.5",children:t}):null,n("input",{className:"m-0 font-sans text-sm w-full h-12 border border-solid border-main-stroke rounded-md\n outline-none p-0 pl-4 m-0 box-border text-primary-text "+(t?"pt-4":""),value:Rt(o),onChange:e=>d(e.target.value),onBlur:()=>{c&&(o<l&&c(l),o>i&&c(i))}}),n("div",{className:"absolute inset-x-0 top-[35px] px-4 leading-[18px]",children:n("input",{className:"box-border w-full m-0 cursor-pointer slider",type:"range",min:l,max:i,step:s,value:o,onChange:e=>d(e.target.value),style:m})})]}),n("div",{className:"flex justify-between my-3",children:a.map(((e,t)=>r("span",{className:"text-xs leading-[14px] text-secondary-text pl-4",children:[" ",e," "]},String(t))))})]})}));function Lt(e){const{minMonths:t,maxMonths:r,monthsValue:a,defaultMonths:l,setMonthsValue:i}=e;return n(Mt,{className:"mt-[23px]",title:"Срок кредита, месяцев",items:["Или выберите из предложенных вариантов ниже"],min:t,max:r,step:1,value:a||l,onChange:i})}function Pt(e,t){return r("div",{className:"box-border h-fit p-9 bg-primary-main rounded-md text-white",children:[n("div",{className:"text-base mb-[18px]",children:"Наше предложение"}),n("div",{className:"text-sm opacity-60",children:"Ежемесячный платёж"}),r("div",{className:"text-lg mb-3",children:[Rt(Math.round(e))," ₽"]}),n("div",{className:"text-sm opacity-60",children:"Ставка"}),r("div",{className:"text-lg",children:[t," %"]})]})}function Bt(e){const{calculatorParams:t,moneyValue:r,defaultSum:a,setMoneyValue:l}=e,i=t?.minSum||$t,s=t?.maxSum||St;return n(Mt,{title:"Желаемая сумма кредита, ₽",items:[`От ${Rt(i)} рублей`,`До ${Rt(s)} рублей`],min:i,max:s,step:1e3,value:r||a,onChange:l})}const jt=a((({context:e,directoryName:t})=>{const[a,l]=e.useState(void 0),[i,s]=e.useState(void 0),[o,c]=e.useState(!0),[d,m]=e.useState(!0),h=function(e,t){const{data:n}=e(function(e){return`/wcms-resources/${e||"credit-calculator-data"}.json`}(t),yt);return n||{}}(e.useAsyncData,t).rows,x=(e=>{const{tableRows:t,isAnnuity:n=!1}=e;return t&&t.find((e=>e.isAnnuity===n))||{}})({tableRows:h,isAnnuity:o}),u=(e=>e.maxSum&&e.minSum?(e.maxSum-e.minSum)/2:1485e3)(x),p=(e=>e.maxMonths&&e.minMonths?Math.round((e.maxMonths-e.minMonths)/2):Tt)(x),b=x?.minMonths||1,g=x?.maxMonths||84,f=(e=>{const{calculatorParams:t,isInsurance:n}=e;return t?n?t?.rateWithInsurance||5:t?.rateWithoutInsurance||5:5})({calculatorParams:x,isInsurance:d}),N=(e=>{const{calculatorParams:t,paymentType:n,rate:r,sum:a,months:l}=e;if(!t)return 0;const i=Ct(a,t.minSum||$t,t.maxSum||St);if("annuity"===n){const e=Number(r)/1200;return i*(e+e/(Math.pow(1+e,l)-1))}return i/l+i*(Number(r)/12)})({calculatorParams:x,paymentType:"annuity",rate:f,sum:a||u,months:i||p}),v=((e,t)=>{const n=Math.ceil((t-e)/12),r=Math.floor(e/12)+1,a=new Array(Math.min(n-1,5)).fill(0).map(((e,t)=>r+t)),l=n+r-1;return a.concat(l)})(b,g);function y(e){s(Ct(12*e,b,g))}return n("section",{className:"mt-7",children:r("div",{className:"box-border p-[49px] pr-[56px] mx-auto w-max border-solid border-[3px] border-primary-main rounded-md",children:[r("div",{className:"flex justify-between",children:[r("div",{className:"mr-[42px]",children:[Bt({calculatorParams:x,moneyValue:a,defaultSum:u,setMoneyValue:l}),Lt({minMonths:b,maxMonths:g,monthsValue:i,defaultMonths:p,setMonthsValue:s}),n("div",{className:"flex mb-7",children:v.map(((e,t)=>function(e,t,a){const l=Dt(e);return n("button",{className:"bg-secondary-light rounded-3xl h-10 w-[75px] box-border mr-2 flex items-center justify-center cursor-pointer border-none",onClick:()=>a(e),children:r("span",{className:"font-semibold text-sm",children:[e," ",l]})},String(t))}(e,t,y)))}),n(kt,{text:"Получаю пенсию на карту Россельхозбанка",checked:o,onChange:c}),n(kt,{className:"mt-3 mb-7",text:"Комплексная страховая защита",checked:d,onChange:m})]}),Pt(N,f)]}),r("div",{className:"flex items-center",children:[n(q,{className:"mr-3",text:"Отправить заявку",version:"primary",href:"#"}),n("div",{className:"w-80 text-2xs leading-4 text-secondary-text","aria-label":"Соглашение на обработку персональных данных",children:"Отправляя заявку, вы соглашаетесь на обработку персональных данных соответственно требованиям ФЗ «О персональных данных»"})]})]})})})),_t=[{title:"Кредит",description:"Ставка от 6% до 7 лет",directoryName:"credit-calculator-data",icon:{icon:"CardIcon"}},{title:"Кредит",description:"Ставка от 4% до 7 лет",directoryName:"credit-calculator-data1",icon:{icon:"ChartSquareIcon"}},{title:"Кредит",description:"Ставка от 3% до 6 лет",directoryName:"credit-calculator-data2",icon:{icon:"DiscountShapeIcon"}}],Gt=a((({className:e="",context:t,tabs:a=_t,anchor:l=null})=>{const[i,o]=t.useState(0);return r("section",{className:`font-sans text-primary-text py-10 bg-white ${e}`,id:l,children:[n(s,{className:"w-full text-center mb-8",headingType:vt(e),title:"Калькулятор"}),n(gt,{tabs:a,currentTabIndex:i,onTabClick:o}),n(jt,{context:t,directoryName:a[i]?.directoryName})]})}));async function Vt(){try{const e=await fetch(Wt);return await e.json()}catch(e){console.error(e)}}const Wt="/api/v1/exchangerates.json",Et=new Intl.NumberFormat("ru",{style:"currency",currency:"RUB"}),Ot=e=>e?Et.format(e):"",Ft="font-light text-left font-normal text-sm text-secondary-text",Ut={USD:"DollarIcon",EUR:"EuroIcon"},Ht=a((({className:e,exchangeCurrencyItems:t})=>r("table",{className:`h-fit w-fit ${e}`,children:[n("thead",{children:r("tr",{children:[n("th",{className:Ft,children:"Валюта"}),n("th",{className:`${Ft} pl-11`,children:"Купить"}),n("th",{className:`${Ft} pl-11`,children:"Продать"})]})}),n("tbody",{children:t.map((e=>Zt(e)))})]}))),Zt=e=>{const t=e?.currency?.currency;return r("tr",{className:"pb-1",children:[n("td",{className:"pt-4",children:r("div",{className:"flex items-center",children:[t?n(x,{image:{icon:Ut[t]},width:"24",height:"24"}):null,n("span",{className:"text-m-title-md ml-2",children:t})]})}),n("td",{className:"pt-4 pl-11 m-title-md font-light",children:Ot(e.buyExchangeRate)}),n("td",{className:"pt-4 pl-11 m-title-md font-light",children:Ot(e.saleExchangeRate)})]},t)},zt=a((({className:e="",address:t,distance:a})=>r("div",{className:`flex text-sm ${e}`,children:[n(x,{image:{icon:"GpsIcon"},width:"24",height:"24",asSVG:!0}),r("div",{className:"ml-3 font-light",children:[t?n("p",{className:"m-0 mb-[3px]",children:t}):null,a?r("p",{className:"text-secondary-text m-0",children:["Курс указан для ближайшего офиса - ",a]}):null]})]}))),qt=a((({className:e="",id:t,name:r,type:a="text",placeholder:l})=>n("input",{className:e,id:t,name:r||t,type:a,placeholder:l}))),Jt=a((({className:e="",id:t,name:r,children:a})=>n("select",{className:e,id:t,name:r||t,children:a}))),Kt=a((({className:e="",value:t,selected:r,children:a})=>n("option",{className:e,value:`${t}`,selected:r,children:a}))),Xt=a((({codes:e,className:t=""})=>r("div",{className:`grid gap-3.5 ${t}`,children:[Qt("Хочу продать",e),Qt("Получу",e,"USD"),n(q,{className:"box-border mt-3.5 py-3 h-12 w-full",version:"primary",href:"#",children:"Купить валюту"})]})));function Qt(e,t,a){return r("div",{className:"relative flex items-center",children:[n(qt,{className:"h-10 border pl-4 pt-[7px] pb-[7px] rounded-md text-m-sm w-full appearance-none -mr-12",type:"number",placeholder:`${e}`}),t.length?n(Jt,{className:"h-9 -translate-x-4",children:t.map(((e,t)=>n(Kt,{value:e,selected:e===a,children:e},String(t))))}):null]})}const Yt=["USD","EUR"],en=["RUB","USD","EUR"],tn=[{buyExchangeRate:90.6,saleExchangeRate:92.8,currency:{id:2,code:"978",currency:"EUR",name:"Евро"}},{buyExchangeRate:73.75,saleExchangeRate:75.95,currency:{id:1,code:"840",currency:"USD",name:"Американский доллар"}}],nn={address:"Москва, ул.Ленина д.28",distance:"6км"},rn=a((({className:e="",context:t,title:a="Курсы обмена валют",anchor:l=null})=>{const i=function(e){const{data:t}=e(Wt,Vt);return t||{}}(t.useAsyncData)?.exchangeRate?.currencies?.filter((e=>-1!==Yt.indexOf(e?.currency?.currency||"")))||tn;return n("section",{className:`bg-white text-primary-text font-sans p-9 box-border ${e}`,id:l,children:n(le,{context:t,title:n(s,{headingType:vt(e),title:a,className:"whitespace-pre-wrap"}),children:r("div",{className:"flex",children:[r("div",{className:"mr-[43px] pt-4",children:[i?n(Ht,{className:"mb-[31px]",exchangeCurrencyItems:i}):null,n(zt,{...nn})]}),i?.length?n(Xt,{className:"grow",exchangeCurrencyItems:i,codes:en}):null]})})})})),an=["m13.72 25.51 4.42-4.33v-2.95l-4.42 4.32v2.96Zm0-10.98 4.42-4.35V7.41l-4.42 4.31v2.8Zm0 3.63 4.42-4.33v-2.78l-4.42 4.32v2.8ZM12.46 7.44l-.6-.56V0h-.66v6.22l-.58-.57V0h-.67v5l-.59-.58V0H8.7v6.56l4.44 4.33V0h-.67v7.44Zm1.26 14.35 4.42-4.33v-2.78L13.72 19v2.8Zm-5.03-.61 4.44 4.33v-2.96l-4.44-4.32v2.95Zm8.79-16.76-.59.58V0h-.66v5.66l-.6.56V0h-.66v6.87l-.58.57V0h-.67v10.9l4.42-4.34V0h-.66v4.42Zm-8.79 5.76 4.44 4.35v-2.8L8.69 7.4v2.77Zm0 3.65 4.44 4.33v-2.8l-4.44-4.3v2.77Zm0 3.63 4.44 4.33V19l-4.44-4.31v2.78Zm26.37 2.29H24.3a2.25 2.25 0 0 0 .36-1.22 2.32 2.32 0 0 0-2.33-2.31 2.32 2.32 0 0 0-2.31 2.31c0 .5.16.96.43 1.34a.74.74 0 0 0-.33.61c0 .26.14.49.33.62a2.32 2.32 0 0 0-.43 1.34 2.31 2.31 0 0 0 2.31 2.31 2.32 2.32 0 0 0 2.33-2.31c0-.45-.13-.87-.36-1.22h8.01v.49h-.8v.68h.8v.7h-.8v1.3h.8v-.58h1.17v.58h.79v-1.3h-.79v-.7h.79v-.68h-.79v-.5h1.58a.56.56 0 0 0 .56-.56v-.34a.57.57 0 0 0-.56-.56Zm-11.53 2.7a1.2 1.2 0 0 1-2.4 0c0-.24.08-.47.2-.66l.34-.56a.97.97 0 0 1-.34-.75c0-.3.13-.56.33-.74l-.32-.56a1.13 1.13 0 0 1-.2-.66 1.2 1.2 0 0 1 2.4 0c0 .49-.56 1.65-.56 1.65v.62c-.01.01.55 1.17.55 1.66ZM4.67 18.34v2.89c0 2.75 1.2 4.53 1.9 5.21l4.58 4.5c1.28 1.25 1.5 1.66 1.79 2.37v-3.2c0-2.84-1.44-3.94-2.19-4.67-1.73-1.68-2.89-2.8-3.82-3.73a8.98 8.98 0 0 1-2.26-3.37Zm6.08 14.24c-1.73-1.7-2.89-2.8-3.82-3.73a10 10 0 0 1-2.25-2.98v2.49a7.87 7.87 0 0 0 1.89 5.24l4.58 4.47c1.28 1.25 1.5 1.85 1.79 2.55v-3.37c0-2.85-1.45-3.95-2.19-4.67Z","M19.88 5.34c-.32 0-.64 0-.96.02V6.7a18.5 18.5 0 1 1 .95 36.94A18.5 18.5 0 0 1 1.35 25.17c0-5.67 2.55-10.73 6.58-14.13V9.32A19.78 19.78 0 0 0 0 25.17C0 36.12 8.9 45 19.88 45a19.85 19.85 0 0 0 19.86-19.83c0-10.95-8.9-19.83-19.87-19.83Z","M33.93 35.53c.3-.41.6-.85.87-1.3v-2.66h-.87v3.96Zm2.54-4.92c.12-.4.24-.78.34-1.16h-2.88v.7h.43c.77-.02 1.63-.03 2.11.46Zm-19.19-1.27h-.78v7.91h.78v-7.9Z","M14.7 27.83h2.58c.67 0 1.14.14 1.4.4.27.25.4.72.4 1.38v7.4c0 .66-.12 1.12-.4 1.38-.4.41-1.16.41-1.78.41l-.4-.01v3.5l.78.14v-2.88c1.2 0 1.97-.4 2.34-1.22v4.29h.26l.5-.01V29.74c0-.68.13-1.16.4-1.43.25-.27.72-.4 1.37-.4.67 0 1.65-.1 2.16.4.26.27.38.76.38 1.43v3.8h-1.77v-4.06h-.77v12.99c.26-.03.5-.07.77-.12V34.3h1.77v7.64c.36-.1.72-.21 1.08-.34v-7c0-.8.19-1.4 1-1.67l-.9-4.87h1.8l.3 5.31h.22l.3-5.31h1.88l-1.01 4.87c.84.3 1.01.81 1.01 1.66v4.53a16.63 16.63 0 0 0 1.5-1.27v-9.83h5.25l.1-.72H24.93l.17.89c-.38-.72-1.12-1.08-2.2-1.08h-.77c-1.3 0-2.1.52-2.4 1.55-.27-1.08-1.1-1.62-2.46-1.62h-3.36v14.52c.26.09.52.18.78.25V27.84Zm16.29 5.58-.85-.8.85-4.37v5.17Z","M27.66 40.79c.27-.14.55-.28.8-.43v-5.98h-.8v6.4Z"],ln={"bg-white":"text-primary-main",transparent:"text-white"},sn={"bg-white":"text-black",transparent:"text-white"},on=a((({className:e,href:t,children:a,targetBlank:l,bgColor:i="bg-white",hideTitle:s})=>r("a",{className:`inline-flex items-center font-sans no-underline ${e||""}`,href:t||"https://rshb.ru/",target:l?"_blank":"_self","aria-label":"Россельхозбанк",children:[n(wt,{className:`${ln[i]} w-10`,viewBox:"0 0 40 45",paths:an.map((e=>({d:e})))}),!s&&n("span",{className:`${sn[i]} font-medium ml-2.5`,children:a||"Россельхозбанк"})]}))),cn=a((({className:e,context:t})=>{const{term:a,setTerm:l}=t.useSearch();return r("form",{className:`relative ${e||""}`,children:[r("div",{className:"absolute rounded h-full flex items-center justify-center pl-4 max-w-[170px] gap-3.5 pointer-events-none",children:[n("div",{className:"w-[24px] h-[24px]",children:n(x,{image:"LoupeIcon",width:"24",height:"24"})}),!a&&n("label",{htmlFor:"search-bar-input",className:"font-sans font-light text-base text-secondary-text",children:"Поиск по сайту"})]}),n("input",{id:"search-bar-input",className:"h-12 pl-12 w-full peer font-sans font-light text-base text-black border border-solid rounded h-full box-border outline-none pr-[6%] border-main-divider focus:border-primary-text",value:a,onChange:e=>l(e.target.value),type:"text",name:"search-bar-input"}),n(q,{version:"primary",text:"Найти",className:"invisible peer-focus:visible absolute top-1 right-1",onClick:e=>{e.preventDefault(),console.log("click")},children:n("div",{className:"font-normal text-sm px-9 py-[9px]",children:"Найти"})})]})})),dn=a((({className:e="",items:t,hasButton:a,context:l})=>{const i=l.useRouter(),{handlerDecorator:s}=l;return r("div",{className:e,children:[t?.length?t.map(mn):null,a?n(q,{version:"primary",className:"mb-6 w-full",...V({router:i,handlerDecorator:s},{text:"Обратная связь",href:"/",target:"_blank"})}):null]})})),mn=(e,t)=>{const{type:a,text:l,description:i}=e;return r("div",{className:"mb-4",children:[n("div",{children:hn(a,l)}),n("div",{className:"mt-1 font-sans font-light text-sm text-secondary-text",children:i})]},String(t))},hn=(e,t="")=>{switch(e){case"tel":return n("a",{className:"font-sans text-xl text-primary-text no-underline",href:`tel:${xn(t)}`,children:t});case"email":return n("a",{className:"font-sans text-xl text-primary-text no-underline",href:`mailto:${t}`,children:t});default:return n("span",{children:t})}},xn=e=>e.replaceAll(/\D/g,""),un=a((({links:e,className:t="",context:r})=>{const a=r.useRouter(),{handlerDecorator:l}=r;return n("div",{className:t,children:e?.length?n("div",{className:"flex justify-between items-center gap-5 py-5 border-solid border-x-0 border-y border-y-main-divider",children:e.map(((e,t)=>n(pn,{index:t,...V({router:a,handlerDecorator:l},e)},String(t))))}):null})})),pn=a((({className:e="",index:t,text:r,href:a,target:l,onClick:i})=>n("a",{className:`font-sans font-light text-secondary-text hover:text-primary-main inline-block no-underline max-w-[292px] ${e}`,href:a,target:l,onClick:i,children:r||`Документ ${t}`}))),bn=e=>t=>e?.href===t?.href,gn=(e,t)=>{return(r=e,a=t,(r||[]).map((e=>a?.find(bn(e))||e))).concat((n=e,(t||[]).filter((e=>!n?.find(bn(e))))));var n,r,a};function fn(e){const{data:t}=e(vn(),Nn);return t||{}}async function Nn(){const e=await fetch(vn());return await e.json()}function vn(){return`/wcms-resources/${d.SITEMAP||"sitemap"}.json`}const yn=a((({className:e="",items:t,context:r})=>{const a=fn(r.useAsyncData),l=gn(a.topItems,t),i={router:r.useRouter(),handlerDecorator:r.handlerDecorator};return n("div",{className:`flex items-start justify-between gap-11 xl:gap-5 ${e}`,children:l?.map(((e,t)=>wn(e,t,i)))})})),wn=(e,t,{router:a,handlerDecorator:l})=>{const{text:i,href:s,items:o,target:c}=e;return r("div",{className:"flex flex-col w-1/5 last:w-1/4 gap-[14px]",children:[n("a",{className:"block font-sans leading-5 text-base text-primary-text no-underline",href:s,target:c||"_self",children:i||`Раздел ${t}`}),o?.map(((e,t)=>n(In,{...V({router:a,handlerDecorator:l},e),index:t},String(t))))]},String(t))},In=a((({text:e,href:t,target:r,index:a})=>n("a",{className:"block font-sans font-light text-base text-secondary-text hover:text-primary-main no-underline",href:t,target:r||"_self",children:e||`Раздел ${a}`}))),kn=[{origins:["t.me","telegram.org"],icon:{icon:"TelegramIcon"},label:"Телеграм",width:"20px",height:"16px"},{origins:["vk.com"],icon:{icon:"VKIcon"},label:"ВКонтакте",width:"24px",height:"12px"},{origins:["ok.ru"],icon:{icon:"OkIcon"},label:"Одноклассники",width:"12px",height:"20px"},{origins:["apps.apple.com"],icon:{icon:"AppleIcon"},label:"App Store",width:"20px",height:"22px"},{origins:["play.google.com"],icon:{icon:"PlayMarketIcon"},label:"Google Play",width:"21px",height:"21px"}],Cn=a((({href:e,version:t})=>{const{icon:r,width:a,height:l,label:i}=kn.find((({origins:t})=>t.some((t=>e?.includes(t)))))||{};if(!r)return null;return n("a",{className:` flex items-center justify-center border border-solid rounded-md border-main-divider no-underline outline-none w-14 h-14 box-border ${"secondary"===t?"text-white hover:text-primary-main hover:bg-white":"text-primary-main hover:text-white hover:bg-primary-main hover:border-primary-main"}`,href:e,"aria-label":i,target:"_blank",rel:"noopener noreferrer",children:r?n(x,{image:r,width:a,height:l,asSVG:!0,className:"block"}):null})})),$n=a((({className:e="",media:t,version:a,context:l,children:i})=>{const s=l.useRouter(),{handlerDecorator:o}=l;return r("div",{children:[n("div",{className:`flex gap-2.5 ${e}`,children:t?.map(((e,t)=>n(Cn,{version:a,...V({router:s,handlerDecorator:o},e)},String(t))))}),n("span",{className:"font-light text-sm text-secondary-text",children:i})]})})),Sn=a((({className:e,links:t,context:a})=>{const l=a.useRouter(),{handlerDecorator:i}=a;return r("div",{className:`${e||""}`,children:[n("div",{className:"pt-5 pb-[5px]",children:n("span",{className:"font-sans font-light text-xs text-secondary-text",children:`© 2000-${(new Date).getFullYear()} АО «Россельхозбанк» Генеральная лицензия Банка России № 3349 от 12.08.2015 г.`})}),t?.length?n("div",{className:"flex justify-start items-start gap-5 pt-[5px]",children:t.map(((e,t)=>n(Tn,{index:t,...V({router:l,handlerDecorator:i},e)},String(t))))}):null]})})),Tn=a((({className:e,index:t,text:r,href:a,target:l,onClick:i})=>n("a",{className:`font-sans font-light text-xs text-secondary-text visited:text-secondary-text hover:text-primary-text inline-block no-underline max-w-[292px] ${e||""}`,href:a,target:l,onClick:i,children:r||`Документ ${t}`}))),Dn="w-[204px]",An=a((({className:e,documents:t,relatedEnterprises:a,contacts:l,socialMedia:i,mobileApps:s,topItems:o,context:c,anchor:d=null})=>r("footer",{className:`px-9 pt-9 pb-10 bg-white ${e||""}`,id:d,children:[r("div",{className:"flex items-stretch gap-[54px] pb-[30px] xl:gap-8",children:[n(on,{className:Dn}),n(cn,{context:c,className:"grow"})]}),r("div",{className:"flex items-stretch gap-[54px] xl:gap-8",children:[r("div",{className:"w-[204px] flex flex-col shrink-0 overflow-hidden",children:[n(dn,{items:l,context:c,hasButton:!0}),n($n,{media:i,context:c,children:"Соцсети"}),n($n,{className:"mt-6",media:s,context:c,children:"Мобильное приложение"})]}),n(yn,{className:"pt-[3px]",context:c,items:o})]}),n(un,{className:"mt-[98px]",links:a,context:c}),n(Sn,{links:t,context:c})]}))),Rn=a((({className:e="",title:t,description:a,calendar:l,anchor:i=null})=>r("section",{className:`font-sans bg-white p-[50px] ${e}`,id:i,children:[n(s,{headingType:"h3",className:"text-center",title:t}),n("div",{className:"font-light text-base-md text-center mt-3",children:a}),l?Mn(l):null]}))),Mn=e=>{const t=100/(e.reduce(((e,t)=>t?.month?.length?e+t.month.length:e),0)||1),a=e.filter((e=>e?.month?.length)).map((e=>({...e,flexBasis:e.month.length*t+"%"})));return r("div",{className:"w-full flex flex-col justify-center mt-[54px]",children:[n("div",{className:"flex w-full mb-3 font-light text-m-title-md text-center",children:a.map((e=>Ln(e,t)))}),n("div",{className:"flex w-full",children:a.map(((e,t)=>r("div",{className:"pr-[11px] mr-3 border-r border-main-divider last:border-r-0 last:pr-0 last:mr-0",style:{flexBasis:e.flexBasis},children:[n("div",{className:"flex",children:Pn(e)}),r("div",{className:"font-light text-sm text-primary-text mt-3",children:[n("span",{children:e.blackText})," ",n("span",{className:"text-primary-main",children:e.greenText})]})]},`monthItem-${t}`)))})]})},Ln=(e,t)=>e.month.map((e=>n("div",{style:{flexBasis:`${t}%`},children:e.name},`monthName-${e.name}`))),Pn=e=>e.month.map((e=>e.image?.src?n("div",{className:"h-[207px] border-r-[1px] pr-3 mr-3 border-main-divider last:border-r-0 last:pr-0 last:mr-0",children:n(x,{image:e.image,className:"flex"})},`monthImage-${e.image.src}`):null)),Bn=(e,t,n=((e,t)=>t.startsWith(e)))=>n(M(e),(e=>(e||"").replace(j,""))(M(R(e)?t.href:t.pathname))),jn=e=>t=>Bn(t.href,e),_n=e=>t=>t.items?.some(jn(e))||Bn(t.href,e)||((e,t)=>L(e)===L(t.href))(t.href,e),Gn=a((({className:e="",text:t,href:r,target:a,active:l,flat:i,onClick:s,children:o,ariaLabel:c,bgColor:d="bg-white"})=>n("a",{className:`${Vn(d,l,i)} ${e}`,href:r,target:a,onClick:s,rel:"noopener noreferrer","aria-label":c,children:n("span",{className:Wn(d,l,i),children:t||o})}))),Vn=(e,t,n)=>{let r="border-transparent";return t&&(r="rounded-md "+("bg-white"===e?"border-primary-main":"border-white")),`${r} inline-block border border-solid bg-transparent text-center no-underline ${n?"":"px-4 py-2"}`},Wn=(e,t,n)=>{let r="text-white";return"bg-white"===e&&(r=t?"text-primary-main":(n?"text-primary-text":"text-secondary-text")+" hover:text-primary-main"),`${r} font-sans font-light text-sm`},En=a((({className:e="",children:t,ariaLabel:r})=>n("button",{type:"button",className:`border-0 p-0 w-[24px] h-[24px] flex items-center bg-inherit cursor-pointer ${e}`,disabled:!0,"aria-label":r,children:t}))),On={"bg-white":"text-primary-text hover:text-primary-main",transparent:"text-white"},Fn={"bg-white":"text-secondary-light hover:text-secondary-hover",transparent:"text-white"},Un={"bg-white":"GridIcon",transparent:"GridIconWhite"},Hn=a((({context:e,className:t,defaultLocation:a="",bgColor:l="bg-white"})=>{const[i,s]=e.useGeolocation(a);return r("div",{className:`flex items-center ${t||""}`,children:[n(Gn,{className:"mr-5",flat:!0,href:"#",text:i,ariaLabel:"Местоположение",onClick:s,bgColor:l}),n(Gn,{className:"mr-7",flat:!0,href:"#",text:"Офисы и банкоматы",ariaLabel:"Список всех доступных офисов и банкоматов",bgColor:l}),n(En,{className:`mr-5 ${On[l]}`,ariaLabel:"Поиск по сайту",children:n(x,{image:"LoupeIcon",className:"h-full",asSVG:!0})}),n(En,{className:`${Fn[l]} min-w-[32px] min-h-[32px]`,ariaLabel:"Дополнительные ссылки",children:n(x,{image:Un[l],className:"h-full",asSVG:!0})})]})})),Zn=e=>(t=[])=>{const n=t?.filter(jn(e));var r;return n?.length?(r=e=>e.href?.length||0,e=>e.reduceRight(((e,t)=>r(e)>r(t)?e:t)))(n):null},zn="absolute left-0 -bottom-3 w-full h-[2px]",qn=a((({className:e="",text:t,href:a,target:l,active:i,onClick:s,children:o,bgColor:c="bg-white",dataItemName:d})=>r("a",{className:`relative inline-block bg-transparent text-center no-underline ${e}`,href:a,target:l,onClick:s,"data-item-name":d,children:[n("span",{className:Jn(c,i),children:t||o}),i?n("div",{className:Kn(c,i)}):null]}))),Jn=(e,t)=>{let n="text-white";return"bg-white"===e&&(n=t?"text-primary-main":"text-primary-text hover:text-primary-main"),`${n} font-sans font-light text-base`},Kn=(e,t)=>t?`${"bg-white"===e?"bg-primary-main":e} ${zn}`:zn,Xn=()=>!("undefined"!=typeof window&&window.document&&window.document.createElement),Qn=!Xn()?new IntersectionObserver((e=>{const t=window.document.querySelector("[data-header-submenu-visible=toggled]"),[n,r]=["[data-item-name=header-submenu]","[data-item-name=dots-header-submenu]"].map((e=>Array.from(window.document.querySelectorAll(e))));const a={};e.forEach((e=>{a[e.target.toString()]=e.isIntersecting}));const l=Yn(a,r,"hidden");Yn(a,n,"invisible"),t&&(l?t.classList.remove("hidden"):t.classList.add("hidden"))}),{root:window.document,threshold:1}):void 0,Yn=(e,t,n)=>{const r="hidden"!==n;return t.some((t=>{const a=t.toString(),l=r?!e[a]:e[a];return a in e&&t.classList.toggle(n,l),r?t.classList.contains("hidden"):!t.classList.contains("hidden")}))},er=a((({context:e,subItems:t,bgColor:a})=>{const[l,i]=e.useState(!1),s=e.useRouter(),{handlerDecorator:o}=e;setTimeout((()=>{if(Xn())return;globalThis.document.querySelectorAll("[data-item-name=header-submenu]").forEach((e=>{Qn?.observe(e)}))}),200);const c=Zn(s)(t),d=t?.map((e=>n(qn,{className:"mr-8",active:e===c,...V({router:s,handlerDecorator:o},e),dataItemName:"header-submenu",bgColor:a},e.href)));return r("nav",{className:"relative mt-5",children:[n("div",{className:"overflow-hidden whitespace-nowrap mr-52",children:d}),tr({subMenuIsShow:l,toggleSubMenu:()=>i(!l),subItems:t,router:s,handlerDecorator:o})]})})),tr=({subMenuIsShow:e,toggleSubMenu:t,subItems:a,router:l,handlerDecorator:i})=>r("div",{className:"absolute w-52 -top-4 right-0 pt-4 z-40 "+(e?"bg-white rounded-md shadow-blue-gray/24":""),"data-header-submenu-visible":"toggled",children:[n("button",{className:"flex justify-between items-center cursor-pointer h-6 ml-6",onClick:t,"aria-label":""+(e?"Скрыть другие разделы":"Показать другие разделы"),children:Array(3).fill(0).map(((e,t)=>rr(t)))}),n("div",{className:"flex flex-col rounded-md bg-white p-6 pb-2 "+(e?"":"hidden"),"aria-hidden":!e,children:nr(a,l,i)})]}),nr=(e,t,r)=>e?.map((e=>n("a",{...V({router:t,handlerDecorator:r},e),"data-item-name":"dots-header-submenu",className:"text-base font-light pb-4 hover:text-primary-main",children:e.text},e.href))),rr=e=>n("div",{className:"w-[3px] h-[3px] rounded bg-black mr-1"},String(e)),ar={"bg-white":"bg-main-divider",transparent:"bg-main-divider opacity-30"},lr=a((({className:e="",defaultLocation:t="Москва",bgColor:a="bg-white",context:l,topItems:i,anchor:s=null})=>{const o=l.useRouter(),c=fn(l.useAsyncData),{handlerDecorator:d}=l,m=gn(c.topItems,i),h=m.find(_n(o)),x=m.map(((e,t)=>n(Gn,{active:e===h,...V({router:o,handlerDecorator:d},e),"aria-label":e.text,bgColor:a},String(t))));return n("header",{className:`pt-6 pb-8 px-20 ${a} ${e}`,id:s,children:r("div",{className:"container",children:[r("div",{className:"flex items-center",children:[n(on,{className:"mr-8",bgColor:a}),x,n(Hn,{context:l,className:"ml-auto",defaultLocation:t,bgColor:a})]}),n("div",{className:`mt-6 h-[1px] ${ar[a]}`}),n(er,{context:l,subItems:h?.items,bgColor:a})]})})})),ir=a((({className:e="",context:t,title:a="Мобильное приложение",qr:l,buttons:i=[],anchor:o=null})=>n("section",{className:`bg-white text-primary-text font-sans p-9 box-border ${e} ${we(e)} ${ye(e)} `,id:o,children:n(le,{context:t,title:a&&n(s,{headingType:"h3",title:a,className:"whitespace-pre-wrap max-w-[600px] mb-[30px]"}),buttons:i?.length?n(X,{context:t,buttons:i,className:"flex mt-[30px] gap-4"}):null,children:r("div",{className:"flex items-center",children:[l?.src&&l?.href&&n("a",{href:l.href,target:"_blank","aria-label":a,children:n("img",{src:l.src,alt:a,title:a,width:"164",height:"164",className:"w-[92px] h-[92px] min-w-[92px] min-h-[92px] bg-secondary-light"})}),n("span",{className:"font-light text-secondary-text ml-4",children:"Наведите камеру телефона на QR-код и скачайте приложение"})]})})}))),sr=a((({className:e,text:t,onClick:r,href:a,target:l,isActive:i})=>n("a",{className:`bg-inherit no-underline px-4 py-2.5 cursor-pointer rounded text-sm border border-solid hover:text-primary-main ${e||""} ${i?"border-primary-main text-primary-main":"border-white text-secondary-text"}`,onClick:r,href:a,target:l,children:t}))),or=a((({className:e,context:t,title:a,buttons:l,anchor:i=null})=>{const s=t.useRouter(),{handlerDecorator:o}=t,c=Zn(s)(l);return r("section",{className:`font-sans text-primary-text rounded-[40px] flex items-center justify-between ${e||""}`,id:i,children:[n("h2",{className:"font-medium text-xl m-0",children:a}),l?.length?n("div",{className:"flex rounded-md overflow-hidden bg-white",children:l.filter((({text:e})=>e)).map(((e,t)=>n(sr,{className:"first:rounded-tl-md first:rounded-bl-md last:rounded-tr-md last:rounded-br-md",isActive:e===c,...V({router:s,handlerDecorator:o},e)},String(t))))}):null]})})),cr=a((({className:e="",text:t,active:r,children:a,onClick:l,href:i,target:s="_self"})=>n("a",{className:dr(e,r),target:s,href:i,onClick:l,children:n("span",{className:mr(r),children:t||a})}))),dr=(e,t)=>`${t?"bg-primary-main":"group bg-white"} flex-1 flex items-center justify-center cursor-pointer ${e}`,mr=e=>`${e?"text-white":"text-secondary-text group-hover:text-primary-main "} font-sans font-normal text-m-md`,hr=a((({className:e="",navigatorTabs:t,context:r,anchor:a=null})=>{const l=globalThis.location?.href;return n("section",{className:`sticky top-0 z-20 box-border flex gap-x-1 h-14 ${e}`,id:a,children:t?t.map(xr(r,l)):null})})),xr=(e,t)=>(r,a)=>{const{useRouter:l,handlerDecorator:i}=e,s=l(),o=P(t),c=o?r.href===o:0===a;return n(cr,{active:c,...V({router:s,handlerDecorator:i},r)},r.href)},ur=a((({blocks:e,columns:t=1,context:r})=>n("div",{className:"transition-all duration-300 max-h-0 overflow-hidden",children:n("div",{className:"box-border w-full p-9 "+(t>1?"flex flex-wrap":""),children:He({context:r,className:"box-border p-5",columns:t,blocks:e})})}))),pr=a((({label:e,isExpanded:t,blocks:a,columns:l,dataTheme:i=null,context:s})=>{const{hasContent:o,icon:c,handleToggle:d,isActive:h}=(({context:e,blocks:t,initialState:n=!1})=>{const[r,a]=e.useState(n),l=t?.length;return{isActive:r,hasContent:l,icon:r?"ArrowUpIcon":"ArrowDownIcon",handleToggle:e=>{if(!l)return;a(!r);const t=(({currentTarget:e})=>e.previousSibling)(e);t.style.maxHeight=t.style.maxHeight?null:`${t.scrollHeight}px`}}})({context:s,blocks:a,initialState:t});return r("div",{className:"border-0 border-b border-solid border-main-divider",children:[o?n(ur,{isExpanded:h,columns:l,blocks:a,context:s}):null,r("button",{className:"border-none bg-primary-main px-0 py-[26px] mb-[1px] w-full font-sans text-white text-base flex justify-center cursor-pointer","data-theme":i,onClick:d,children:[n("span",{className:"pr-3",children:h?"Скрыть":e}),o?n(m,{name:c,width:"20",height:"20",asSVG:!0}):null]})]})})),br=a((({blockItems:e,colorPalette:t,context:r,className:a=""})=>n("section",{className:`font-sans bg-white text-primary-text ${a}`,children:e?.length?n("div",{className:"list-none m-0 p-0",children:e.map(((e,a)=>n(pr,{...e,dataTheme:t,context:r},`BlockItem${a}`)))}):null}))),gr=a((({className:e,context:t,title:a,description:l="Блок в разработке...",anchor:i=null})=>n("section",{className:`bg-white text-primary-text font-sans p-9 box-border ${e} ${we(e)} ${ye(e)} `,id:i,children:r(le,{context:t,title:a?n(s,{headingType:vt(e),title:a,className:"whitespace-pre-wrap max-w-[600px]"}):null,children:[l?n(Q,{className:"mt-4 max-w-[600px]",description:l}):null,n("figure",{className:"m-0 min-w-[600px]",children:fr()})]})}))),fr=(e=3)=>vr(100,e).map((e=>Math.floor(e))).map(Nr),Nr=(e=100,t)=>n("div",{style:{width:`${e}%`},className:"h-4 mt-2 bg-secondary-light"},String(t)),vr=(e,t)=>[e].concat(t>0?vr(e/1.618,t-1):[]),yr={primary:"bg-white text-primary-text",secondary:"bg-primary-main text-white"},wr=a((({block:e,headingType:t,context:r,className:a=""})=>n("section",{className:`flex grow-0 shrink-0 basis-full ${yr[e?.version??"primary"]} ${a}`,role:"listitem",children:n("div",{className:"p-10 flex grow",children:n(ce,{className:"pl-2.5 pt-2.5 pb-1.5 pr-[6.25rem]",context:r,headingType:t||"h2",...e})})}))),Ir=a((({className:e,context:t,duration:a=0,slides:l=[],anchor:i=null})=>{const s=l.map((e=>e.nav)),o=l.map((e=>e.productBlock)),[c,d]=t.useState(0);return r("section",{className:`font-sans bg-white overflow-hidden w-100 ${e||""}`,id:i,children:[n("div",{className:"flex duration-1000",style:{transform:`translateX(-${c}00%)`},role:"list",children:o.map(((e,r)=>n(wr,{context:t,block:e},String(r))))}),n("div",{className:"flex",children:s.map(((e,t)=>function({slide:e,i:t,activeSlideIndex:a,onClick:l,duration:i}){const s=t===a,o=s?"animate-slide":"",c=s?"text-primary-text":"text-secondary-text";return r("button",{type:"button",onClick:l,"aria-label":e?.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:[r("div",{className:"border-0 border-r border-solid border-main-divider px-6",children:[n("div",{className:`text-sm font-medium pb-[3px] group-hover:text-primary-text ${c}`,children:e?.title}),n("div",{className:"text-xs text-secondary-text",children:e.desc})]}),n("div",{className:`absolute bottom-0 left-0 w-full h-[3px] bg-primary-main -translate-x-full ${o}`,style:{animationDuration:`${i}s`,animationFillMode:"forwards"}})]},String(t))}({slide:e,i:t,activeSlideIndex:c,onClick:()=>d(t),duration:a})))})]})}));const kr={primary:"bg-white text-primary-text",secondary:"bg-primary-main text-white"},Cr={primary:{title:"text-secondary-text",text:"text-secondary-text"},secondary:{title:"text-white",text:"text-white/80"}},$r={primary:"bg-white text-primary-text",secondary:"bg-primary-main text-white"},Sr=a((({className:e="",context:t,slides:a=[],version:l="primary",anchor:i=null})=>{const s=a.map((e=>e.nav)),o=a.map((e=>e.productBlock)),[c,d]=t.useState(0);return r("section",{id:i,className:`box-border pt-[50px] overflow-hidden relative font-sans w-100 ${e}\n ${kr[l]}`,children:[n("div",{className:"flex duration-1000 pb-14",style:{transform:`translateX(-${c}00%)`},role:"list",children:o.map(((e,r)=>function(e,t,r){const{version:a}=e,l=a?Cr[a].title:"";return n("section",{className:"box-border relative flex grow-0 shrink-0 basis-full",role:"listitem",children:n("div",{className:"flex grow",children:n(ce,{className:`pl-[50px] z-[1] ${l}`,context:r,textBlockClassName:"mb-[154px]",...e})})},String(t))}({...e,version:l},r,t)))}),n("div",{className:"flex items-center absolute bottom-6 left-0 right-0 px-[26px] box-border",children:s.map(((e,t)=>function({slide:e,i:t,activeSlideIndex:a,onClick:l,version:i}){const s=t===a,o=s?"bg-white shadow-dark-blue/42 h-[102px] w-[354px] min-w-[354px] p-0 border-none":`min-w-[277px] px-0 pt-4 pb-[23px] hover:py-[26px] hover:py-[26px] ease-in duration-300 bg-white/10\n ${$r[i]}`,c=s?"text-primary-text text-title-2xs":`text-base ${Cr[i].title}`,d=s?"text-secondary-text text-m-title-xs mt-2.5":`text-m-md mt-1.5 ${Cr[i].text}`,m="secondary"===i?"border-white/50":"border-black/50";return n("button",{type:"button",onClick:l,"aria-label":e?.title,className:`box-border font-sans relative overflow-hidden border-[1px] border-white/50 cursor-pointer text-left mx-1 grow basis-0\n ${o} ${m}\n `,children:r("div",{className:"border-0 px-6",children:[n("div",{className:`font-medium ${c}`,children:e?.title}),n("div",{className:`text-secondary-text ${d}`,children:e.description})]})},String(t))}({slide:e,i:t,activeSlideIndex:c,onClick:()=>d(t),version:l})))})]})}));const Tr={primary:"bg-white text-primary-text",secondary:"bg-primary-main text-white"},Dr=a((({className:e="",context:t,title:a="Акции и спецпредложения",date:l,description:i,buttons:o=[],version:c="primary",anchor:d=null})=>n("section",{className:`bg-white text-primary-text font-sans p-9 box-border ${e} ${Tr[c]} ${we(e)} ${ye(e)} `,id:d,children:n(le,{context:t,title:a?n(s,{headingType:vt(e),title:a,className:"whitespace-pre-wrap max-w-[600px]"}):null,buttons:o?.length?n(X,{context:t,buttons:o,className:"flex mt-9 gap-3"}):null,children:r("div",{className:"mt-1.5",children:[l?n("div",{className:"text-sm mb-2",children:Ar(l)}):null,n("div",{className:"text-base",children:i})]})})})));function Ar(e){return new Date(e).toLocaleString("ru-RU",{day:"numeric",month:"long",year:"numeric"}).replace("г.","")}const Rr=a((({context:e,className:t="",title:a,description:l,items:i,image:o,version:c,socialMedia:d})=>n("section",{className:`border border-solid box-border p-[30px] w-[524px] ${t}`,role:"listitem",children:r(le,{context:e,className:"flex justify-between",title:a?n(s,{headingType:"h4",as:"h3",className:"font-normal mb-3.5",title:a}):null,image:o?.src&&n(x,{className:"mt-auto ml-7",image:o}),children:[l?n(Q,{className:"text-left",description:l}):null,i?.length?n(ae,{className:"text-md text-left font-light flex flex-col flex-1 gap-2",items:i,version:c}):null,n($n,{className:"pt-[42px] pb-0",media:d,version:c,context:e})]})}))),Mr="absolute top-0 bottom-0 w-[84px]",Lr=a((({context:e,recommendations:t=[],className:a="",title:l,version:i,anchor:o=null})=>{const[c,d]=e.useState(0),m="secondary"===i?"border-white/50":"border-main-stroke";return r("section",{className:`relative font-sans p-9 overflow-hidden text-center ${"secondary"===i?"bg-primary-main text-white":"bg-white text-primary-text"} ${a}`,id:o,children:[l?n(s,{headingType:"h2",className:"mb-6",title:l}):null,n("div",{className:"flex duration-1000 gap-3.5",style:{transform:`translateX(-${525*c}px)`},role:"list",children:t?.length?t.map(Pr({context:e,version:i,className:m})):null}),Br({cardsCount:t.length,activeCardIndex:c,setActiveCardIndex:d}),n("div",{className:`${Mr} left-0 ${"secondary"===i?"bg-opacity-from-main":"bg-opacity-from-white"}`}),n("div",{className:`${Mr} right-0 ${"secondary"===i?"bg-opacity-to-main":"bg-opacity-to-white"}`})]})})),Pr=({context:e,version:t,className:r})=>(a,l)=>n(Rr,{context:e,...a,version:t,className:r},String(l)),Br=({cardsCount:e,activeCardIndex:t,setActiveCardIndex:a})=>{const l=e>2,i=l&&e-t>2;return r("div",{children:[l&&t>0&&n(De,{className:"absolute top-1/2 left-8 z-10 mt-6",onClick:()=>a(t-1),ariaLabel:"Пролистать влево"}),i&&n(De,{className:"absolute top-1/2 right-8 z-10 mt-6 rotate-180",onClick:()=>a(t+1),ariaLabel:"Пролистать вправо"})]})},jr=a((({className:e="",title:t,showLines:a=!0,steps:l=[],button:i,anchor:o=null})=>{const c=l.length>3;return r("section",{className:["box-border font-sans text-primary-text bg-white",c?"px-20":"px-[70px]","py-[50px] flex flex-col items-center",e].join(" "),id:o,children:[n(s,{headingType:"h2",className:"max-w-[47rem] text-center",title:t}),l?.length?r("div",{className:"box-border "+(t?"mt-9":""),children:[n("div",{className:"flex items-center px-[88px]",children:E(n("div",{className:"h-0.5 w-full bg-secondary-light "+(a?"":"opacity-0")}))(l.map(_r))}),n("div",{className:"flex justify-between "+(c?"gap-x-3":"gap-x-[101px]"),children:l.map(((e,t)=>Gr(e,t,Boolean(i?.text))))})]}):null,i?.text?n(q,{className:"box-border mt-8 py-3 h-12 w-full max-w-[240px]",version:"primary",href:"#",children:i.text}):null]})})),_r=(e,t)=>n("div",{className:"flex flex-col items-center text-center relative",children:n("div",{className:"h-[100px] w-[100px] min-w-[100px] min-h-[100px] bg-secondary-light rounded-full p-[26px] box-border z-10",children:e.icon?.icon&&n(x,{image:e.icon,width:"48",height:"48"})||n("span",{className:"font-normal text-title-sm text-secondary-text",children:t+1})})},String(t)),Gr=(e,t,a)=>r("div",{className:"flex flex-col items-center justify-between text-center relative w-[276px] whitespace-pre-line overflow-hidden",children:[r("div",{children:[e.label&&n("div",{className:"font-normal text-xl m-0 mt-4",children:e.label}),e.description&&n("div",{className:"font-light text-base text-secondary-text "+(e.label?"mt-2":"mt-4"),children:e.description})]}),e?.button?.text&&!a?n(q,{className:"box-border mt-8 py-3 h-12 w-full max-w-[240px]",version:"primary",href:"#",children:e.button.text}):null]},String(t)),Vr=e=>e?.alt||e?.title||c[e?.icon?e.icon:""],Wr=a((({cell:e,isLastRow:t})=>n("div",{className:"first:pl-0 pl-10 w-80 flex-grow flex flex-col border-solid border-main-divider border border-t-0 border-x-0 "+(t?"border-t-0 rounded-b-md":""),role:"cell",children:n("div",{children:e.map(Er)})}))),Er=({label:e,description:t,list:a,image:l,buttons:i},s)=>r("div",{className:"first:pt-5 last:pb-5",children:[s>0&&n("div",{className:"border-main-divider border border-solid border-t-0 border-x-0 my-4"}),e?n("div",{className:"text-xl font-medium m-0",children:e}):null,t?n("div",{className:"text-sm text-secondary-text",children:t}):null,a?.items?.length?Or(a):null,l?n(x,{image:l}):null,i?.length?Fr(i):null]},String(s)),Or=e=>n(ae,{className:"flex flex-col justify-between items-start text-sm",version:"gray",items:e.items,isDotted:e.isDotted??!0}),Fr=e=>n("div",{children:e.map((({icon:e,rounded:t,...r},a)=>n(q,{className:(a>0&&t?"ml-3":"")+" w-12 h-12",ariaLabel:Vr(e),rounded:t,appendLeft:e?n(x,{image:e,width:"24px",height:"24px",asSVG:!0}):null,...r},String(a))))}),Ur=a((({row:{header:e,data:t},activeCardIndex:a,isLastRow:l})=>r(Ye,{children:[n("div",{className:"text-sm py-5 w-[354px] flex-shrink-0 border-main-divider border border-t-0 border-x-0 "+(l?"":"border-solid"),children:r("div",{className:"flex items-center text-primary-text",children:[e?.icon?n(x,{className:"mr-[14px] max-w-6 max-h-6",image:e.icon,width:"24px",height:"24px",asSVG:!0}):null,e?.title]})}),t?.length?n(lt,{activeCardIndex:a,columnWidth:360,version:"tariff",children:t.map(((e,t)=>n(Wr,{cell:e,isLastRow:l},String(t))))}):null]}))),Hr=a((({className:e,context:t,title:a,description:l,rowHeaders:i,columns:o,anchor:c=null})=>{const[d,m]=t.useState(0),h=Zr(o),x=zr(i,h),u=xt({columnsLength:h.length,colsLengthForScroll:2,activeCardIndex:d,setActiveCardIndex:m}),{isScrollAvailable:p}=u;return r("section",{className:`bg-white font-sans py-[50px] pl-[50px] overflow-hidden text-primary-text relative ${e||""}`,id:c,children:[a?n(s,{headingType:"h2",className:"text-center "+(l?"mb-2.5":"mb-9"),title:a}):null,l?n("div",{className:"mb-9 text-center text-m-base",children:l}):null,x?.length?r("div",{role:"table",children:[r("div",{className:"relative",children:[x.map(((e,t,{length:r})=>n(Ur,{row:e,isLastRow:t+1===r,activeCardIndex:d},String(t)))),n(mt,{...u})]}),p?n("div",{className:"absolute top-0 right-0 bottom-0 w-[84px] bg-opacity-to-white"}):null]}):null]})})),Zr=e=>e?.map((({data:e})=>e))||[],zr=(e,t)=>e?.map(((e,n)=>({header:e,data:t.map((e=>e?.[n]||[{}]))}))),qr=a((e=>{const{tabs:t,currentTag:r,onTabClick:a,className:l="",isShowCounter:i=!0}=e;return n("div",{className:`mb-2 box-border flex gap-x-1 h-12 ${l}`,role:"tablist",children:t?.map(Jr(a,i,r))})})),Jr=(e,t,a)=>(l,i)=>{const s=a===l.tag,o=s?"text-white":"text-secondary-text group-hover:text-primary-main",c="w-[22px] h-[22px] rounded-full text-m-sm \n "+(s?"bg-white/30 text-white":"bg-secondary-text/10 text-secondary-text");return n("div",{className:`flex h-full w-full flex-1 cursor-pointer mr-2 last:mr-0 box-content ${s?"bg-primary-main":"group bg-white"}`,role:"tab",onClick:()=>e(l.tag),"aria-selected":String(s),tag:l?.tag,children:r("div",{className:"flex flex-1 items-center justify-center",children:[l?.title?n("h3",{className:`mr-8 ${o}`,children:l?.title}):null,t?n("div",{className:`flex items-center justify-center ${c}`,children:n("span",{children:l.count})}):null]})},String(i))};function Kr(e){return e?e.filter(Boolean).join(" "):""}const Xr={ProductBlock:pe,ProductTile:Se},Qr=a((({groupBlocks:e,context:t})=>n("div",{className:"grid grid-cols-12 gap-2 box-border",children:e?.length?e.map(Yr(t)):null}))),Yr=e=>(t,r)=>{const a=t?.blockType;if(!a||!(a in Xr))return null;const l=Kr(t?.style);return n(Xr[a],{context:e,...t,className:l},`block_${r}`)},ea=a((({className:e="",tabs:t,context:a,anchor:l=null,groupBlocks:i=[]})=>{const[s,o]=a.useState(t?.[0]?.tag),c=(d=i,(m=s)?d.filter((e=>e?.tags?.includes(m))):d);var d,m;const h=t?.map((e=>{const t=e.tag?i.filter((t=>t?.tags?.includes(`${e.tag}`))).length:i.length;return{...e,count:t}}));return r("section",{id:l,className:`box-border gap-1 h-12 ${e}`,children:[h?.length?n(qr,{currentTag:s,onTabClick:o,tabs:h}):null,i.length?n("div",{className:"list-none",children:n(Qr,{context:a,groupBlocks:c})}):null]})})),ta={Accordion:Je,BenefitsBlock:Ke,Bonus:Qe,ComparisonTable:pt,CreditCalculator:Gt,ExchangeRateTile:rn,Footer:An,Gallery:We,GracePeriod:Rn,Header:lr,Headline:N,LinkDocs:T,MiniGallery:Ee,MobileAppTile:ir,NavigatorTabs:hr,PictureText:A,ProductBlock:pe,ProductGallery:Ir,ProductGalleryGreen:Sr,ProductTile:Se,PromoTile:Dr,OtherProducts:br,Recommendation:Lr,StepsBlock:jr,TariffsTable:Hr,TextBlock:ge,Tile:ke,Navigation:or,Placeholder:gr,GroupBlock:ea},na=a((({className:e,onClick:t,ariaLabel:r})=>n("button",{type:"button",className:`border-0 w-[36px] bg-inherit cursor-pointer ${e||""}`,onClick:t,"aria-label":r,children:ra()}))),ra=()=>{const e={stroke:"#292D32",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"};return r("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",children:[n("path",{...e,strokeMiterlimit:"10",d:"M21.48 11.95c.5-1.4-.4-2.6-1.9-2.6h-4c-.6 0-1.1-.5-1-1.2l.5-3.2c.2-.9-.4-1.9-1.3-2.2-.8-.3-1.8.1-2.2.7l-4.1 6.1M7.48 18.35l3.1 2.4c.4.4 1.3.6 1.9.6h3.8c1.2 0 2.5-.9 2.8-2.1l1.24-3.77"}),n("path",{...e,d:"M2.38 18.35v-9.8c0-1.4.6-1.9 2-1.9h1c1.4 0 2 .5 2 1.9v9.8c0 1.4-.6 1.9-2 1.9h-1c-1.4 0-2-.5-2-1.9Z"})]})},aa=a((({className:e,context:t,anchor:a=null})=>{const l=t.useLikeService();return r("div",{className:`border-main border-2 border-solid bg-white flex w-[125px] items-center justify-center gap-3 p-2 font-sans ${e||""}`,id:a,children:[n(na,{onClick:l.like,ariaLabel:"Поставить отметку «лайк»"}),n(na,{onClick:l.dislike,className:"rotate-180",ariaLabel:"Поставить отметку «дизлайк»"}),n("span",{className:"select-none",children:l.likeCount})]})})),la=!Xn(),ia=({blockClassName:e,block:t,render:n})=>n({blockClassName:e,block:t}),sa=a((({className:e="",context:t,blocksRegistry:a,data:{style:l,blocks:i,slots:s={},likeControl:o,colorPalette:c="pc"},blockDecorator:d=ia})=>{const{header:m}=s,h=t.useRouter();return la&&globalThis.addEventListener("load",(()=>{const e=globalThis.document.querySelectorAll("section[id]");globalThis.document.addEventListener("scroll",(()=>((e,t)=>{t?.forEach((t=>{const n=globalThis.location?.hash;if(n===`#${t?.id}`)return;const r=t?.getBoundingClientRect();r&&r.top>0&&r.top<150&&e.replace(`#${t?.id}`)}))})(h,e)))})),r("section",{className:`relative ${Kr(l)} ${e}`,"data-theme":c,children:[m?.blocks?.length?n("div",{className:`${Kr(m?.style)}`,children:m.blocks.map(((e,n)=>oa({block:e,blockDecorator:d,blocksRegistry:a,context:t},n)))}):null,i?.length?n("div",{className:"container grid grid-cols-12 gap-1",children:i.map(((e,n)=>oa({block:e,blockDecorator:d,blocksRegistry:a,context:t},n)))}):null,o&&n("div",{className:"flex items-end absolute bottom-0 right-0 h-full pointer-events-none",children:n(aa,{className:"rounded-tl-lg sticky bottom-0 pointer-events-auto",context:t},"LikeControl")})]})}));function oa({block:e,blockDecorator:t,blocksRegistry:r,context:a},l){const{type:i}=e;i&&i in r||console.warn(`No block with "${i}" is registered`);const s=r[i||"Placeholder"]||gr;return t({blockClassName:`scroll-mt-12 ${Kr(e.style)}`,block:e,render:e=>{const{version:t,content:r,anchor:o}=e.block;return n(s,{className:e.blockClassName,version:t,context:a,anchor:o,...r},`${i}-${l}`)}},`block-${l}`)}e.Blocks=ta,e.ContentPage=sa,e.DaDataAPI=function(e=""){return{getFetcherAddress:async function(){if(!("geolocation"in navigator))return null;try{const t=await(async()=>new Promise((e=>navigator.geolocation.getCurrentPosition((({coords:t})=>e(t))))))(),n=await fetch(`${e}/geolocate`,{method:"POST",mode:"cors",body:JSON.stringify({lat:t.latitude,lon:t.longitude,count:1})});return(await n.json())?.suggestions?.[0]?.data?.city}catch(e){return console.error(e),null}}}},e.LikeAPI=function(e,t=""){async function n(){try{const e=JSON.parse(globalThis.localStorage.getItem(l)||"");if(e?.token)return e}catch(e){}try{const e=await fetch(`${t}/assist/v1/public/auth`,{method:"POST",mode:"cors",headers:{"Content-Type":"application/json"},body:JSON.stringify({prefix:"guest"})}),{token:n,name:r}=await e.json();return globalThis.localStorage.setItem(l,JSON.stringify({token:n,name:r})),{token:n,name:r}}catch(e){return console.error(e),{}}}return{getLikeCount:async function(...r){if(!r.length)return[];const{token:a}=await n();try{const n=await fetch(`${t}/assist/v1/public/projects/${e}/nodes/likes`,{method:"POST",mode:"cors",headers:{"Content-Type":"application/json",Authorization:a},body:JSON.stringify({node_ids:r})}),{likes:l}=await n.json();return l||[]}catch(e){return console.error(e),[]}},like:async function(r){if(!r)return 0;const{token:a,name:l}=await n();try{const n=await fetch(`${t}/assist/v1/public/projects/${e}/nodes/like`,{method:"POST",mode:"cors",headers:{"Content-Type":"application/json",Authorization:a,UserID:l},body:JSON.stringify({node_id:r,user_name:l})}),{likes:i}=await n.json();return i||0}catch(e){return console.error(e),0}},dislike:async function(r){if(!r)return 0;const{token:a,name:l}=await n();try{const n=await fetch(`${t}/assist/v1/public/projects/${e}/nodes/unlike`,{method:"POST",mode:"cors",headers:{"Content-Type":"application/json",Authorization:a,UserID:l},body:JSON.stringify({node_id:r,user_name:l})}),{likes:i}=await n.json();return i||0}catch(e){return console.error(e),0}}}},e.joinList=E,e.projectSettings=d,e.setup=t,e.url=B,Object.defineProperty(e,"__esModule",{value:!0})}));
1
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).UniBlocks={})}(this,(function(e){"use strict";const t=(e,n)=>{t._jsx=e,t._jsxs=n||e};t.vue=e=>{t(((t,{children:n,dangerouslySetInnerHTML:a,...r}={})=>{const l=Object.assign({},r,a?{innerHTML:a.__html}:{});return e(t,l,"string"!=typeof t?()=>n:n)}))};const n=(...e)=>t._jsx(...e),a=(...e)=>t._jsxs(...e),r=e=>(e._tmpl||(e._tmpl=function(t,n){const{children:a,...r}=t||{},l=n?.slots?.default,i=a||l&&l();return e(Object.assign(r,i&&{children:i}),n)},e._tmpl.inheritAttrs=!1),e._tmpl);const l="likesToken";const i={h1:"text-title-xl tracking-[-0.3px]",h2:"text-title-lg",h3:"text-title",h4:"text-title-sm",h5:"text-title-xs",h6:"text-title-2xs tracking-[0.2px]"},s=r((e=>{const{className:t="",headingType:a,title:r,as:l}=e;if(!a)return;return n(l||a,{className:`font-sans m-0 ${i[a]} ${t}`,children:r})}));var o,c;!function(e){e.ActualBalanceIcon="ActualBalanceIcon",e.AppleIcon="AppleIcon",e.ArrowDownIcon="ArrowDownIcon",e.ArrowLeftIcon="ArrowLeftIcon",e.ArrowsRewindRight="ArrowsRewindRight",e.ArrowUpIcon="ArrowUpIcon",e.AtmIcon="AtmIcon",e.BankIcon="BankIcon",e.BurgerIcon="BurgerIcon",e.BurgerIconWhite="BurgerIconWhite",e.Calendar2Icon="Calendar2Icon",e.CalendarCircleIcon="CalendarCircleIcon",e.CalendarIcon="CalendarIcon",e.CalendarTickIcon="CalendarTickIcon",e.CalendarWhiteIcon="CalendarWhiteIcon",e.CardIcon="CardIcon",e.CardPosIcon="CardPosIcon",e.CardTickIcon="CardTickIcon",e.CardWithGemIcon="CardWithGemIcon",e.ChartSquareIcon="ChartSquareIcon",e.ClockIcon="ClockIcon",e.CloseIcon="CloseIcon",e.ComfortableCompIcon="ComfortableCompIcon",e.CreditCardsIcon="CreditCardsIcon",e.DiscountShapeIcon="DiscountShapeIcon",e.DocIcon="DocIcon",e.DocIconMonoColor="DocIconMonoColor",e.DocumentTextIcon="DocumentTextIcon",e.DollarIcon="DollarIcon",e.EarthIcon="EarthIcon",e.EmptyWalletChangeIcon="EmptyWalletChangeIcon",e.EmptyWalletIcon="EmptyWalletIcon",e.EmptyWalletWhiteIcon="EmptyWalletWhiteIcon",e.EuroIcon="EuroIcon",e.GeolocationIcon="GeolocationIcon",e.GlassIcon="GlassIcon",e.GlobalIcon="GlobalIcon",e.GpsIcon="GpsIcon",e.GridIcon="GridIcon",e.GridIconWhite="GridIconWhite",e.InterestGrowthIcon="InterestGrowthIcon",e.InterestIcon="InterestIcon",e.JCBIcon="JCBIcon",e.LoupeIcon="LoupeIcon",e.MasterCardIcon="MasterCardIcon",e.MinusIcon="MinusIcon",e.MirIcon="MirIcon",e.MoneyIcon="MoneyIcon",e.MoneyInsuranceIcon="MoneyInsuranceIcon",e.MonitorMobileIcon="MonitorMobileIcon",e.NewDocIcon="NewDocIcon",e.OfficeIcon="OfficeIcon",e.OkIcon="OkIcon",e.PassSendIcon="PassSendIcon",e.PercentageRoundIcon="PercentageRoundIcon",e.PercentageSquareIcon="PercentageSquareIcon",e.PercentageSquareWhiteIcon="PercentageSquareWhiteIcon",e.PersonalCardIcon="PersonalCardIcon",e.PlayMarketIcon="PlayMarketIcon",e.PlusIcon="PlusIcon",e.Profile2UserIcon="Profile2UserIcon",e.ProfileIcon="ProfileIcon",e.RoundRubleIcon="RoundRubleIcon",e.SafeIcon="SafeIcon",e.ShieldTickIcon="ShieldTickIcon",e.SignDocsIcon="SignDocsIcon",e.SmallClockIcon="SmallClockIcon",e.TelegramIcon="TelegramIcon",e.UnionPayIcon="UnionPayIcon",e.UserTickIcon="UserTickIcon",e.VisaIcon="VisaIcon",e.VKIcon="VKIcon",e.WalletAdd2Icon="WalletAdd2Icon",e.WalletAddIcon="WalletAddIcon",e.WalletIcon="WalletIcon",e.WalletWithMoneyIcon="WalletWithMoneyIcon"}(o||(o={})),function(e){e.ActualBalanceIcon="Деньги",e.AppleIcon="Лого «Apple»",e.ArrowDownIcon="Стрелка 'Вниз'",e.ArrowLeftIcon="Стрелка",e.ArrowsRewindRight="ArrowsRewindRight",e.ArrowUpIcon="ArrowUpIcon",e.AtmIcon="Банкомат",e.BankIcon="Банк",e.BurgerIcon="Бургер",e.BurgerIconWhite="Бургер (белый)",e.Calendar2Icon="Календарь 2",e.CalendarCircleIcon="Скруглённый календарь",e.CalendarIcon="Календарь",e.CalendarTickIcon="Календарь с галочкой",e.CalendarWhiteIcon="Календарь белый",e.CardIcon="Кред. карта",e.CardPosIcon="Кред. карта под наклоном",e.CardTickIcon="Кред. карта с галочкой",e.CardWithGemIcon="Карта с драгоценностями",e.ChartSquareIcon="Деньги внутри кошелька",e.ClockIcon="Часы",e.CloseIcon="Крестик",e.ComfortableCompIcon="Кресло",e.CreditCardsIcon="Кредитные карты",e.DiscountShapeIcon="Скидка",e.DocIcon="Документ",e.DocIconMonoColor="Документ (одноцветный)",e.DocumentTextIcon="Документ с текстом",e.DollarIcon="Доллар",e.EarthIcon="Земля",e.EmptyWalletChangeIcon="Пустой кошелёк с возвратом",e.EmptyWalletIcon="Пустой кошелёк",e.EmptyWalletWhiteIcon="Пустой кошелёк (белый)",e.EuroIcon="Евро",e.GeolocationIcon="Геолокация",e.GlassIcon="Зеркало",e.GlobalIcon="Глобус",e.GpsIcon="Gps",e.GridIcon="Сетка",e.GridIconWhite="Сетка (белая)",e.InterestGrowthIcon="Диаграмма роста",e.InterestIcon="Скидка",e.JCBIcon="JCB",e.LoupeIcon="Лупа",e.MasterCardIcon="MasterCard",e.MinusIcon="Минус",e.MirIcon="МИР",e.MoneyIcon="Деньги",e.MoneyInsuranceIcon="Денежное страхование",e.MonitorMobileIcon="Монитор и мобильный",e.NewDocIcon="Новый документ",e.OfficeIcon="Офис",e.OkIcon="Лого «Одноклассники»",e.PassSendIcon="Бизнес",e.PercentageRoundIcon="Проценты (круг.)",e.PercentageSquareIcon="Проценты",e.PercentageSquareWhiteIcon="Проценты белые",e.PersonalCardIcon="Персональная карта",e.PlayMarketIcon="Лого «PlayMarket»",e.PlusIcon="Плюс",e.Profile2UserIcon="Профиль, 2 персоны",e.ProfileIcon="Профиль",e.RoundRubleIcon="Рубль (круг.)",e.SafeIcon="Сейф",e.ShieldTickIcon="Безопасность",e.SignDocsIcon="Подписанные документы",e.SmallClockIcon="Маленькие часы",e.TelegramIcon="Лого «Telegram»",e.UnionPayIcon="UnionPay",e.UserTickIcon="Пользователь",e.VisaIcon="Visa",e.VKIcon="Лого «VK»",e.WalletAdd2Icon="Пополнение карты",e.WalletAddIcon="Кошелёк с плюсом",e.WalletIcon="Кошелёк",e.WalletWithMoneyIcon="Кошелёк с деньгами"}(c||(c={}));const m=new class{_={PROD_BRANCH:"master",FORCED_DRAFT_FLOW:!1};setup(e){this._=e}get TEST_BRANCH(){return this._.TEST_BRANCH}get RC_BRANCH(){return this._.RC_BRANCH}get PROD_BRANCH(){return this._.PROD_BRANCH}get FORCED_DRAFT_FLOW(){return this._.FORCED_DRAFT_FLOW}get ENABLE_ASSIST(){return this._.ENABLE_ASSIST}get SITEMAP(){return this._.SITEMAP}get CDN(){return this._.CDN}},d=r((({className:e="",name:t="",alt:r=`Иконка ${c[t]||t}`,title:l=r,iconVersion:i,asSVG:s,...o})=>{const d=`${m.CDN||""}icons/${t}.svg`,h="white"===i?"text-black invert":"";return s?a("svg",{className:e,...o,"aria-hidden":"true",children:[l?n("title",{children:l}):null,r?n("desc",{children:r}):null,n("use",{className:h,href:`${d}#icon`,xlinkHref:`${d}#icon`})]}):n("img",{className:e,src:d,alt:r,title:l,...o,"aria-hidden":"true"})}));function h(e){return"string"==typeof e?"normal":e.iconVersion||"normal"}const x=r((({className:e="",image:t,imageClassName:a="",...r})=>{if(!t)return null;const l="string"==typeof t?t:t.icon;return l||""===l?l.length?n(d,{className:e,iconVersion:h(t),name:l,...r}):null:n(u,{className:e,imageClassName:a,image:t})})),u=r((({className:e="",image:t,imageClassName:r=""})=>t?a("picture",{className:`flex-none ${e}`,children:[t?.sources?.length?t.sources.map((({src:e,format:t},a)=>n("source",{srcSet:e,type:b(t)},`${a}_${e}`))):null,p(t,r)]}):null)),p=(e,t="")=>{const a={width:e.size?.width?`${e.size?.width}px`:"100%",height:e.size?.height?`${e.size?.height}px`:"100%"},r=e.title||"",l=e.alt||e.title;return n("img",{src:e.src,className:t,alt:l,title:r,style:a,...e.size})};function b(e){return e?`image/${String(e)}`:void 0}const g={left:"text-left",center:"text-center",right:"text-right"},f={transparent:{background:"bg-transparent",text:"text-primary-text",description:"text-primary-text"},primary:{background:"bg-white",text:"text-primary-text",description:"text-primary-text"},secondary:{background:"bg-primary-main",text:"text-white",description:"text-white/80"}},N=r((({bgColorHeadline:e="transparent",align:t="left",className:r="",title:l,description:i,anchor:o=null})=>{const c=f[e];return a("section",{className:`p-[50px] ${c.background} ${r}`,id:o,children:[l&&n(s,{headingType:"h2",className:`text-primary-text ${c.text} ${g[t]}`,title:l}),i&&n("p",{className:`font-normal text-base mt-4 ${c.text} ${g[t]}`,children:i})]})})),v=r((({className:e,iconClassName:t,textClassName:r,suffixClassName:l,doc:i,icon:s})=>{const{text:o,fileSize:c,...m}=i;return a("a",{className:e,role:"link",...m,children:[s?n(x,{className:t,image:s,width:"24px",height:"24px",asSVG:!0}):null,o?a("span",{className:r,children:[o,n("span",{className:l,children:m?.href&&y(w(m.href),c)})]}):null]})})),y=(e,t)=>(e||t?",":"")+(e?` ${e}`:"")+(t?` (${t})`:""),w=e=>{if(!e)return"";const t=e.lastIndexOf(".");return-1!==t?e.substring(t+1):""},I=r((({className:e="",doc:t,icon:a})=>n(v,{className:`flex h-full box-border ${e}`,iconClassName:"mr-2.5 min-w-6 min-h-6",textClassName:"self-center font-light",suffixClassName:"text-secondary-text group-hover:text-primary-main",doc:t,icon:a}))),k=r((({className:e,documents:t,columnsMode:a="double",icon:r})=>t?.length?n("div",{className:e,role:"list",children:t.map(((e,t)=>n("div",{className:"double"===a?"basis-[calc(50%-20px)]":"",role:"listitem",children:n(I,{className:"group flex align-middle h-fit w-fit text-primary-text no-underline hover:text-primary-main",doc:e,icon:r})},String(t))))}):null)),C={left:"text-left",center:"text-center",right:"text-right"},$={double:"mb-8",single:"mb-[26px]"},S={double:"flex gap-x-5 gap-y-[26px] flex-wrap",single:"flex gap-3.5 flex-col"},T=r((({className:e="",title:t,subtitle:r,align:l,documents:i,icon:o={icon:"DocIcon"},columnsMode:c="double",anchor:m=null})=>a("section",{className:`font-sans text-primary-text p-[50px] bg-white ${e}`,id:m,children:[t?n(s,{headingType:"h2",className:`${r?"mb-2.5":$[c]} ${C[l??"center"]}`,title:t}):null,r?n("h3",{className:`text-base mt-0 font-normal ${$[c]} ${C[l??"center"]}`,children:r}):null,n(k,{className:S[c],columnsMode:c,documents:i,icon:o})]}))),M={primary:"bg-white text-primary-text",secondary:"bg-primary-main text-white"},D=r((({className:e="",title:t,image:r,benefits:l,version:i="primary",directionRight:o=!1,anchor:c=null})=>a("section",{className:`relative font-sans p-14 ${M[i]} ${e}`,id:c,children:[n(s,{headingType:"h2",className:"text-center",title:t}),a("div",{className:"flex justify-center mt-9",children:[r?.src&&n(x,{className:o?"order-2 ml-6":"mr-6",image:r}),l?.length?n("div",{className:"flex flex-col",children:l.map(((e,t)=>function(e,t,r){return a("div",{className:"flex flex-row mb-8",children:[e.icon?n(x,{className:"w-[48px] h-[48px] bg-main rounded-full box-border p-[12px]",image:e.icon,width:"48",height:"48",asSVG:!0}):null,a("div",{className:"flex gap-1 flex-col h-full ml-5 max-w-[490px]",children:[e.label&&n("div",{className:"font-medium text-xl m-0 "+("primary"===r?"text-primary-text":""),children:e.label}),e.description&&n("div",{className:"font-normal text-sm "+("primary"===r?"text-secondary-text":""),children:e.description})]})]},String(t))}(e,t,i)))}):null]})]})));const A=e=>e?.includes("//"),R=e=>(e||"").replace(/\/?\?.*/,""),P=e=>{if(!e||!A(e))return;const t=e,n=t.indexOf("//"),a=t.indexOf("/",n+"//".length);return-1!==a?t.substring(0,a):t},L=e=>{if(!e||!A(e))return;const t=e.indexOf("#");return-1!==t?e.substring(t,e.length):void 0};var V=Object.freeze({__proto__:null,isURL:A,withoutQuery:R,getOrigin:P,getHash:L});const B="/mobile",j=(e,t)=>{if(!e)return e;const n=P(t?.href);return n?e.replace(n,"")||"/":e},_=e=>e;function W({router:e,handlerDecorator:t=_},n){const a=((e,t)=>{if(!e)return e;const n=j(e,t)||"",a=t?.pathname.startsWith(B);return a&&!A(n)?`/mobile${n}`:n})(n.href,e);return{...n,href:a,"aria-label":n.text,onClick:t((t=>{const r=a&&!A(a),l=!n.target||"_self"===n.target;r&&l&&(t.preventDefault(),e.push(a))}),n)}}const G=r((({text:e,href:t,target:a,onClick:r,className:l="",children:i})=>t?n("a",{className:`no-underline ${l}`,href:t,target:a,onClick:r,children:n("span",{className:l,children:e||i})}):n("span",{className:l,children:e||i})));function E(e){return t=>t.reduce(((t,n,a)=>t.length?t.concat({...e,key:a},n):[n]),[])}const O=r((e=>{const{text:t,aboveText:r,appendLeft:l}=e;return a("div",{className:F(e),children:[l||null,U(e)?a("div",{children:[n("div",{className:"text-m-2xs font-light text-left",children:r}),n("div",{className:"text-button text-left",children:t})]}):null]})})),F=e=>{const{version:t,aboveText:n,rounded:a}=e;if("link"===t)return"";const r="px-8 gap-2 "+(n?"py-2":"py-[18px]");return["flex items-center justify-center",U(e)?r:"h-12 w-12",a?"rounded-full":""].join(" ")},U=({text:e,aboveText:t,appendLeft:n})=>Boolean(e||t||!n),H={primary:"text-white bg-primary-main hover:bg-primary-hover active:bg-primary-active",secondary:"text-primary-main bg-secondary-light hover:bg-secondary-hover active:bg-secondary-active",link:""},Z={primary:"bg-secondary-dark text-secondary-text",secondary:"bg-secondary-light text-secondary-text",link:""},z="text-center font-sans select-none",q=r((e=>{const{text:t,aboveText:a,appendLeft:r,children:l,disabled:i,rounded:s,...o}=e,c=l??n(O,{text:t,aboveText:a,appendLeft:r,rounded:s});return n(i?X:J,{rounded:s,...o,children:c})})),J=r((({className:e="",ariaLabel:t,version:a="none",rounded:r,href:l,target:i,children:s,onClick:o,...c})=>n("a",{className:`${z} inline-block cursor-pointer no-underline ${H[a]||""} ${r?"rounded-full":"rounded-md"} ${e}`,href:l,target:i,onClick:o,"aria-label":t,role:l?"link":"button",...c,children:s}))),X=r((({className:e,children:t,ariaLabel:a,version:r="none",rounded:l})=>n("div",{role:"button","aria-disabled":"true","aria-label":a,tabIndex:"-1",className:`inline-block ${z} ${Z[r]||""} ${l?"rounded-full":"rounded-md"} ${e||""}`,children:t}))),K=r((({context:e,className:t="",buttons:a})=>{const{handlerDecorator:r}=e,l=e.useRouter();return a?.length?n("div",{className:`${t}`,children:a.map(((e,t)=>function({icon:e,...t},a){if(!t?.text)return;return n(q,e?{appendLeft:n(x,{image:e,width:"24",height:"24",asSVG:!0}),...t}:{...t},String(a))}(W({router:l,handlerDecorator:r},e),t)))}):null}));const Q=r((e=>{const{className:t="",description:a}=e;return n("div",{className:`font-normal text-base ${t}`,children:a})})),Y={primary:"rounded-full inline-block mr-3 mt-2",secondary:"rounded-full inline-block mr-3 mt-2",gray:"rounded-full inline-block mr-3 mt-2",tile:"rounded-full inline-block mr-4 mt-3","tile-white":"rounded-full inline-block mr-4 mt-3"},ee={primary:"bg-primary-text",secondary:"bg-white",gray:"bg-secondary-text",tile:"bg-black","tile-white":"bg-white"},te=r((({className:e="",isDotted:t=!0,children:r,version:l="primary"})=>a("div",{className:`font-sans flex items-start ${e}`,role:"listitem",children:[t?n("div",{className:ne(l)}):null,n("span",{children:r})]}))),ne=e=>`${Y[e]} ${ee[e]} ${{primary:"w-2 h-2 min-w-2 min-h-2",secondary:"w-2 h-2 min-w-2 min-h-2",gray:"w-1.5 h-1.5 min-w-1.5 min-h-1.5",tile:"w-[7px] h-[7px] min-w-[7px] min-h-[7px]","tile-white":"w-[7px] h-[7px] min-w-[7px] min-h-[7px]"}[e]}`,ae={primary:"text-primary-text",secondary:"text-white",gray:"text-secondary-text",tile:"text-primary-text","tile-white":"text-white"},re=r((e=>{const{className:t="",itemClassName:a,isDotted:r,items:l,version:i="primary"}=e;return n("section",{className:`${ae[i]} ${t}`,role:"list",children:l?.length?l.map(((e,t)=>n(te,{className:a,isDotted:r,version:i,children:e},String(t)))):null})})),le=r((({className:e="",title:t,children:r,buttons:l,image:i,anchor:s=null})=>a("div",{className:`font-sans flex flex-col grow h-full items-start ${e}`,id:s,children:[t,a("div",{className:"flex grow w-full justify-between",children:[a("div",{className:"flex flex-col justify-between w-full",children:[n("div",{children:r}),l?n("div",{children:l}):null]}),i]})]}))),ie={primary:"text-primary-text",secondary:"text-white"},se={primary:"text-secondary-text",secondary:"text-white"};function oe(e,t){let n="bg-primary-main text-black";return"secondary"===e?n="bg-white/30 text-black":"normal"===t&&(n="bg-secondary-light text-primary-main"),`w-[50px] h-[50px] min-w-[50px] min-h-[50px] rounded-full p-[10px] box-border ${n}`}const ce=r((({className:e="",context:t,title:r,headingType:l="h2",description:i,benefits:s,benefitsVersion:o="normal",buttons:c,image:m,items:d,version:h="primary",isDotted:u=!0,textBlockClassName:p=""})=>{const b="secondary"===h?"text-white":"text-primary-text";return a("div",{className:`flex grow justify-between items-stretch ${e}`,children:[n("div",{className:`flex flex-col ${p}`,children:a(le,{context:t,title:me(r,l),buttons:de(t,c),children:[i&&n(Q,{className:`mt-4 max-w-[600px] text-md font-light ${b}`,description:i}),s?.filter((e=>e.label))?.length?n("div",{className:"flex gap-6 mt-6",children:s.map(((e,t)=>function({benefit:e,version:t="primary",benefitsVersion:r="normal"},l){const i="white"===r||"secondary"===t;return a("div",{className:"flex gap-4 items-center",children:[e.icon?n(x,{className:oe(t,r),image:{...e?.icon,iconVersion:i?"white":"normal"},width:"24",height:"24",asSVG:!0}):null,a("div",{className:"flex gap-0.5 flex-col h-full max-w-[149px] min-w-[149px]",children:[n("div",{className:`text-xl m-0 ${ie[t]}`,children:e.label}),e.description&&n("div",{className:`font-light text-m-md ${se[t]}`,children:e.description})]})]},String(l))}({benefit:e,version:h,benefitsVersion:o},t)))}):null,d?.length?n(re,{className:"mt-5 text-title-2xs font-light",items:d,itemClassName:"mb-[7px]",version:h,isDotted:u}):null]})}),m?.src&&n(x,{className:"mt-[-50px]",image:m})]})})),me=(e,t)=>e&&n(s,{headingType:t,title:e,className:"whitespace-pre-wrap max-w-[600px]"}),de=(e,t)=>t?.length?n(K,{context:e,buttons:t,className:"flex mt-9 gap-4"}):null;function he(e,t,r){return a("div",{className:`flex items-center ${r}`,children:[n(q,{version:t,rounded:!0,className:"w-12 h-12 min-h-12 min-w-12 flex items-center justify-center mr-3",ariaLabel:e?.text,href:e?.href,children:n(x,{className:"w-4 h-4",image:e?.icon||{icon:"ArrowLeftIcon"},asSVG:!0})}),e?.text?n("span",{className:"text-m-md font-light",children:e.text}):null]})}const xe={primary:"bg-white text-primary-text",secondary:"bg-primary-main text-white"},ue={primary:"text-secondary-text",secondary:"text-white/80"},pe=r((e=>{const{context:t,className:r="",breadcrumbs:l,backwardButton:i,version:s="primary",anchor:o=null,...c}=e,m=t.useRouter(),{handlerDecorator:d}=t;return a("section",{className:`font-sans overflow-hidden pt-[50px] pl-[50px] pb-[50px] pr-[7.5rem] box-border min-h-[420px] ${xe[s]} ${r}`,id:o,children:[i?.text?he(i,s,"mb-10 -mt-2.5"):null,l?.length?n("div",{className:"text-xs mb-6",children:E(n("span",{className:`mx-2 ${ue[s]}`,children:"/"}))(l.map(((e,t)=>n(G,{...W({router:m,handlerDecorator:d},{className:ue[s],...e})},String(t)))))}):null,n(ce,{context:t,version:s,...c})]})})),be={primary:{background:"bg-white",icon:"bg-primary-main text-white",title:"text-primary-text",description:"text-secondary-text"},secondary:{background:"bg-primary-main",icon:"bg-white text-primary-main",title:"text-white",description:"text-white"},"secondary-light":{background:"bg-primary-main/10",icon:"bg-primary-main text-white",title:"text-primary-text",description:"text-secondary-text"}},ge=r((({title:e,description:t,blockVersion:r="primary",iconVersion:l,image:i,className:s,anchor:o=null})=>{const c=be[r];return a("section",{className:`font-sans px-9 py-4 flex ${c.background} ${s||""}`,id:o,children:["small"===l?fe(c.icon):null,"big"===l?Ne(i):null,a("div",{className:"py-0.5",children:[e&&n("div",{className:`font-medium text-base mb-1 ${c.title}`,children:e}),t&&n("div",{className:`text-sm ${c.description}`,children:t})]})]})}));function fe(e){return n("div",{className:"pt-1.5 pl-1 pr-4",children:n("div",{className:`rounded-full h-4 w-4 text-center text-xs ${e}`,children:"i"})})}function Ne(e){return e?.src?n(x,{className:"pt-0.5 pr-3",image:e}):null}const ve=e=>{const t="col-span-",n=e.split(/\s+/).find((e=>e.startsWith(t)));return n?parseInt(n.substring(t.length),10):12};function ye(e=""){const t=ve(e);return t<=6?"min-h-[300px]":t<=8?"min-h-[320px]":"min-h-[360px]"}function we(e=""){const t=ve(e);return t<=6?"pr-9":t<=8?"pr-[4.75rem]":"pr-[9.4rem]"}const Ie={primary:"bg-white text-primary-text",secondary:"bg-primary-main text-white"},ke=r((e=>{const{context:t,title:r,headingType:l="h3",description:i,items:o,children:c,buttons:m,image:d,className:h="",version:u="primary",role:p,anchor:b=null}=e;return n("section",{className:`overflow-hidden font-sans p-9 pr-3 box-border ${h} ${Ie[u]} ${we(h)} ${ye(h)} `,role:p,id:b,children:a(le,{context:t,title:r&&n(s,{headingType:l,as:"h3",title:r,className:`whitespace-pre-wrap max-w-[600px] ${r?"mb-3":""}\n ${"primary"===u?"text-primary-text":""}`}),buttons:m?.length?n(K,{context:t,buttons:m,className:"flex mt-9 gap-3"}):null,image:d?.src&&n(x,{className:"mt-auto ml-7",image:d}),children:[i&&n(Q,{className:"max-w-[600px] text-title-new-sm font-light",description:i}),c,Ce(o,u)]})})}));function Ce(e,t){return e?.length?n(re,{items:e,itemClassName:"text-title-2xs font-light mt-2",version:"primary"===t?"tile":"tile-white"}):null}const $e={primary:"bg-white text-primary-text",secondary:"bg-primary-main text-white"},Se=r((({context:e,className:t="",title:r,headingType:l="h3",description:i,benefits:o,buttons:c,image:m,version:d="primary",anchor:h=null})=>n("section",{className:`bg-white overflow-hidden text-primary-text font-sans p-9 box-border ${t} ${$e[d]} ${we(t)} ${ye(t)} `,id:h,children:a(le,{context:e,title:r&&n(s,{headingType:l,as:"h3",title:r,className:"whitespace-pre-wrap max-w-[600px]"}),buttons:c?.length?n(K,{context:e,buttons:c,className:"flex mt-9 gap-3"}):null,image:m?.src&&n(x,{className:"mt-auto ml-7",image:m}),children:[i?n(Q,{className:"mt-4 max-w-[600px]",description:i}):null,a("div",{className:"flex mt-5 mb-1",children:[o?.length?n("div",{className:"mr-8",children:o.map(Te)}):null,o?.length?n("div",{className:"pt-1",children:o.map(((e,t)=>function(e,t,a="primary"){return n("div",{className:`text-sm ${t?"mt-4":""} ${{primary:"text-secondary-text",secondary:"text-white"}[a]}`,children:e.description},String(t))}(e,t,d)))}):null]})]})})));function Te(e,t){return n("div",{className:"text-xl font-medium "+(t?"mt-2.5":""),children:e.label},String(t))}const Me=r((({className:e,disabled:t,...a})=>n(q,{rounded:!0,className:`shadow-[0_4px_25px_rgba(0,0,0,0.07)] w-12 h-12 min-h-12 max-h-12 flex items-center justify-center ${t?"bg-secondary-light text-secondary-text":"bg-white text-primary-text hover:text-primary-main"} ${e||""}`,disabled:t,...a,children:n(x,{className:"w-4 h-4 min-w-4 min-h-4 rounded-full box-border",image:{icon:"ArrowLeftIcon"},width:"16",height:"16",asSVG:!0})}))),De={primary:"bg-white text-secondary-text",secondary:"bg-primary-main text-white"},Ae={normal:3,mini:4},Re={normal:"min-w-[364px] w-[364px]",mini:"min-w-[260px] w-[260px]"},Pe={normal:380,mini:276},Le=r((({title:e,description:t,image:r,items:l,button:i,version:s,isDotted:o=!0})=>{const c=function(e){return`text-xl m-0\n ${"secondary"!==e?"text-primary-text":""}\n `}(s);return a("div",{className:"h-full flex flex-col justify-between text-center",children:[a("div",{children:[r?.src?n("div",{className:"flex justify-center",children:n(x,{className:"mb-6",image:r})}):null,e?Be(e,c):null,t?n("div",{className:"font-light text-m-md-new "+(e?"mt-2":""),children:t}):null,l?.length?je(l,s,o):null]}),i?.text?Ve(i):null]})}));function Ve(e){return n(q,{className:"mt-6 w-full",appendLeft:e.icon&&n(x,{image:e.icon,width:"24px",height:"24px",asSVG:!0}),...e})}function Be(e,t){return n("div",{className:`text-xl m-0 ${t}`,children:e})}function je(e,t="primary",a){return n(re,{className:"max-w-[308px] mt-2 text-sm "+("primary"===t?"!text-secondary-text":""),itemClassName:"mt-1 first:mt-0",items:e.filter((e=>e?.text)).map((e=>e.text)),isDotted:a,version:t})}const _e=r((({context:e,title:t,description:r,cards:l=[],version:i="normal",activeCardIndex:o})=>a("div",{children:[n("div",{className:"absolute top-0 left-0 bottom-0 w-[84px] bg-gradient-to-r from-white to-transparent"}),a("div",{className:"flex flex-col items-center mb-8",children:[t?n(s,{headingType:"h2",className:"text-center",title:t}):null,r?n("div",{className:"font-light text-md max-w-[600px] mt-2.5",children:r}):null]}),n("div",{className:`flex ${l?.length<=Ae[i]?"justify-center":""} duration-1000`,style:{transform:`translateX(-${o*Pe[i]}px)`},role:"list",children:l?.map(((t,a)=>function({card:e,version:t},a){return n("section",{className:`box-border border-solid border border-main-stroke p-6 mx-2 flex flex-col justify-between\n items-stretch ${Re[t]} ${De[e.version??"primary"]} w-full col-span-4`,role:"listitem",children:n(Le,{...e})},String(a))}({card:t,version:i,context:e},a)))})]})));const We=r((({context:e,cards:t=[],className:r="",version:l="normal",anchor:i=null,...s})=>{const[o,c]=e.useState(0),m=t?.length>Ae[l],d=m&&t?.length-o>Ae[l],h=m&&o>0;return a("section",{className:`relative font-sans text-primary-text bg-white p-[42px] overflow-hidden ${r}`,id:i,children:[n(_e,{context:e,cards:t,version:l,activeCardIndex:o,...s}),h&&n(Me,{className:"absolute top-1/2 left-8 z-10 mt-[25px]",onClick:()=>c(o-1),ariaLabel:"Пролистать влево","data-block-control":"scroll-left"}),d&&n(Me,{className:"absolute top-1/2 right-8 z-10 mt-[25px] rotate-180",onClick:()=>c(o+1),ariaLabel:"Пролистать вправо","data-block-control":"scroll-right"}),n("div",{className:"absolute top-0 left-0 bottom-0 w-[84px] bg-opacity-from-white"}),n("div",{className:"absolute top-0 right-0 bottom-0 w-[100px] bg-opacity-to-white"})]})})),Ge=r((e=>n(We,{...e,version:"normal"}))),Ee=r((e=>n(We,{...e,version:"mini"}))),Oe=r((({className:e="",documents:t,anchor:a=null})=>n("section",{className:`font-sans bg-white mt-[10px] ${e}`,id:a,children:n("ul",{className:"flex flex-col text-sm text-secondary-text p-0",children:t?.length?Fe(t):null})}))),Fe=e=>e.map(((e,t)=>{const{text:a,...r}=e;return n("li",{className:"mb-4 list-none",children:n("a",{className:"hover:text-primary-main",role:"link",...r,children:a||null})},`list_item_${String(t)}`)})),Ue={Headline:N,LinkDocs:T,TextBlock:ge,PictureText:D,ProductBlock:pe,Tile:ke,ProductTile:Se,Gallery:Ge,MiniGallery:Ee,LinkList:Oe},He=({blocks:e,context:t,className:n,columns:a})=>e?.length?e.map(Ze({context:t,className:n,columns:a})):null,Ze=({context:e,columns:t,className:a})=>(r,l)=>{const i=r?.blockListType;if(!i||!(i in Ue))return null;return n("div",{className:`${a} ${2===t?"w-1/2":""}`,children:n(Ue[i],{context:e,...r,className:"!p-0"})},`block_${l}`)},ze=r((({blocks:e,context:t})=>n("div",{className:"transition-all duration-300 max-h-0 overflow-hidden",children:He({context:t,className:"mb-5 last:mb-0 pb-5",blocks:e})}))),qe=r((({label:e,isExpanded:t,blocks:r,context:l})=>{const{isActive:i,hasContent:s,icon:o,handleToggle:c}=(({context:e,blocks:t,initialState:n=!1})=>{const[a,r]=e.useState(n),l=t?.length;return{isActive:a,hasContent:l,icon:a?"MinusIcon":"PlusIcon",handleToggle:e=>{if(!l)return;r(!a);const t=(({currentTarget:e})=>e.nextSibling)(e);t.style.maxHeight=t.style.maxHeight?null:`${t.scrollHeight}px`}}})({context:l,blocks:r,initialState:t});return a("li",{className:"border-0 border-b border-solid border-main-divider last:border-b-0",children:[a("button",{className:`border-none bg-transparent px-0 py-5 flex justify-between text-left w-full font-sans\n ${s?"group cursor-pointer":""}\n `,onClick:c,children:[n("span",{className:"text-xl pr-2.5 font-medium",children:e}),s?n(x,{image:o,className:"text-primary-main",width:"24",height:"24",asSVG:!0}):null]}),s?n(ze,{isExpanded:i,blocks:r,context:l}):null]})})),Je=r((({title:e,description:t,accordionItems:r,context:l,className:i="",anchor:o=null})=>a("section",{className:`p-[50px] font-sans bg-white text-primary-text ${i}`,id:o,children:[e?n(s,{headingType:"h4",className:"mb-2.5",title:e}):null,t?n("div",{className:"mb-2.5 text-base",children:t}):null,r?.length?n("ul",{className:"list-none m-0 p-0",children:r.map(((e,t)=>n(qe,{...e,context:l},`AccordionItem${t}`)))}):null]}))),Xe=r((({className:e,title:t,benefits:r,anchor:l=null})=>a("section",{className:`font-sans text-primary-text bg-white p-12 flex flex-col items-center ${e||""}`,id:l,children:[t?n(s,{headingType:"h2",className:"max-w-[47rem] text-center",title:t}):null,r?.length?n("div",{className:"grid grid-cols-2 gap-8 mt-9",children:r.map(Ke)}):null]}))),Ke=(e,t)=>a("div",{className:"flex items-center gap-5 max-w-[500px]",children:[e.icon?n(x,{className:"h-[70px] w-[70px] min-w-[70px] min-h-[70px]",image:e.icon,width:"70",height:"70"}):null,a("div",{children:[n("h3",{className:"font-medium text-xl m-0",children:e.label}),e.description&&n("div",{className:"font-normal text-sm mt-2",children:e.description})]})]},String(t)),Qe=r((e=>{const{className:t="",title:r,description:l,bonusItems:i,anchor:o=null}=e;return n("section",{className:`font-sans bg-white p-[50px] pb-9 ${t}`,id:o,children:a("div",{className:"container",children:[r?n(s,{headingType:"h3",className:"text-center",title:r}):null,l?n("div",{className:"text-md font-light text-center mt-[10px]",children:l}):null,n("div",{className:"flex flex-wrap w-full mt-9",children:i?i.map(((e,t)=>n("div",{className:"flex-grow w-[49%] border border-gray pl-9 pt-9 pr-6 pb-6 mb-[14px] mx-[7px] even:mr-0 odd:ml-0 last:odd:mx-0",children:a("div",{className:"flex justify-between w-full",children:[a("div",{className:"mr-4",children:[n("div",{className:"text-title-sm",children:e.name}),n("div",{className:"text-md font-light mt-[14px] max-w-[488px]",children:e.description})]}),e.bonusCount?a("div",{className:"relative -bottom-3 h-auto flex items-end mt-14 shrink-0",children:[n("span",{className:"font-mohave -tracking-[5px] text-title-extra bg-clip-text text-transparent bg-green-to-yellow -mb-7",children:e.bonusCount}),n("span",{className:"text-[44px] bg-clip-text text-transparent bg-green-to-yellow",children:e.bonusName})]}):null]})},String(t)))):null})]})})})),Ye=r((({children:e})=>n("div",{className:"self-start flex flex-col",role:"row",children:n("div",{className:"flex",children:e})}))),et="bg-gradient-to-r from-main-gradient-start to-main-gradient-end",tt="border-main-stroke border-solid border",nt="border-main-divider border border-t-0 border-x-0",at="w-[200px] mr-6",rt={comparison:"flex gap-4 duration-1000",tariff:"flex flex-grow duration-1000"},lt=r((({children:e,activeCardIndex:t,columnWidth:a,version:r="comparison"})=>n("div",{className:"flex flex-1 overflow-hidden",children:n("div",{className:rt[r],style:{transform:`translateX(-${t*a}px)`},children:e})}))),it=r((({icon:e,image:t,title:r,link:l})=>a("div",{className:`w-80 box-border flex flex-col items-center rounded-t-md border-b-0 px-7 pt-7 pb-[46px] ${tt} ${et}`,role:"columnheader",scope:"col",children:[e&&!t?.src&&n(x,{className:"h-[63px] w-[63px] min-w-[63px] min-h-[63px] mb-4",image:e,width:"63",height:"63"}),t?.src&&n(x,{className:"mb-[18px]",image:t}),r?n(s,{headingType:"h4",as:"h3",className:"text-center text-white",title:r}):null,l?.text&&n("div",{className:"mt-auto w-full",children:n(q,{href:l.href,target:l.target,className:"mt-4 w-full text-primary-main bg-white hover:bg-secondary-hover active:bg-secondary-active",children:n("div",{className:"font-medium text-xs py-[11px]",children:l.text})})})]}))),st=r((({colHeaders:e,activeCardIndex:t,router:r,handlerDecorator:l})=>a(Ye,{children:[n("div",{className:at,role:"columnheader",scope:"col"}),n(lt,{activeCardIndex:t,columnWidth:336,children:e.map(((e,t)=>n(it,{...e,link:e.link&&W({router:r,handlerDecorator:l},e.link)},String(t))))})]}))),ot=r((({cell:e,isFirstRow:t,isLastRow:a,isFillGradient:r})=>n("div",{className:`w-80 box-border flex flex-col ${tt} ${a?"border-t-0 rounded-b-md":"border-y-0"} ${r?et:""}`,role:"cell",children:n("div",{className:`mx-7 h-full ${nt} ${r&&t?"border-t":""} ${a?"border-b-0":"border-solid"}`,children:e.map(((e,t)=>ct(e,t,r)))})}))),ct=({label:e,description:t},r,l)=>a("div",{className:"first:pt-7 pt-6 last:pb-7",children:[e&&n("h4",{className:"text-xl font-medium m-0 "+(l?"text-white":""),children:e}),t&&n("div",{className:"text-sm opacity-80 "+(l?"text-white":"text-secondary-text"),children:t})]},String(r)),mt=r((({row:{header:e,data:t},activeCardIndex:r,isColoredFirstColumn:l,isFirstRow:i,isLastRow:s})=>a(Ye,{children:[e?.title?n("div",{className:`text-sm py-7 ${nt} w-[200px] mr-6 ${s?"border-b-0":"border-solid"}`,children:e.title}):null,t?.length?n(lt,{activeCardIndex:r,columnWidth:336,children:t.map(((e,t)=>n(ot,{cell:e,isFirstRow:i,isLastRow:s,isFillGradient:l&&0===t},String(t))))}):null]}))),dt=r((({isScrollAvailable:e,onNextClick:t,onPrevClick:r,showNextButton:l,showPrevButton:i})=>e?n("div",{children:a("div",{className:"absolute top-7 right-7 z-10",children:[n(Me,{className:"mt-4 rotate-180",onClick:t,disabled:!l,ariaLabel:"Пролистать вправо","data-block-control":"scroll-right"}),n(Me,{className:"mt-4",onClick:r,disabled:!i,ariaLabel:"Пролистать влево","data-block-control":"scroll-left"})]})}):null)),ht=r((({rowData:e,activeCardIndex:t,isColoredFirstColumn:r,...l})=>a("div",{className:"relative",children:[e.map(((e,a,{length:l})=>n(mt,{row:e,isFirstRow:0===a,isLastRow:a+1===l,activeCardIndex:t,isColoredFirstColumn:r},String(a)))),n(dt,{...l})]}))),xt=({columnsLength:e,colsLengthForScroll:t,activeCardIndex:n,setActiveCardIndex:a})=>{const r=e>t;return{onNextClick:()=>a(n+1),onPrevClick:()=>a(n-1),isScrollAvailable:r,showNextButton:r&&e-n>t,showPrevButton:Boolean(r&&n>0)}},ut=r((({context:e,columns:t,rowHeaders:r,isShowAllRow:l,visibleRowLength:i,isColoredFirstColumn:s})=>{const o=e.useRouter(),{handlerDecorator:c}=e,m=t?.map((({header:e})=>e||{})),d=t?.map((({data:e})=>e))||[],h=r?.map(((e,t)=>({header:e,data:d.map((e=>e?.[t]||[{}]))}))).slice(0,l?r.length:i),[x,u]=e.useState(0),p=xt({columnsLength:d.length,colsLengthForScroll:2,activeCardIndex:x,setActiveCardIndex:u}),{isScrollAvailable:b}=p;return a("div",{children:[a("div",{role:"table",children:[m?.length?n(st,{colHeaders:m,activeCardIndex:x,router:o,handlerDecorator:c}):null,h?.length?n(ht,{rowData:h,activeCardIndex:x,isColoredFirstColumn:s,...p}):null]}),b?n("div",{className:"absolute top-0 right-0 bottom-0 w-[84px] bg-opacity-to-white"}):null]})})),pt=r((({className:e,context:t,title:r,rowHeaders:l,columns:i,visibleRowLength:o=0,isColoredFirstColumn:c=!1,anchor:m=null})=>{const[d,h]=t.useState(!o);return a("section",{className:`bg-white font-sans py-[50px] pl-[50px] overflow-hidden text-primary-text relative ${e||""}`,id:m,children:[n(s,{headingType:"h2",className:"max-w-[47rem] text-center mb-9 mx-auto",title:r}),n(ut,{context:t,columns:i,rowHeaders:l,isShowAllRow:d,isColoredFirstColumn:c,visibleRowLength:o}),o?bt({isShowAllRow:d,onClick:()=>h(!d)}):null]})})),bt=({isShowAllRow:e,onClick:t})=>n("div",{className:"pr-[50px]",children:a("div",{className:"flex w-full",children:[n("div",{className:at}),n("button",{onClick:t,className:"mt-5 flex-1 border-main-stroke border-solid border text-primary-text bg-white hover:border-primary-main hover:text-primary-main",children:n("div",{className:"font-sans font-medium text-xs py-[11px]",children:e?"Скрыть":"Показать все параметры"})})]})});function gt(e,t){const{data:n}=e(function(e){return`/wcms-resources/${e||"credit-calculator-data"}.json`}(t),ft);return n||{}}async function ft(e){const t=await fetch(e);return await t.json()}const Nt=r((({className:e,viewBox:t,fill:a="none",width:r,height:l,paths:i,...s})=>n("svg",{xmlns:"http://www.w3.org/2000/svg",className:e,viewBox:t,fill:a,width:r,height:l,children:i.map((({d:e,fill:t,...a},r)=>n("path",{d:e,fill:t||"currentColor",...s,...a},r)))}))),vt=[{d:"M10.207.793a1 1 0 0 1 0 1.414l-6 6a1 1 0 0 1-1.414 0l-2.5-2.5a1 1 0 0 1 1.414-1.414L3.5 6.086 8.793.793a1 1 0 0 1 1.414 0Z",fillRule:"evenodd",clipRule:"evenodd",fill:"white"}],yt=r((({text:e,checked:t,onChange:r,className:l})=>n("div",{className:l,children:a("label",{className:"flex items-center cursor-pointer relative",children:[n("input",{className:`peer appearance-none w-5 h-5 border-solid border ${t?"border-black":"border-main-stroke"} rounded checked:bg-primary-main checked:border-primary-main m-0`,type:"checkbox",onChange:e=>{r(e.target.checked)},checked:t}),n(Nt,{paths:vt,className:"hidden absolute left-1 ml-px peer-checked:block",width:"11",height:"9",fill:"white",viewBox:"0 0 11 9"}),e?n("span",{className:"font-sans ml-3 text-m-base cursor-pointer",children:e}):null]})}))),wt=e=>new Intl.NumberFormat("ru-RU",{maximumSignificantDigits:3}).format(e),It=r((({title:e,value:t,postfix:r="",prefix:l,className:i=""})=>a("div",{className:`mb-5 ${i}`,children:[e?n("div",{className:"text-base font-light",children:e}):null,t?a("div",{className:"text-title font-normal",children:[l," ",wt(Math.round(t))," ",r]}):null]}))),kt=3e4,Ct=3e6,$t=Math.round(41.5),St=r((({className:e,title:t,items:r=[],min:l=1,max:i=100,step:s=1,value:o=l,onChange:c})=>{const m=e=>{if(!c)return;const t=Number(e.replace(/\D/g,""));c(t)},d={backgroundSize:`${(100*(o-l)/(i-l)).toFixed(2)}% 100%`};return a("div",{className:e,children:[a("label",{className:"block relative",children:[t?n("span",{className:"text-base text-secondary-text pl-4",children:t}):null,n("input",{className:"m-0 mt-[5px] font-sans text-title w-full h-14 border border-solid border-main-stroke rounded-md\n outline-none p-0 pl-4 box-border text-primary-text",value:wt(o),onChange:e=>m(e.target.value),onBlur:()=>{c&&(o<l&&c(l),o>i&&c(i))}}),n("div",{className:"absolute inset-x-0 bottom-[-4px] px-4 leading-[18px]",children:n("input",{className:"box-border w-full m-0 cursor-pointer slider",type:"range",min:l,max:i,step:s,value:o,onChange:e=>m(e.target.value),style:d})})]}),n("div",{className:"flex justify-between my-3",children:r.map(((e,t)=>n("span",{className:"text-sm leading-[14px] text-secondary-text pl-4",children:e},String(t))))})]})}));function Tt(e){const{title:t,className:a="",calculatorParams:r,moneyValue:l,defaultSum:i,setMoneyValue:s,isShowItems:o=!0}=e,c=r?.minSum||kt,m=r?.maxSum||Ct,d=[`От ${wt(c)} ₽`,`До ${wt(m)} ₽`];return n(St,{className:a,title:t,items:o?d:[],min:c,max:m,step:1e3,value:l||i,onChange:s})}const Mt=10.2,Dt=e=>{const{calculatorParams:t,isInsurance:n}=e;return t?n?t?.rateWithInsurance||Mt:t?.rateWithoutInsurance||Mt:Mt},At=e=>{const{tableRows:t,isAnnuity:n=!1}=e;if(!t)return{};return t.find((e=>e.isAnnuity===n))||{}},Rt=e=>e.maxSum&&e.minSum?(e.maxSum-e.minSum)/2:1485e3,Pt=e=>e.maxMonths&&e.minMonths?Math.round((e.maxMonths-e.minMonths)/2):$t,Lt=(e,t,n)=>Math.max(t,Math.min(e,n));function Vt(e){const{title:t,minMonths:a,maxMonths:r,monthsValue:l,defaultMonths:i,setMonthsValue:s}=e,o=e=>`${e} ${Number(e)%10==1?"месяца":"месяцев"}`;return n(St,{className:"mt-6",title:t,items:[`От ${o(a)}`,`До ${o(r)}`],min:a,max:r,step:1,value:l||i,onChange:s})}function Bt(e,t){return t?.length?n(K,{context:e,buttons:t,className:"flex flex-col mt-7 gap-2"}):null}function jt({rate:e,title:t,sup:r,className:l=""}){const i=String(e).replace(".",",");return a("div",{children:[n("div",{className:"text-sm font-light ml-3",children:t}),a("div",{className:"flex justify-start",children:[n("span",{className:`calc-rate-text font-mohave text-[200px] leading-[250px] pr-4 mt-[-16px] ${l}`,children:i}),r?n("span",{className:"calc-rate-text text-[65px] leading-[75px]",children:r}):""]})]})}const _t=r((({context:e,className:t="",buttons:r})=>{const[l,i]=e.useState(void 0),[s,o]=e.useState(void 0),[c,m]=e.useState(!1),[d,h]=e.useState(!1),[x,u]=e.useState(!1),p=gt(e.useAsyncData,"directoryName").rows,b=At({tableRows:p,isAnnuity:c}),g=Rt(b),f=Pt(b),N=b?.minMonths||1,v=b?.maxMonths||84,y=Dt({calculatorParams:b,isInsurance:x}),w=(e=>{const{calculatorParams:t,paymentType:n,rate:a,sum:r,months:l}=e;if(!t)return 0;const i=Lt(r,t.minSum||kt,t.maxSum||Ct);if("annuity"===n){const e=Number(a)/1200;return i*(e+e/(Math.pow(1+e,l)-1))}return i/l+i*(Number(a)/12)})({calculatorParams:b,paymentType:"annuity",rate:y,sum:l||g,months:s||f});return a("section",{className:t,children:[a("div",{className:"w-[468px]",children:[Tt({title:"Сумма кредита, ₽",calculatorParams:b,moneyValue:l,defaultSum:g,setMoneyValue:i}),Vt({title:"Сумма кредита, ₽",minMonths:N,maxMonths:v,monthsValue:s,defaultMonths:f,setMonthsValue:o}),a("div",{className:"pt-7",children:[n(yt,{text:"Получаю зарплату на счёт в Россельхозбанке",checked:c,onChange:m}),n(yt,{className:"mt-3",text:"Работаю в бюджетной организации",checked:d,onChange:h}),n(yt,{className:"mt-3",text:"Комплексная страховая защита",checked:x,onChange:u})]})]}),n("div",{children:y?jt({rate:y,title:"Ставка",sup:"%",className:"tracking-[-25px]"}):null}),a("div",{className:"w-[351px]",children:[w?n(It,{title:"Ежемесячный платеж",value:w,postfix:"₽"}):null,Bt(e,r)]})]})}));function Wt(e){const{calculatorParams:t,moneyValue:a,defaultSum:r,setMoneyValue:l}=e,i=t?.minSum||kt,s=t?.maxSum||Ct;return n(St,{title:"Стоимость недвижимости, ₽ ",items:[`От ${wt(i)} ₽`,`До ${wt(s)} ₽`],min:i,max:s,step:1e3,value:a||r,onChange:l})}function Gt(e){const{calculatorParams:t,moneyValue:a,defaultSum:r,setMoneyValue:l}=e,i=t?.minSum||kt,s=t?.maxSum||Ct;return n(St,{className:"mt-6",title:"Первоначальный взнос, ₽ ",items:[`От ${wt(i)} рублей`,`До ${wt(s)} рублей`],min:i,max:s,step:1e3,value:a||r,onChange:l})}function Et({credit:e,period:t,taxRefund:r}){return a("div",{children:[n(It,{title:"Сумма кредита",value:e,postfix:"₽"}),n(It,{title:"Срок",value:t,postfix:"лет"}),n(It,{title:"Налоговый вычет",value:r,postfix:"₽"})]})}const Ot={CreditCalculatorForm:_t,MortgageCalculatorForm:r((({context:e,className:t="",buttons:r})=>{const[l,i]=e.useState(void 0),[s,o]=e.useState(void 0),[c,m]=e.useState(!1),[d,h]=e.useState(!1),x=gt(e.useAsyncData,"directoryName").rows,u=At({tableRows:x,isAnnuity:c}),p=Rt(u),b=Pt(u),g=u?.minMonths||1,f=u?.maxMonths||84,N=Dt({calculatorParams:u,isInsurance:c});return a("section",{className:t,children:[a("div",{className:"w-[468px]",children:[Wt({calculatorParams:u,moneyValue:l,defaultSum:p,setMoneyValue:i}),Gt({calculatorParams:u,moneyValue:l,defaultSum:p,setMoneyValue:i}),Vt({title:"Срок ипотеки, месяцев",minMonths:g,maxMonths:f,monthsValue:s,defaultMonths:b,setMonthsValue:o}),a("div",{className:"mt-7",children:[n(yt,{text:"Страхование жизни",checked:c,onChange:m}),n(yt,{className:"mt-4",text:"Страхование жизни, злоровья и временной утраты трудоспособности",checked:d,onChange:h})]})]}),a("div",{children:[n("div",{children:N?jt({rate:N,title:"Ставка",sup:"%",className:"tracking-[-25px]"}):null}),n(It,{title:"Ежемесячный платеж",value:777777,postfix:"₽"})]}),a("div",{children:[n("div",{className:"w-[351px]",children:Et({credit:3892e3,period:15,taxRefund:65e4})}),Bt(e,r)]})]})})),DepositCalculatorForm:r((({context:e,className:t="",buttons:r,rate:l,minSum:i,maxSum:s,minMonths:o,maxMonths:c})=>{const[m,d]=e.useState(void 0),[h,x]=e.useState(void 0),u=gt(e.useAsyncData,"directoryName").rows,p=At({tableRows:u,isAnnuity:!1}),b=Rt(p),g=Pt(p);return a("section",{className:t,children:[a("div",{className:"w-[468px]",children:[Tt({title:"Сумма вклада, ₽",calculatorParams:{minSum:i,maxSum:s},moneyValue:m,defaultSum:b,setMoneyValue:d}),Vt({title:"Срок вклада, месяцев",minMonths:o||1,maxMonths:c||84,monthsValue:h,defaultMonths:g,setMonthsValue:x})]}),n("div",{children:l?jt({rate:l,title:"Ставка",sup:"%",className:"tracking-[-25px]"}):null}),a("div",{className:"w-[351px]",children:[n(It,{title:"Доход по вкладу",value:948841,postfix:"₽",prefix:"+"}),n(It,{title:"Сумма в конце срока",value:1218841,postfix:"₽"}),Bt(e,r)]})]})})),BonusCalculatorForm:r((({context:e,className:t="",buttons:r,bonus:l,minSumTrip:i,maxSumTrip:s,minSumOther:o,maxSumOther:c})=>{const[m,d]=e.useState(void 0),[h,x]=e.useState(void 0),u={minSum:i,maxSum:s},p={minSum:o,maxSum:c},b=l||2528;return a("section",{className:t,children:[a("div",{className:"w-[468px]",children:[Tt({title:"Сумма покупок в категории путешествия, ₽",calculatorParams:u,moneyValue:m,defaultSum:Rt(u),setMoneyValue:d,isShowItems:!1}),Tt({className:"mt-6",title:"Сумма покупок в остальных категориях, ₽",calculatorParams:p,moneyValue:h,defaultSum:Rt(p),setMoneyValue:x,isShowItems:!1})]}),n("div",{children:b?jt({rate:b,title:"Баллов за месяц",className:"tracking-[-14px]"}):null}),a("div",{className:"w-[240px]",children:[n(It,{title:"Баллов за год",value:948841}),Bt(e,r)]})]})}))},Ft=({blockCalcTabs:e,context:t,className:n})=>e?.length?e.map(Ut({context:t,className:n})):null,Ut=({context:e,className:t})=>(a,r)=>{const l=a?.calcType;if(!l||!(l in Ot))return null;return n("section",{className:`box-border relative flex grow-0 shrink-0 basis-full ${t}`,role:"listitem",children:n("div",{className:"box-border p-9 w-full",children:n(Ot[l],{context:e,...a,className:"!p-0 flex justify-between"})})},`${String(r)}`)},Ht="absolute w-[56px] h-[56px] min-h-[56px] max-h-[56px] top-1 z-10 mt-[25px] bg-white rounded-full",Zt=r((({className:e="",context:t,calcTabs:r=[],anchor:l=null})=>{const i=r.map((e=>e.nav||{})),s=r.map((({calculatorBlock:e})=>e||{})),[o,c]=t.useState(0),[m,d]=t.useState(0),h=r?.length>3&&r?.length>m+3,x=m>0;return a("section",{id:l,className:`box-border overflow-hidden relative font-sans w-100 bg-white text-primary-text ${e}`,children:[a("div",{children:[i.length>1?zt({tabsShift:m,tabsNav:i,activeSlideIndex:o,setActiveSlideIndex:c}):null,x?n(Me,{className:`${Ht} left-3 top-3`,onClick:()=>d(m-1),ariaLabel:"Пролистать влево","data-block-control":"scroll-left"}):null,h?n(Me,{className:`${Ht} right-3 top-3 rotate-180`,onClick:()=>d(m+1),ariaLabel:"Пролистать вправо","data-block-control":"scroll-right"}):null]}),n("div",{className:"flex",style:{transform:`translateX(-${o}00%)`},role:"list",children:Ft({context:t,className:e,blockCalcTabs:s})})]})}));function zt({tabsShift:e,tabsNav:t,activeSlideIndex:r,setActiveSlideIndex:l}){return a("div",{children:[n("div",{style:{transform:`translateX(-${388*e}px)`},className:"flex flex-col justify-end items-center h-[126px] pt-[38px] box-border duration-1000",children:n("div",{className:"w-full flex flex-nowrap items-end gap-2",children:t.map(((e,t)=>function({tab:e,i:t,activeSlideIndex:r,onClick:l}){const i=t===r,s=i?"h-[88px] w-[387px] min-w-[387px] p-5 border-none bg-primary-main text-white":"h-[77px] w-[322px] min-w-[322px] px-5 py-4 ease-in duration-300 bg-white text-primary-text",o=i?"text-md-new mb-1.5":"text-base mb-[3px]",c=i?"text-base text-white":"text-m-md",m=i?"":"text-primary-main";return a("button",{type:"button",onClick:l,"aria-label":e?.title,className:`box-border font-sans relative border-[1px] border-main-stroke cursor-pointer text-left border-b-0 flex\n ${s}`,children:[n(x,{className:`h-[24px] w-[24px] min-w-[24px] min-h-[24px] mr-4 ${m}`,image:{...e?.icon,iconVersion:i?"white":"normal"},width:"24",height:"24",asSVG:!0}),a("div",{className:"border-0",children:[n("div",{className:`font-medium ${o}`,children:e?.title}),n("div",{className:`text-secondary-text ${c}`,children:e.description})]})]},String(t))}({tab:e,i:t,activeSlideIndex:r,onClick:()=>l(t)})))})}),n("div",{className:"w-full h-2 bg-primary-main"})]})}const qt=r((({tabs:e,currentTabIndex:t,onTabClick:a})=>n("div",{className:"flex items-end border-b border-main-stroke",role:"tablist",children:e?.map(Jt(t,a))}))),Jt=(e,t)=>(r,l)=>{const i=e===l;return a("div",{className:"flex h-full flex-1 cursor-pointer mr-2 last:mr-0 box-content "+(i?"px-2 h-16 pt-4 pb-2 text-white bg-primary-main":"px-2 h-14 pb-2 pt-3 border border-b-0 border-main-stroke"),role:"tab",onClick:()=>t(l),"aria-selected":String(i),children:[r?.icon?Xt(r,i):null,a("div",{children:[r?.title?n("h3",{className:"font-medium m-0 text-base",children:r?.title}):null,r?.description?n("span",{className:"font-light text-xs "+(i?"":"text-secondary-text"),children:r?.description}):null]})]},String(l))},Xt=(e,t)=>n("div",{className:"h-full mt-1",children:n(x,{className:"w-5 h-5 mr-3 "+(t?"invert":""),image:e?.icon||"CardIcon",asSVG:!t})});function Kt(e=""){const t=ve(e);return t<=4?"h4":t<=8?"h3":"h2"}const Qt=3e4,Yt=3e6,en=Math.round(41.5),tn=(nn=[[e=>1===e,"год"],[e=>e<=4,"года"],[()=>!0,"лет"]],e=>{const[,t]=nn.find((([t])=>t(e)))||[];return t});var nn;function an(e){const{minMonths:t,maxMonths:a,monthsValue:r,defaultMonths:l,setMonthsValue:i}=e;return n(St,{className:"mt-[23px]",title:"Срок кредита, месяцев",items:["Или выберите из предложенных вариантов ниже"],min:t,max:a,step:1,value:r||l,onChange:i})}function rn(e,t){return a("div",{className:"box-border h-fit p-9 bg-primary-main rounded-md text-white",children:[n("div",{className:"text-base mb-[18px]",children:"Наше предложение"}),n("div",{className:"text-sm opacity-60",children:"Ежемесячный платёж"}),a("div",{className:"text-lg mb-3",children:[wt(Math.round(e))," ₽"]}),n("div",{className:"text-sm opacity-60",children:"Ставка"}),a("div",{className:"text-lg",children:[t," %"]})]})}function ln(e){const{calculatorParams:t,moneyValue:a,defaultSum:r,setMoneyValue:l}=e,i=t?.minSum||Qt,s=t?.maxSum||Yt;return n(St,{title:"Желаемая сумма кредита, ₽",items:[`От ${wt(i)} рублей`,`До ${wt(s)} рублей`],min:i,max:s,step:1e3,value:a||r,onChange:l})}const sn=r((({context:e,directoryName:t})=>{const[r,l]=e.useState(void 0),[i,s]=e.useState(void 0),[o,c]=e.useState(!0),[m,d]=e.useState(!0),h=(e=>{const{tableRows:t,isAnnuity:n=!1}=e;return t&&t.find((e=>e.isAnnuity===n))||{}})({tableRows:gt(e.useAsyncData,t).rows,isAnnuity:o}),x=(e=>e.maxSum&&e.minSum?(e.maxSum-e.minSum)/2:1485e3)(h),u=(e=>e.maxMonths&&e.minMonths?Math.round((e.maxMonths-e.minMonths)/2):en)(h),p=h?.minMonths||1,b=h?.maxMonths||84,g=(e=>{const{calculatorParams:t,isInsurance:n}=e;return t?n?t?.rateWithInsurance||5:t?.rateWithoutInsurance||5:5})({calculatorParams:h,isInsurance:m}),f=(e=>{const{calculatorParams:t,paymentType:n,rate:a,sum:r,months:l}=e;if(!t)return 0;const i=Lt(r,t.minSum||Qt,t.maxSum||Yt);if("annuity"===n){const e=Number(a)/1200;return i*(e+e/(Math.pow(1+e,l)-1))}return i/l+i*(Number(a)/12)})({calculatorParams:h,paymentType:"annuity",rate:g,sum:r||x,months:i||u}),N=((e,t)=>{const n=Math.ceil((t-e)/12),a=Math.floor(e/12)+1,r=new Array(Math.min(n-1,5)).fill(0).map(((e,t)=>a+t)),l=n+a-1;return r.concat(l)})(p,b);function v(e){s(Lt(12*e,p,b))}return n("section",{className:"mt-7",children:a("div",{className:"box-border p-[49px] pr-[56px] mx-auto w-max border-solid border-[3px] border-primary-main rounded-md",children:[a("div",{className:"flex justify-between",children:[a("div",{className:"mr-[42px]",children:[ln({calculatorParams:h,moneyValue:r,defaultSum:x,setMoneyValue:l}),an({minMonths:p,maxMonths:b,monthsValue:i,defaultMonths:u,setMonthsValue:s}),n("div",{className:"flex mb-7",children:N.map(((e,t)=>function(e,t,r){const l=tn(e);return n("button",{className:"bg-secondary-light rounded-3xl h-10 w-[75px] box-border mr-2 flex items-center justify-center cursor-pointer border-none",onClick:()=>r(e),children:a("span",{className:"font-semibold text-sm",children:[e," ",l]})},String(t))}(e,t,v)))}),n(yt,{text:"Получаю пенсию на карту Россельхозбанка",checked:o,onChange:c}),n(yt,{className:"mt-3 mb-7",text:"Комплексная страховая защита",checked:m,onChange:d})]}),rn(f,g)]}),a("div",{className:"flex items-center",children:[n(q,{className:"mr-3",text:"Отправить заявку",version:"primary",href:"#"}),n("div",{className:"w-80 text-2xs leading-4 text-secondary-text","aria-label":"Соглашение на обработку персональных данных",children:"Отправляя заявку, вы соглашаетесь на обработку персональных данных соответственно требованиям ФЗ «О персональных данных»"})]})]})})})),on=[{title:"Кредит",description:"Ставка от 6% до 7 лет",directoryName:"credit-calculator-data",icon:{icon:"CardIcon"}},{title:"Кредит",description:"Ставка от 4% до 7 лет",directoryName:"credit-calculator-data1",icon:{icon:"ChartSquareIcon"}},{title:"Кредит",description:"Ставка от 3% до 6 лет",directoryName:"credit-calculator-data2",icon:{icon:"DiscountShapeIcon"}}],cn=r((({className:e="",context:t,tabs:r=on,anchor:l=null})=>{const[i,o]=t.useState(0);return a("section",{className:`font-sans text-primary-text py-10 bg-white ${e}`,id:l,children:[n(s,{className:"w-full text-center mb-8",headingType:Kt(e),title:"Калькулятор"}),n(qt,{tabs:r,currentTabIndex:i,onTabClick:o}),n(sn,{context:t,directoryName:r[i]?.directoryName})]})}));async function mn(){try{const e=await fetch(dn);return await e.json()}catch(e){console.error(e)}}const dn="/api/v1/exchangerates.json",hn=new Intl.NumberFormat("ru",{style:"currency",currency:"RUB"}),xn=e=>e?hn.format(e):"",un="font-light text-left font-normal text-sm text-secondary-text",pn={USD:"DollarIcon",EUR:"EuroIcon"},bn=r((({className:e,exchangeCurrencyItems:t})=>a("table",{className:`h-fit w-fit ${e}`,children:[n("thead",{children:a("tr",{children:[n("th",{className:un,children:"Валюта"}),n("th",{className:`${un} pl-11`,children:"Купить"}),n("th",{className:`${un} pl-11`,children:"Продать"})]})}),n("tbody",{children:t.map((e=>gn(e)))})]}))),gn=e=>{const t=e?.currency?.currency;return a("tr",{className:"pb-1",children:[n("td",{className:"pt-4",children:a("div",{className:"flex items-center",children:[t?n(x,{image:{icon:pn[t]},width:"24",height:"24"}):null,n("span",{className:"text-m-title-md ml-2",children:t})]})}),n("td",{className:"pt-4 pl-11 m-title-md font-light",children:xn(e.buyExchangeRate)}),n("td",{className:"pt-4 pl-11 m-title-md font-light",children:xn(e.saleExchangeRate)})]},t)},fn=r((({className:e="",address:t,distance:r})=>a("div",{className:`flex text-sm ${e}`,children:[n(x,{image:{icon:"GpsIcon"},width:"24",height:"24",asSVG:!0}),a("div",{className:"ml-3 font-light",children:[t?n("p",{className:"m-0 mb-[3px]",children:t}):null,r?a("p",{className:"text-secondary-text m-0",children:["Курс указан для ближайшего офиса - ",r]}):null]})]}))),Nn=r((({className:e="",id:t,name:a,type:r="text",placeholder:l})=>n("input",{className:e,id:t,name:a||t,type:r,placeholder:l}))),vn=r((({className:e="",id:t,name:a,children:r})=>n("select",{className:e,id:t,name:a||t,children:r}))),yn=r((({className:e="",value:t,selected:a,children:r})=>n("option",{className:e,value:`${t}`,selected:a,children:r}))),wn=r((({codes:e,className:t=""})=>a("div",{className:`grid gap-3.5 ${t}`,children:[In("Хочу продать",e),In("Получу",e,"USD"),n(q,{className:"box-border mt-3.5 py-3 h-12 w-full",version:"primary",href:"#",children:"Купить валюту"})]})));function In(e,t,r){return a("div",{className:"relative flex items-center",children:[n(Nn,{className:"h-10 border pl-4 pt-[7px] pb-[7px] rounded-md text-m-sm w-full appearance-none -mr-12",type:"number",placeholder:`${e}`}),t.length?n(vn,{className:"h-9 -translate-x-4",children:t.map(((e,t)=>n(yn,{value:e,selected:e===r,children:e},String(t))))}):null]})}const kn=["USD","EUR"],Cn=["RUB","USD","EUR"],$n=[{buyExchangeRate:90.6,saleExchangeRate:92.8,currency:{id:2,code:"978",currency:"EUR",name:"Евро"}},{buyExchangeRate:73.75,saleExchangeRate:75.95,currency:{id:1,code:"840",currency:"USD",name:"Американский доллар"}}],Sn={address:"Москва, ул.Ленина д.28",distance:"6км"},Tn=r((({className:e="",context:t,title:r="Курсы обмена валют",anchor:l=null})=>{const i=function(e){const{data:t}=e(dn,mn);return t||{}}(t.useAsyncData)?.exchangeRate?.currencies?.filter((e=>-1!==kn.indexOf(e?.currency?.currency||"")))||$n;return n("section",{className:`bg-white text-primary-text font-sans p-9 box-border ${e}`,id:l,children:n(le,{context:t,title:n(s,{headingType:Kt(e),title:r,className:"whitespace-pre-wrap"}),children:a("div",{className:"flex",children:[a("div",{className:"mr-[43px] pt-4",children:[i?n(bn,{className:"mb-[31px]",exchangeCurrencyItems:i}):null,n(fn,{...Sn})]}),i?.length?n(wn,{className:"grow",exchangeCurrencyItems:i,codes:Cn}):null]})})})})),Mn=["m13.72 25.51 4.42-4.33v-2.95l-4.42 4.32v2.96Zm0-10.98 4.42-4.35V7.41l-4.42 4.31v2.8Zm0 3.63 4.42-4.33v-2.78l-4.42 4.32v2.8ZM12.46 7.44l-.6-.56V0h-.66v6.22l-.58-.57V0h-.67v5l-.59-.58V0H8.7v6.56l4.44 4.33V0h-.67v7.44Zm1.26 14.35 4.42-4.33v-2.78L13.72 19v2.8Zm-5.03-.61 4.44 4.33v-2.96l-4.44-4.32v2.95Zm8.79-16.76-.59.58V0h-.66v5.66l-.6.56V0h-.66v6.87l-.58.57V0h-.67v10.9l4.42-4.34V0h-.66v4.42Zm-8.79 5.76 4.44 4.35v-2.8L8.69 7.4v2.77Zm0 3.65 4.44 4.33v-2.8l-4.44-4.3v2.77Zm0 3.63 4.44 4.33V19l-4.44-4.31v2.78Zm26.37 2.29H24.3a2.25 2.25 0 0 0 .36-1.22 2.32 2.32 0 0 0-2.33-2.31 2.32 2.32 0 0 0-2.31 2.31c0 .5.16.96.43 1.34a.74.74 0 0 0-.33.61c0 .26.14.49.33.62a2.32 2.32 0 0 0-.43 1.34 2.31 2.31 0 0 0 2.31 2.31 2.32 2.32 0 0 0 2.33-2.31c0-.45-.13-.87-.36-1.22h8.01v.49h-.8v.68h.8v.7h-.8v1.3h.8v-.58h1.17v.58h.79v-1.3h-.79v-.7h.79v-.68h-.79v-.5h1.58a.56.56 0 0 0 .56-.56v-.34a.57.57 0 0 0-.56-.56Zm-11.53 2.7a1.2 1.2 0 0 1-2.4 0c0-.24.08-.47.2-.66l.34-.56a.97.97 0 0 1-.34-.75c0-.3.13-.56.33-.74l-.32-.56a1.13 1.13 0 0 1-.2-.66 1.2 1.2 0 0 1 2.4 0c0 .49-.56 1.65-.56 1.65v.62c-.01.01.55 1.17.55 1.66ZM4.67 18.34v2.89c0 2.75 1.2 4.53 1.9 5.21l4.58 4.5c1.28 1.25 1.5 1.66 1.79 2.37v-3.2c0-2.84-1.44-3.94-2.19-4.67-1.73-1.68-2.89-2.8-3.82-3.73a8.98 8.98 0 0 1-2.26-3.37Zm6.08 14.24c-1.73-1.7-2.89-2.8-3.82-3.73a10 10 0 0 1-2.25-2.98v2.49a7.87 7.87 0 0 0 1.89 5.24l4.58 4.47c1.28 1.25 1.5 1.85 1.79 2.55v-3.37c0-2.85-1.45-3.95-2.19-4.67Z","M19.88 5.34c-.32 0-.64 0-.96.02V6.7a18.5 18.5 0 1 1 .95 36.94A18.5 18.5 0 0 1 1.35 25.17c0-5.67 2.55-10.73 6.58-14.13V9.32A19.78 19.78 0 0 0 0 25.17C0 36.12 8.9 45 19.88 45a19.85 19.85 0 0 0 19.86-19.83c0-10.95-8.9-19.83-19.87-19.83Z","M33.93 35.53c.3-.41.6-.85.87-1.3v-2.66h-.87v3.96Zm2.54-4.92c.12-.4.24-.78.34-1.16h-2.88v.7h.43c.77-.02 1.63-.03 2.11.46Zm-19.19-1.27h-.78v7.91h.78v-7.9Z","M14.7 27.83h2.58c.67 0 1.14.14 1.4.4.27.25.4.72.4 1.38v7.4c0 .66-.12 1.12-.4 1.38-.4.41-1.16.41-1.78.41l-.4-.01v3.5l.78.14v-2.88c1.2 0 1.97-.4 2.34-1.22v4.29h.26l.5-.01V29.74c0-.68.13-1.16.4-1.43.25-.27.72-.4 1.37-.4.67 0 1.65-.1 2.16.4.26.27.38.76.38 1.43v3.8h-1.77v-4.06h-.77v12.99c.26-.03.5-.07.77-.12V34.3h1.77v7.64c.36-.1.72-.21 1.08-.34v-7c0-.8.19-1.4 1-1.67l-.9-4.87h1.8l.3 5.31h.22l.3-5.31h1.88l-1.01 4.87c.84.3 1.01.81 1.01 1.66v4.53a16.63 16.63 0 0 0 1.5-1.27v-9.83h5.25l.1-.72H24.93l.17.89c-.38-.72-1.12-1.08-2.2-1.08h-.77c-1.3 0-2.1.52-2.4 1.55-.27-1.08-1.1-1.62-2.46-1.62h-3.36v14.52c.26.09.52.18.78.25V27.84Zm16.29 5.58-.85-.8.85-4.37v5.17Z","M27.66 40.79c.27-.14.55-.28.8-.43v-5.98h-.8v6.4Z"],Dn={"bg-white":"text-primary-main",transparent:"text-white"},An={"bg-white":"text-black",transparent:"text-white"},Rn=r((({className:e,href:t,children:r,targetBlank:l,bgColor:i="bg-white",hideTitle:s})=>a("a",{className:`inline-flex items-center font-sans no-underline ${e||""}`,href:t||"https://rshb.ru/",target:l?"_blank":"_self","aria-label":"Россельхозбанк",children:[n(Nt,{className:`${Dn[i]} w-10`,viewBox:"0 0 40 45",paths:Mn.map((e=>({d:e})))}),!s&&n("span",{className:`${An[i]} font-medium ml-2.5`,children:r||"Россельхозбанк"})]}))),Pn=r((({className:e,context:t})=>{const{term:r,setTerm:l}=t.useSearch();return a("form",{className:`relative ${e||""}`,children:[a("div",{className:"absolute rounded h-full flex items-center justify-center pl-4 max-w-[170px] gap-3.5 pointer-events-none",children:[n("div",{className:"w-[24px] h-[24px]",children:n(x,{image:"LoupeIcon",width:"24",height:"24"})}),!r&&n("label",{htmlFor:"search-bar-input",className:"font-sans font-light text-base text-secondary-text",children:"Поиск по сайту"})]}),n("input",{id:"search-bar-input",className:"h-12 pl-12 w-full peer font-sans font-light text-base text-black border border-solid rounded h-full box-border outline-none pr-[6%] border-main-divider focus:border-primary-text",value:r,onChange:e=>l(e.target.value),type:"text",name:"search-bar-input"}),n(q,{version:"primary",text:"Найти",className:"invisible peer-focus:visible absolute top-1 right-1",onClick:e=>{e.preventDefault(),console.log("click")},children:n("div",{className:"font-normal text-sm px-9 py-[9px]",children:"Найти"})})]})})),Ln=r((({className:e="",items:t,hasButton:r,context:l})=>{const i=l.useRouter(),{handlerDecorator:s}=l;return a("div",{className:e,children:[t?.length?t.map(Vn):null,r?n(q,{version:"primary",className:"mb-6 w-full",...W({router:i,handlerDecorator:s},{text:"Обратная связь",href:"/",target:"_blank"})}):null]})})),Vn=(e,t)=>{const{type:r,text:l,description:i}=e;return a("div",{className:"mb-4",children:[n("div",{children:Bn(r,l)}),n("div",{className:"mt-1 font-sans font-light text-sm text-secondary-text",children:i})]},String(t))},Bn=(e,t="")=>{switch(e){case"tel":return n("a",{className:"font-sans text-xl text-primary-text no-underline",href:`tel:${jn(t)}`,children:t});case"email":return n("a",{className:"font-sans text-xl text-primary-text no-underline",href:`mailto:${t}`,children:t});default:return n("span",{children:t})}},jn=e=>e.replaceAll(/\D/g,""),_n=r((({links:e,className:t="",context:a})=>{const r=a.useRouter(),{handlerDecorator:l}=a;return n("div",{className:t,children:e?.length?n("div",{className:"flex justify-between items-center gap-5 py-5 border-solid border-x-0 border-y border-y-main-divider",children:e.map(((e,t)=>n(Wn,{index:t,...W({router:r,handlerDecorator:l},e)},String(t))))}):null})})),Wn=r((({className:e="",index:t,text:a,href:r,target:l,onClick:i})=>n("a",{className:`font-sans font-light text-secondary-text hover:text-primary-main inline-block no-underline max-w-[292px] ${e}`,href:r,target:l,onClick:i,children:a||`Документ ${t}`}))),Gn=e=>t=>e?.href===t?.href,En=(e,t)=>{return(a=e,r=t,(a||[]).map((e=>r?.find(Gn(e))||e))).concat((n=e,(t||[]).filter((e=>!n?.find(Gn(e))))));var n,a,r};function On(e){const{data:t}=e(Un(),Fn);return t||{}}async function Fn(){const e=await fetch(Un());return await e.json()}function Un(){return`/wcms-resources/${m.SITEMAP||"sitemap"}.json`}const Hn=r((({className:e="",items:t,context:a})=>{const r=On(a.useAsyncData),l=En(r.topItems,t),i={router:a.useRouter(),handlerDecorator:a.handlerDecorator};return n("div",{className:`flex items-start justify-between gap-11 xl:gap-5 ${e}`,children:l?.map(((e,t)=>Zn(e,t,i)))})})),Zn=(e,t,{router:r,handlerDecorator:l})=>{const{text:i,href:s,items:o,target:c}=e;return a("div",{className:"flex flex-col w-1/5 last:w-1/4 gap-[14px]",children:[n("a",{className:"block font-sans leading-5 text-base text-primary-text no-underline",href:s,target:c||"_self",children:i||`Раздел ${t}`}),o?.map(((e,t)=>n(zn,{...W({router:r,handlerDecorator:l},e),index:t},String(t))))]},String(t))},zn=r((({text:e,href:t,target:a,index:r})=>n("a",{className:"block font-sans font-light text-base text-secondary-text hover:text-primary-main no-underline",href:t,target:a||"_self",children:e||`Раздел ${r}`}))),qn=[{origins:["t.me","telegram.org"],icon:{icon:"TelegramIcon"},label:"Телеграм",width:"20px",height:"16px"},{origins:["vk.com"],icon:{icon:"VKIcon"},label:"ВКонтакте",width:"24px",height:"12px"},{origins:["ok.ru"],icon:{icon:"OkIcon"},label:"Одноклассники",width:"12px",height:"20px"},{origins:["apps.apple.com"],icon:{icon:"AppleIcon"},label:"App Store",width:"20px",height:"22px"},{origins:["play.google.com"],icon:{icon:"PlayMarketIcon"},label:"Google Play",width:"21px",height:"21px"}],Jn=r((({href:e,version:t})=>{const{icon:a,width:r,height:l,label:i}=qn.find((({origins:t})=>t.some((t=>e?.includes(t)))))||{};if(!a)return null;return n("a",{className:` flex items-center justify-center border border-solid rounded-md border-main-divider no-underline outline-none w-14 h-14 box-border ${"secondary"===t?"text-white hover:text-primary-main hover:bg-white":"text-primary-main hover:text-white hover:bg-primary-main hover:border-primary-main"}`,href:e,"aria-label":i,target:"_blank",rel:"noopener noreferrer",children:a?n(x,{image:a,width:r,height:l,asSVG:!0,className:"block"}):null})})),Xn=r((({className:e="",media:t,version:r,context:l,children:i})=>{const s=l.useRouter(),{handlerDecorator:o}=l;return a("div",{children:[n("div",{className:`flex gap-2.5 ${e}`,children:t?.map(((e,t)=>n(Jn,{version:r,...W({router:s,handlerDecorator:o},e)},String(t))))}),n("span",{className:"font-light text-sm text-secondary-text",children:i})]})})),Kn=r((({className:e,links:t,context:r})=>{const l=r.useRouter(),{handlerDecorator:i}=r;return a("div",{className:`${e||""}`,children:[n("div",{className:"pt-5 pb-[5px]",children:n("span",{className:"font-sans font-light text-xs text-secondary-text",children:`© 2000-${(new Date).getFullYear()} АО «Россельхозбанк» Генеральная лицензия Банка России № 3349 от 12.08.2015 г.`})}),t?.length?n("div",{className:"flex justify-start items-start gap-5 pt-[5px]",children:t.map(((e,t)=>n(Qn,{index:t,...W({router:l,handlerDecorator:i},e)},String(t))))}):null]})})),Qn=r((({className:e,index:t,text:a,href:r,target:l,onClick:i})=>n("a",{className:`font-sans font-light text-xs text-secondary-text visited:text-secondary-text hover:text-primary-text inline-block no-underline max-w-[292px] ${e||""}`,href:r,target:l,onClick:i,children:a||`Документ ${t}`}))),Yn="w-[204px]",ea=r((({className:e,documents:t,relatedEnterprises:r,contacts:l,socialMedia:i,mobileApps:s,topItems:o,context:c,anchor:m=null})=>a("footer",{className:`px-9 pt-9 pb-10 bg-white ${e||""}`,id:m,children:[a("div",{className:"flex items-stretch gap-[54px] pb-[30px] xl:gap-8",children:[n(Rn,{className:Yn}),n(Pn,{context:c,className:"grow"})]}),a("div",{className:"flex items-stretch gap-[54px] xl:gap-8",children:[a("div",{className:"w-[204px] flex flex-col shrink-0 overflow-hidden",children:[n(Ln,{items:l,context:c,hasButton:!0}),n(Xn,{media:i,context:c,children:"Соцсети"}),n(Xn,{className:"mt-6",media:s,context:c,children:"Мобильное приложение"})]}),n(Hn,{className:"pt-[3px]",context:c,items:o})]}),n(_n,{className:"mt-[98px]",links:r,context:c}),n(Kn,{links:t,context:c})]}))),ta=r((({className:e="",title:t,description:r,calendar:l,anchor:i=null})=>a("section",{className:`font-sans bg-white p-[50px] ${e}`,id:i,children:[n(s,{headingType:"h3",className:"text-center",title:t}),n("div",{className:"font-light text-base-md text-center mt-3",children:r}),l?na(l):null]}))),na=e=>{const t=100/(e.reduce(((e,t)=>t?.month?.length?e+t.month.length:e),0)||1),r=e.filter((e=>e?.month?.length)).map((e=>({...e,flexBasis:e.month.length*t+"%"})));return a("div",{className:"w-full flex flex-col justify-center mt-[54px]",children:[n("div",{className:"flex w-full mb-3 font-light text-m-title-md text-center",children:r.map((e=>aa(e,t)))}),n("div",{className:"flex w-full",children:r.map(((e,t)=>a("div",{className:"pr-[11px] mr-3 border-r border-main-divider last:border-r-0 last:pr-0 last:mr-0",style:{flexBasis:e.flexBasis},children:[n("div",{className:"flex",children:ra(e)}),a("div",{className:"font-light text-sm text-primary-text mt-3",children:[n("span",{children:e.blackText})," ",n("span",{className:"text-primary-main",children:e.greenText})]})]},`monthItem-${t}`)))})]})},aa=(e,t)=>e.month.map((e=>n("div",{style:{flexBasis:`${t}%`},children:e.name},`monthName-${e.name}`))),ra=e=>e.month.map((e=>e.image?.src?n("div",{className:"h-[207px] border-r-[1px] pr-3 mr-3 border-main-divider last:border-r-0 last:pr-0 last:mr-0",children:n(x,{image:e.image,className:"flex"})},`monthImage-${e.image.src}`):null)),la=(e,t,n=((e,t)=>t.startsWith(e)))=>n(R(e),(e=>(e||"").replace(B,""))(R(A(e)?t.href:t.pathname))),ia=e=>t=>la(t.href,e),sa=e=>t=>t.items?.some(ia(e))||la(t.href,e)||((e,t)=>P(e)===P(t.href))(t.href,e),oa=r((({className:e="",text:t,href:a,target:r,active:l,flat:i,onClick:s,children:o,ariaLabel:c,bgColor:m="bg-white"})=>n("a",{className:`${ca(m,l,i)} ${e}`,href:a,target:r,onClick:s,rel:"noopener noreferrer","aria-label":c,children:n("span",{className:ma(m,l,i),children:t||o})}))),ca=(e,t,n)=>{let a="border-transparent";return t&&(a="rounded-md "+("bg-white"===e?"border-primary-main":"border-white")),`${a} inline-block border border-solid bg-transparent text-center no-underline ${n?"":"px-4 py-2"}`},ma=(e,t,n)=>{let a="text-white";return"bg-white"===e&&(a=t?"text-primary-main":(n?"text-primary-text":"text-secondary-text")+" hover:text-primary-main"),`${a} font-sans font-light text-sm`},da=r((({className:e="",children:t,ariaLabel:a})=>n("button",{type:"button",className:`border-0 p-0 w-[24px] h-[24px] flex items-center bg-inherit cursor-pointer ${e}`,disabled:!0,"aria-label":a,children:t}))),ha={"bg-white":"text-primary-text hover:text-primary-main",transparent:"text-white"},xa={"bg-white":"text-secondary-light hover:text-secondary-hover",transparent:"text-white"},ua={"bg-white":"GridIcon",transparent:"GridIconWhite"},pa=r((({context:e,className:t,defaultLocation:r="",bgColor:l="bg-white"})=>{const[i,s]=e.useGeolocation(r);return a("div",{className:`flex items-center ${t||""}`,children:[n(oa,{className:"mr-5",flat:!0,href:"#",text:i,ariaLabel:"Местоположение",onClick:s,bgColor:l}),n(oa,{className:"mr-7",flat:!0,href:"#",text:"Офисы и банкоматы",ariaLabel:"Список всех доступных офисов и банкоматов",bgColor:l}),n(da,{className:`mr-5 ${ha[l]}`,ariaLabel:"Поиск по сайту",children:n(x,{image:"LoupeIcon",className:"h-full",asSVG:!0})}),n(da,{className:`${xa[l]} min-w-[32px] min-h-[32px]`,ariaLabel:"Дополнительные ссылки",children:n(x,{image:ua[l],className:"h-full",asSVG:!0})})]})})),ba=e=>(t=[])=>{const n=t?.filter(ia(e));var a;return n?.length?(a=e=>e.href?.length||0,e=>e.reduceRight(((e,t)=>a(e)>a(t)?e:t)))(n):null},ga="absolute left-0 -bottom-3 w-full h-[2px]",fa=r((({className:e="",text:t,href:r,target:l,active:i,onClick:s,children:o,bgColor:c="bg-white",dataItemName:m})=>a("a",{className:`relative inline-block bg-transparent text-center no-underline ${e}`,href:r,target:l,onClick:s,"data-item-name":m,children:[n("span",{className:Na(c,i),children:t||o}),i?n("div",{className:va(c,i)}):null]}))),Na=(e,t)=>{let n="text-white";return"bg-white"===e&&(n=t?"text-primary-main":"text-primary-text hover:text-primary-main"),`${n} font-sans font-light text-base`},va=(e,t)=>t?`${"bg-white"===e?"bg-primary-main":e} ${ga}`:ga,ya=()=>!("undefined"!=typeof window&&window.document&&window.document.createElement),wa=!ya()?new IntersectionObserver((e=>{const t=window.document.querySelector("[data-header-submenu-visible=toggled]"),[n,a]=["[data-item-name=header-submenu]","[data-item-name=dots-header-submenu]"].map((e=>Array.from(window.document.querySelectorAll(e))));const r={};e.forEach((e=>{r[e.target.toString()]=e.isIntersecting}));const l=Ia(r,a,"hidden");Ia(r,n,"invisible"),t&&(l?t.classList.remove("hidden"):t.classList.add("hidden"))}),{root:window.document,threshold:1}):void 0,Ia=(e,t,n)=>{const a="hidden"!==n;return t.some((t=>{const r=t.toString(),l=a?!e[r]:e[r];return r in e&&t.classList.toggle(n,l),a?t.classList.contains("hidden"):!t.classList.contains("hidden")}))},ka=r((({context:e,subItems:t,bgColor:r})=>{const[l,i]=e.useState(!1),s=e.useRouter(),{handlerDecorator:o}=e;setTimeout((()=>{if(ya())return;globalThis.document.querySelectorAll("[data-item-name=header-submenu]").forEach((e=>{wa?.observe(e)}))}),200);const c=ba(s)(t),m=t?.map((e=>n(fa,{className:"mr-8",active:e===c,...W({router:s,handlerDecorator:o},e),dataItemName:"header-submenu",bgColor:r},e.href)));return a("nav",{className:"relative mt-5",children:[n("div",{className:"overflow-hidden whitespace-nowrap mr-52",children:m}),Ca({subMenuIsShow:l,toggleSubMenu:()=>i(!l),subItems:t,router:s,handlerDecorator:o})]})})),Ca=({subMenuIsShow:e,toggleSubMenu:t,subItems:r,router:l,handlerDecorator:i})=>a("div",{className:"absolute w-52 -top-4 right-0 pt-4 z-40 "+(e?"bg-white rounded-md shadow-blue-gray/24":""),"data-header-submenu-visible":"toggled",children:[n("button",{className:"flex justify-between items-center cursor-pointer h-6 ml-6",onClick:t,"aria-label":""+(e?"Скрыть другие разделы":"Показать другие разделы"),children:Array(3).fill(0).map(((e,t)=>Sa(t)))}),n("div",{className:"flex flex-col rounded-md bg-white p-6 pb-2 "+(e?"":"hidden"),"aria-hidden":!e,children:$a(r,l,i)})]}),$a=(e,t,a)=>e?.map((e=>n("a",{...W({router:t,handlerDecorator:a},e),"data-item-name":"dots-header-submenu",className:"text-base font-light pb-4 hover:text-primary-main",children:e.text},e.href))),Sa=e=>n("div",{className:"w-[3px] h-[3px] rounded bg-black mr-1"},String(e)),Ta={"bg-white":"bg-main-divider",transparent:"bg-main-divider opacity-30"},Ma=r((({className:e="",defaultLocation:t="Москва",bgColor:r="bg-white",context:l,topItems:i,anchor:s=null})=>{const o=l.useRouter(),c=On(l.useAsyncData),{handlerDecorator:m}=l,d=En(c.topItems,i),h=d.find(sa(o)),x=d.map(((e,t)=>n(oa,{active:e===h,...W({router:o,handlerDecorator:m},e),"aria-label":e.text,bgColor:r},String(t))));return n("header",{className:`pt-6 pb-8 px-20 ${r} ${e}`,id:s,children:a("div",{className:"container",children:[a("div",{className:"flex items-center",children:[n(Rn,{className:"mr-8",bgColor:r}),x,n(pa,{context:l,className:"ml-auto",defaultLocation:t,bgColor:r})]}),n("div",{className:`mt-6 h-[1px] ${Ta[r]}`}),n(ka,{context:l,subItems:h?.items,bgColor:r})]})})})),Da=r((({className:e="",context:t,title:r="Мобильное приложение",qr:l,buttons:i=[],anchor:o=null})=>n("section",{className:`bg-white text-primary-text font-sans p-9 box-border ${e} ${we(e)} ${ye(e)} `,id:o,children:n(le,{context:t,title:r&&n(s,{headingType:"h3",title:r,className:"whitespace-pre-wrap max-w-[600px] mb-[30px]"}),buttons:i?.length?n(K,{context:t,buttons:i,className:"flex mt-[30px] gap-4"}):null,children:a("div",{className:"flex items-center",children:[l?.src&&l?.href&&n("a",{href:l.href,target:"_blank","aria-label":r,children:n("img",{src:l.src,alt:r,title:r,width:"164",height:"164",className:"w-[92px] h-[92px] min-w-[92px] min-h-[92px] bg-secondary-light"})}),n("span",{className:"font-light text-secondary-text ml-4",children:"Наведите камеру телефона на QR-код и скачайте приложение"})]})})}))),Aa=r((({className:e,text:t,onClick:a,href:r,target:l,isActive:i})=>n("a",{className:`bg-inherit no-underline px-4 py-2.5 cursor-pointer rounded text-sm border border-solid hover:text-primary-main ${e||""} ${i?"border-primary-main text-primary-main":"border-white text-secondary-text"}`,onClick:a,href:r,target:l,children:t}))),Ra=r((({className:e,context:t,title:r,buttons:l,anchor:i=null})=>{const s=t.useRouter(),{handlerDecorator:o}=t,c=ba(s)(l);return a("section",{className:`font-sans text-primary-text rounded-[40px] flex items-center justify-between ${e||""}`,id:i,children:[n("h2",{className:"font-medium text-xl m-0",children:r}),l?.length?n("div",{className:"flex rounded-md overflow-hidden bg-white",children:l.filter((({text:e})=>e)).map(((e,t)=>n(Aa,{className:"first:rounded-tl-md first:rounded-bl-md last:rounded-tr-md last:rounded-br-md",isActive:e===c,...W({router:s,handlerDecorator:o},e)},String(t))))}):null]})})),Pa=r((({className:e="",text:t,active:a,children:r,onClick:l,href:i,target:s="_self"})=>n("a",{className:La(e,a),target:s,href:i,onClick:l,children:n("span",{className:Va(a),children:t||r})}))),La=(e,t)=>`${t?"bg-primary-main":"group bg-white"} flex-1 flex items-center justify-center cursor-pointer ${e}`,Va=e=>`${e?"text-white":"text-secondary-text group-hover:text-primary-main "} font-sans font-normal text-m-md`,Ba=r((({className:e="",navigatorTabs:t,context:a,anchor:r=null})=>{const l=globalThis.location?.href;return n("section",{className:`sticky top-0 z-20 box-border flex gap-x-1 h-14 ${e}`,id:r,children:t?t.map(ja(a,l)):null})})),ja=(e,t)=>(a,r)=>{const{useRouter:l,handlerDecorator:i}=e,s=l(),o=L(t),c=o?a.href===o:0===r;return n(Pa,{active:c,...W({router:s,handlerDecorator:i},a)},a.href)},_a=r((({blocks:e,columns:t=1,context:a})=>n("div",{className:"transition-all duration-300 max-h-0 overflow-hidden",children:n("div",{className:"box-border w-full p-9 "+(t>1?"flex flex-wrap":""),children:He({context:a,className:"box-border p-5",columns:t,blocks:e})})}))),Wa=r((({label:e,isExpanded:t,blocks:r,columns:l,dataTheme:i=null,context:s})=>{const{hasContent:o,icon:c,handleToggle:m,isActive:h}=(({context:e,blocks:t,initialState:n=!1})=>{const[a,r]=e.useState(n),l=t?.length;return{isActive:a,hasContent:l,icon:a?"ArrowUpIcon":"ArrowDownIcon",handleToggle:e=>{if(!l)return;r(!a);const t=(({currentTarget:e})=>e.previousSibling)(e);t.style.maxHeight=t.style.maxHeight?null:`${t.scrollHeight}px`}}})({context:s,blocks:r,initialState:t});return a("div",{className:"border-0 border-b border-solid border-main-divider",children:[o?n(_a,{isExpanded:h,columns:l,blocks:r,context:s}):null,a("button",{className:"border-none bg-primary-main px-0 py-[26px] mb-[1px] w-full font-sans text-white text-base flex justify-center cursor-pointer","data-theme":i,onClick:m,children:[n("span",{className:"pr-3",children:h?"Скрыть":e}),o?n(d,{name:c,width:"20",height:"20",asSVG:!0}):null]})]})})),Ga=r((({blockItems:e,colorPalette:t,context:a,className:r=""})=>n("section",{className:`font-sans bg-white text-primary-text ${r}`,children:e?.length?n("div",{className:"list-none m-0 p-0",children:e.map(((e,r)=>n(Wa,{...e,dataTheme:t,context:a},`BlockItem${r}`)))}):null}))),Ea=r((({className:e,context:t,title:r,description:l="Блок в разработке...",anchor:i=null})=>n("section",{className:`bg-white text-primary-text font-sans p-9 box-border ${e} ${we(e)} ${ye(e)} `,id:i,children:a(le,{context:t,title:r?n(s,{headingType:Kt(e),title:r,className:"whitespace-pre-wrap max-w-[600px]"}):null,children:[l?n(Q,{className:"mt-4 max-w-[600px]",description:l}):null,n("figure",{className:"m-0 min-w-[600px]",children:Oa()})]})}))),Oa=(e=3)=>Ua(100,e).map((e=>Math.floor(e))).map(Fa),Fa=(e=100,t)=>n("div",{style:{width:`${e}%`},className:"h-4 mt-2 bg-secondary-light"},String(t)),Ua=(e,t)=>[e].concat(t>0?Ua(e/1.618,t-1):[]),Ha={primary:"bg-white text-primary-text",secondary:"bg-primary-main text-white"},Za={primary:{title:"text-secondary-text",text:"text-secondary-text"},secondary:{title:"text-white",text:"text-white/80"}},za={primary:"bg-white text-primary-text",secondary:"bg-primary-main text-white"},qa=r((({className:e="",context:t,slides:r=[],version:l="primary",anchor:i=null})=>{const s=r.map((e=>e.nav)),o=r.map((e=>e.productBlock)),[c,m]=t.useState(0);return a("section",{id:i,className:`box-border pt-[50px] overflow-hidden relative font-sans w-100 ${e}\n ${Ha[l]}`,children:[n("div",{className:"flex duration-1000 pb-14",style:{transform:`translateX(-${c}00%)`},role:"list",children:o.map(((e,a)=>function(e,t,a){const{version:r}=e,l=r?Za[r].title:"";return n("section",{className:"box-border relative flex grow-0 shrink-0 basis-full",role:"listitem",children:n("div",{className:"flex grow",children:n(ce,{className:`pl-[50px] z-[1] ${l}`,context:a,textBlockClassName:"mb-[154px]",...e})})},String(t))}({...e,version:l},a,t)))}),n("div",{className:"flex items-center absolute bottom-6 left-0 right-0 px-[26px] box-border",children:s.map(((e,t)=>function({slide:e,i:t,activeSlideIndex:r,onClick:l,version:i}){const s=t===r,o=s?"bg-white shadow-dark-blue/42 h-[102px] w-[354px] min-w-[354px] p-0 border-none":`min-w-[277px] px-0 pt-4 pb-[23px] hover:py-[26px] hover:py-[26px] ease-in duration-300 bg-white/10\n ${za[i]}`,c=s?"text-primary-text text-title-2xs":`text-base ${Za[i].title}`,m=s?"text-secondary-text text-m-title-xs mt-2.5":`text-m-md mt-1.5 ${Za[i].text}`,d="secondary"===i?"border-white/50":"border-black/50";return n("button",{type:"button",onClick:l,"aria-label":e?.title,className:`box-border font-sans relative overflow-hidden border-[1px] border-white/50 cursor-pointer text-left mx-1 grow basis-0\n ${o} ${d}\n `,children:a("div",{className:"border-0 px-6",children:[n("div",{className:`font-medium ${c}`,children:e?.title}),n("div",{className:`text-secondary-text ${m}`,children:e.description})]})},String(t))}({slide:e,i:t,activeSlideIndex:c,onClick:()=>m(t),version:l})))})]})}));const Ja={primary:"bg-white text-primary-text",secondary:"bg-primary-main text-white"},Xa=r((({className:e="",context:t,title:r="Акции и спецпредложения",date:l,description:i,buttons:o=[],version:c="primary",anchor:m=null})=>n("section",{className:`bg-white text-primary-text font-sans p-9 box-border ${e} ${Ja[c]} ${we(e)} ${ye(e)} `,id:m,children:n(le,{context:t,title:r?n(s,{headingType:Kt(e),title:r,className:"whitespace-pre-wrap max-w-[600px]"}):null,buttons:o?.length?n(K,{context:t,buttons:o,className:"flex mt-9 gap-3"}):null,children:a("div",{className:"mt-1.5",children:[l?n("div",{className:"text-sm mb-2",children:Ka(l)}):null,n("div",{className:"text-base",children:i})]})})})));function Ka(e){return new Date(e).toLocaleString("ru-RU",{day:"numeric",month:"long",year:"numeric"}).replace("г.","")}const Qa=r((({context:e,className:t="",title:r,description:l,items:i,image:o,version:c,socialMedia:m})=>n("section",{className:`border border-solid box-border p-[30px] w-[524px] ${t}`,role:"listitem",children:a(le,{context:e,className:"flex justify-between",title:r?n(s,{headingType:"h4",as:"h3",className:"font-normal mb-3.5",title:r}):null,image:o?.src&&n(x,{className:"mt-auto ml-7",image:o}),children:[l?n(Q,{className:"text-left",description:l}):null,i?.length?n(re,{className:"text-md text-left font-light flex flex-col flex-1 gap-2",items:i,version:c}):null,n(Xn,{className:"pt-[42px] pb-0",media:m,version:c,context:e})]})}))),Ya="absolute top-0 bottom-0 w-[84px]",er=r((({context:e,recommendations:t=[],className:r="",title:l,version:i,anchor:o=null})=>{const[c,m]=e.useState(0),d="secondary"===i?"border-white/50":"border-main-stroke";return a("section",{className:`relative font-sans p-9 overflow-hidden text-center ${"secondary"===i?"bg-primary-main text-white":"bg-white text-primary-text"} ${r}`,id:o,children:[l?n(s,{headingType:"h2",className:"mb-6",title:l}):null,n("div",{className:"flex duration-1000 gap-3.5",style:{transform:`translateX(-${525*c}px)`},role:"list",children:t?.length?t.map(tr({context:e,version:i,className:d})):null}),nr({cardsCount:t.length,activeCardIndex:c,setActiveCardIndex:m}),n("div",{className:`${Ya} left-0 ${"secondary"===i?"bg-opacity-from-main":"bg-opacity-from-white"}`}),n("div",{className:`${Ya} right-0 ${"secondary"===i?"bg-opacity-to-main":"bg-opacity-to-white"}`})]})})),tr=({context:e,version:t,className:a})=>(r,l)=>n(Qa,{context:e,...r,version:t,className:a},String(l)),nr=({cardsCount:e,activeCardIndex:t,setActiveCardIndex:r})=>{const l=e>2,i=l&&e-t>2;return a("div",{children:[l&&t>0&&n(Me,{className:"absolute top-1/2 left-8 z-10 mt-6",onClick:()=>r(t-1),ariaLabel:"Пролистать влево"}),i&&n(Me,{className:"absolute top-1/2 right-8 z-10 mt-6 rotate-180",onClick:()=>r(t+1),ariaLabel:"Пролистать вправо"})]})},ar=r((({className:e="",title:t,showLines:r=!0,steps:l=[],button:i,anchor:o=null})=>{const c=l.length>3;return a("section",{className:["box-border font-sans text-primary-text bg-white",c?"px-20":"px-[70px]","py-[50px] flex flex-col items-center",e].join(" "),id:o,children:[n(s,{headingType:"h2",className:"max-w-[47rem] text-center",title:t}),l?.length?a("div",{className:"box-border "+(t?"mt-9":""),children:[n("div",{className:"flex items-center px-[88px]",children:E(n("div",{className:"h-0.5 w-full bg-secondary-light "+(r?"":"opacity-0")}))(l.map(rr))}),n("div",{className:"flex justify-between "+(c?"gap-x-3":"gap-x-[101px]"),children:l.map(((e,t)=>lr(e,t,Boolean(i?.text))))})]}):null,i?.text?n(q,{className:"box-border mt-8 py-3 h-12 w-full max-w-[240px]",version:"primary",href:"#",children:i.text}):null]})})),rr=(e,t)=>n("div",{className:"flex flex-col items-center text-center relative",children:n("div",{className:"h-[100px] w-[100px] min-w-[100px] min-h-[100px] bg-secondary-light rounded-full p-[26px] box-border z-10",children:e.icon?.icon&&n(x,{image:e.icon,width:"48",height:"48"})||n("span",{className:"font-normal text-title-sm text-secondary-text",children:t+1})})},String(t)),lr=(e,t,r)=>a("div",{className:"flex flex-col items-center justify-between text-center relative w-[276px] whitespace-pre-line overflow-hidden",children:[a("div",{children:[e.label&&n("div",{className:"font-normal text-xl m-0 mt-4",children:e.label}),e.description&&n("div",{className:"font-light text-base text-secondary-text "+(e.label?"mt-2":"mt-4"),children:e.description})]}),e?.button?.text&&!r?n(q,{className:"box-border mt-8 py-3 h-12 w-full max-w-[240px]",version:"primary",href:"#",children:e.button.text}):null]},String(t)),ir=e=>e?.alt||e?.title||c[e?.icon?e.icon:""],sr=r((({cell:e,isLastRow:t})=>n("div",{className:"first:pl-0 pl-10 w-80 flex-grow flex flex-col border-solid border-main-divider border border-t-0 border-x-0 "+(t?"border-t-0 rounded-b-md":""),role:"cell",children:n("div",{children:e.map(or)})}))),or=({label:e,description:t,list:r,image:l,buttons:i},s)=>a("div",{className:"first:pt-5 last:pb-5",children:[s>0&&n("div",{className:"border-main-divider border border-solid border-t-0 border-x-0 my-4"}),e?n("div",{className:"text-xl font-medium m-0",children:e}):null,t?n("div",{className:"text-sm text-secondary-text",children:t}):null,r?.items?.length?cr(r):null,l?n(x,{image:l}):null,i?.length?mr(i):null]},String(s)),cr=e=>n(re,{className:"flex flex-col justify-between items-start text-sm",version:"gray",items:e.items,isDotted:e.isDotted??!0}),mr=e=>n("div",{children:e.map((({icon:e,rounded:t,...a},r)=>n(q,{className:(r>0&&t?"ml-3":"")+" w-12 h-12",ariaLabel:ir(e),rounded:t,appendLeft:e?n(x,{image:e,width:"24px",height:"24px",asSVG:!0}):null,...a},String(r))))}),dr=r((({row:{header:e,data:t},activeCardIndex:r,isLastRow:l})=>a(Ye,{children:[n("div",{className:"text-sm py-5 w-[354px] flex-shrink-0 border-main-divider border border-t-0 border-x-0 "+(l?"":"border-solid"),children:a("div",{className:"flex items-center text-primary-text",children:[e?.icon?n(x,{className:"mr-[14px] max-w-6 max-h-6",image:e.icon,width:"24px",height:"24px",asSVG:!0}):null,e?.title]})}),t?.length?n(lt,{activeCardIndex:r,columnWidth:360,version:"tariff",children:t.map(((e,t)=>n(sr,{cell:e,isLastRow:l},String(t))))}):null]}))),hr=r((({className:e,context:t,title:r,description:l,rowHeaders:i,columns:o,anchor:c=null})=>{const[m,d]=t.useState(0),h=xr(o),x=ur(i,h),u=xt({columnsLength:h.length,colsLengthForScroll:2,activeCardIndex:m,setActiveCardIndex:d}),{isScrollAvailable:p}=u;return a("section",{className:`bg-white font-sans py-[50px] pl-[50px] overflow-hidden text-primary-text relative ${e||""}`,id:c,children:[r?n(s,{headingType:"h2",className:"text-center "+(l?"mb-2.5":"mb-9"),title:r}):null,l?n("div",{className:"mb-9 text-center text-m-base",children:l}):null,x?.length?a("div",{role:"table",children:[a("div",{className:"relative",children:[x.map(((e,t,{length:a})=>n(dr,{row:e,isLastRow:t+1===a,activeCardIndex:m},String(t)))),n(dt,{...u})]}),p?n("div",{className:"absolute top-0 right-0 bottom-0 w-[84px] bg-opacity-to-white"}):null]}):null]})})),xr=e=>e?.map((({data:e})=>e))||[],ur=(e,t)=>e?.map(((e,n)=>({header:e,data:t.map((e=>e?.[n]||[{}]))}))),pr=r((e=>{const{tabs:t,currentTag:a,onTabClick:r,className:l="",isShowCounter:i=!0}=e;return n("div",{className:`mb-2 box-border flex gap-x-1 h-12 ${l}`,role:"tablist",children:t?.map(br(r,i,a))})})),br=(e,t,r)=>(l,i)=>{const s=r===l.tag,o=s?"text-white":"text-secondary-text group-hover:text-primary-main",c="w-[22px] h-[22px] rounded-full text-m-sm \n "+(s?"bg-white/30 text-white":"bg-secondary-text/10 text-secondary-text");return n("div",{className:`flex h-full w-full flex-1 cursor-pointer mr-2 last:mr-0 box-content ${s?"bg-primary-main":"group bg-white"}`,role:"tab",onClick:()=>e(l.tag),"aria-selected":String(s),tag:l?.tag,children:a("div",{className:"flex flex-1 items-center justify-center",children:[l?.title?n("h3",{className:`mr-8 ${o}`,children:l?.title}):null,t?n("div",{className:`flex items-center justify-center ${c}`,children:n("span",{children:l.count})}):null]})},String(i))};function gr(e){return e?e.filter(Boolean).join(" "):""}const fr={ProductBlock:pe,ProductTile:Se},Nr=r((({groupBlocks:e,context:t})=>n("div",{className:"grid grid-cols-12 gap-2 box-border",children:e?.length?e.map(vr(t)):null}))),vr=e=>(t,a)=>{const r=t?.blockType;if(!r||!(r in fr))return null;const l=gr(t?.style);return n(fr[r],{context:e,...t,className:l},`block_${a}`)},yr=r((({className:e="",tabs:t,context:r,anchor:l=null,groupBlocks:i=[]})=>{const[s,o]=r.useState(t?.[0]?.tag),c=(m=i,(d=s)?m.filter((e=>e?.tags?.includes(d))):m);var m,d;const h=t?.map((e=>{const t=e.tag?i.filter((t=>t?.tags?.includes(`${e.tag}`))).length:i.length;return{...e,count:t}}));return a("section",{id:l,className:`box-border gap-1 h-12 ${e}`,children:[h?.length?n(pr,{currentTag:s,onTabClick:o,tabs:h}):null,i.length?n("div",{className:"list-none",children:n(Nr,{context:r,groupBlocks:c})}):null]})})),wr={Accordion:Je,BenefitsBlock:Xe,Bonus:Qe,ComparisonTable:pt,Calculator:Zt,CreditCalculator:cn,ExchangeRateTile:Tn,Footer:ea,Gallery:Ge,GracePeriod:ta,Header:Ma,Headline:N,LinkDocs:T,MiniGallery:Ee,MobileAppTile:Da,NavigatorTabs:Ba,PictureText:D,ProductBlock:pe,ProductGallery:qa,ProductTile:Se,PromoTile:Xa,OtherProducts:Ga,Recommendation:er,StepsBlock:ar,TariffsTable:hr,TextBlock:ge,Tile:ke,Navigation:Ra,Placeholder:Ea,GroupBlock:yr},Ir=r((({className:e,onClick:t,ariaLabel:a})=>n("button",{type:"button",className:`border-0 w-[36px] bg-inherit cursor-pointer ${e||""}`,onClick:t,"aria-label":a,children:kr()}))),kr=()=>{const e={stroke:"#292D32",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"};return a("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",children:[n("path",{...e,strokeMiterlimit:"10",d:"M21.48 11.95c.5-1.4-.4-2.6-1.9-2.6h-4c-.6 0-1.1-.5-1-1.2l.5-3.2c.2-.9-.4-1.9-1.3-2.2-.8-.3-1.8.1-2.2.7l-4.1 6.1M7.48 18.35l3.1 2.4c.4.4 1.3.6 1.9.6h3.8c1.2 0 2.5-.9 2.8-2.1l1.24-3.77"}),n("path",{...e,d:"M2.38 18.35v-9.8c0-1.4.6-1.9 2-1.9h1c1.4 0 2 .5 2 1.9v9.8c0 1.4-.6 1.9-2 1.9h-1c-1.4 0-2-.5-2-1.9Z"})]})},Cr=r((({className:e,context:t,anchor:r=null})=>{const l=t.useLikeService();return a("div",{className:`border-main border-2 border-solid bg-white flex w-[125px] items-center justify-center gap-3 p-2 font-sans ${e||""}`,id:r,children:[n(Ir,{onClick:l.like,ariaLabel:"Поставить отметку «лайк»"}),n(Ir,{onClick:l.dislike,className:"rotate-180",ariaLabel:"Поставить отметку «дизлайк»"}),n("span",{className:"select-none",children:l.likeCount})]})})),$r=!ya(),Sr=({blockClassName:e,block:t,render:n})=>n({blockClassName:e,block:t}),Tr=r((({className:e="",context:t,blocksRegistry:r,data:{style:l,blocks:i,slots:s={},likeControl:o,colorPalette:c="pc"},blockDecorator:m=Sr})=>{const{header:d}=s,h=t.useRouter();return $r&&globalThis.addEventListener("load",(()=>{const e=globalThis.document.querySelectorAll("section[id]");globalThis.document.addEventListener("scroll",(()=>((e,t)=>{t?.forEach((t=>{const n=globalThis.location?.hash;if(n===`#${t?.id}`)return;const a=t?.getBoundingClientRect();a&&a.top>0&&a.top<150&&e.replace(`#${t?.id}`)}))})(h,e)))})),a("section",{className:`relative ${gr(l)} ${e}`,"data-theme":c,children:[d?.blocks?.length?n("div",{className:`${gr(d?.style)}`,children:d.blocks.map(((e,n)=>Mr({block:e,blockDecorator:m,blocksRegistry:r,context:t},n)))}):null,i?.length?n("div",{className:"container grid grid-cols-12 gap-1",children:i.map(((e,n)=>Mr({block:e,blockDecorator:m,blocksRegistry:r,context:t},n)))}):null,o&&n("div",{className:"flex items-end absolute bottom-0 right-0 h-full pointer-events-none",children:n(Cr,{className:"rounded-tl-lg sticky bottom-0 pointer-events-auto",context:t},"LikeControl")})]})}));function Mr({block:e,blockDecorator:t,blocksRegistry:a,context:r},l){const{type:i}=e;i&&i in a||console.warn(`No block with "${i}" is registered`);const s=a[i||"Placeholder"]||Ea;return t({blockClassName:`scroll-mt-12 ${gr(e.style)}`,block:e,render:e=>{const{version:t,content:a,anchor:o}=e.block;return n(s,{className:e.blockClassName,version:t,context:r,anchor:o,...a},`${i}-${l}`)}},`block-${l}`)}e.Blocks=wr,e.ContentPage=Tr,e.DaDataAPI=function(e=""){return{getFetcherAddress:async function(){if(!("geolocation"in navigator))return null;try{const t=await(async()=>new Promise((e=>navigator.geolocation.getCurrentPosition((({coords:t})=>e(t))))))(),n=await fetch(`${e}/geolocate`,{method:"POST",mode:"cors",body:JSON.stringify({lat:t.latitude,lon:t.longitude,count:1})});return(await n.json())?.suggestions?.[0]?.data?.city}catch(e){return console.error(e),null}}}},e.LikeAPI=function(e,t=""){async function n(){try{const e=JSON.parse(globalThis.localStorage.getItem(l)||"");if(e?.token)return e}catch(e){}try{const e=await fetch(`${t}/assist/v1/public/auth`,{method:"POST",mode:"cors",headers:{"Content-Type":"application/json"},body:JSON.stringify({prefix:"guest"})}),{token:n,name:a}=await e.json();return globalThis.localStorage.setItem(l,JSON.stringify({token:n,name:a})),{token:n,name:a}}catch(e){return console.error(e),{}}}return{getLikeCount:async function(...a){if(!a.length)return[];const{token:r}=await n();try{const n=await fetch(`${t}/assist/v1/public/projects/${e}/nodes/likes`,{method:"POST",mode:"cors",headers:{"Content-Type":"application/json",Authorization:r},body:JSON.stringify({node_ids:a})}),{likes:l}=await n.json();return l||[]}catch(e){return console.error(e),[]}},like:async function(a){if(!a)return 0;const{token:r,name:l}=await n();try{const n=await fetch(`${t}/assist/v1/public/projects/${e}/nodes/like`,{method:"POST",mode:"cors",headers:{"Content-Type":"application/json",Authorization:r,UserID:l},body:JSON.stringify({node_id:a,user_name:l})}),{likes:i}=await n.json();return i||0}catch(e){return console.error(e),0}},dislike:async function(a){if(!a)return 0;const{token:r,name:l}=await n();try{const n=await fetch(`${t}/assist/v1/public/projects/${e}/nodes/unlike`,{method:"POST",mode:"cors",headers:{"Content-Type":"application/json",Authorization:r,UserID:l},body:JSON.stringify({node_id:a,user_name:l})}),{likes:i}=await n.json();return i||0}catch(e){return console.error(e),0}}}},e.joinList=E,e.projectSettings=m,e.setup=t,e.url=V,Object.defineProperty(e,"__esModule",{value:!0})}));
@@ -1 +1 @@
1
- <svg id="icon" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 12.83V15c0 5 2 7 7 7h6c5 0 7-2 7-7V9c0-5-2-7-7-7H9C4 2 2 4 2 9" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M8 19h8c2 0 3-1 3-3V8c0-2-1-3-3-3H8C6 5 5 6 5 8v8c0 2 1 3 3 3Z" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M5 9.5h2.48a2.5 2.5 0 0 1 0 5H5" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M19 9.99h-3M19 14h-3" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.2 12h.1" stroke="#000" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>
1
+ <svg id="icon" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 12.83V15c0 5 2 7 7 7h6c5 0 7-2 7-7V9c0-5-2-7-7-7H9C4 2 2 4 2 9" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M5 9.5h2.48a2.5 2.5 0 0 1 0 5H5" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M8 19h8c2 0 3-1 3-3V8c0-2-1-3-3-3H8C6 5 5 6 5 8v8c0 2 1 3 3 3Z" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M19 9.99h-3M19 14h-3" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.2 12h.1" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -3,6 +3,7 @@ export declare const Blocks: {
3
3
  BenefitsBlock: (props: import("@redneckz/uni-jsx").PropsWithChildren<import("./BenefitsBlock/BenefitsBlock").BenefitsBlockProps, any>, context?: any) => any;
4
4
  Bonus: (props: import("@redneckz/uni-jsx").PropsWithChildren<import("./Bonus/Bonus").BonusProps, any>, context?: any) => any;
5
5
  ComparisonTable: (props: import("@redneckz/uni-jsx").PropsWithChildren<import("./ComparisonTable/ComparisonTable").ComparisonTableProps, any>, context?: any) => any;
6
+ Calculator: (props: import("@redneckz/uni-jsx").PropsWithChildren<import("./Calculator/Calculator").CalculatorProps, any>, context?: any) => any;
6
7
  CreditCalculator: (props: import("@redneckz/uni-jsx").PropsWithChildren<import("./CreditCalculator/CreditCalculator").CreditCalculatorProps, any>, context?: any) => any;
7
8
  ExchangeRateTile: (props: import("@redneckz/uni-jsx").PropsWithChildren<import("./ExchangeRateTile/ExchangeRateTile").ExchangeRateTileProps, any>, context?: any) => any;
8
9
  Footer: (props: import("@redneckz/uni-jsx").PropsWithChildren<import("./Footer/Footer").FooterProps, any>, context?: any) => any;
@@ -17,7 +18,6 @@ export declare const Blocks: {
17
18
  PictureText: (props: import("@redneckz/uni-jsx").PropsWithChildren<import("./PictureText/PictureText").PictureTextProps, any>, context?: any) => any;
18
19
  ProductBlock: (props: import("@redneckz/uni-jsx").PropsWithChildren<import("./ProductBlock/ProductBlock").ProductBlockProps, any>, context?: any) => any;
19
20
  ProductGallery: (props: import("@redneckz/uni-jsx").PropsWithChildren<import("./ProductGallery/ProductGallery").ProductGalleryProps, any>, context?: any) => any;
20
- ProductGalleryGreen: (props: import("@redneckz/uni-jsx").PropsWithChildren<import("./ProductGalleryGreen/ProductGalleryGreen").ProductGalleryProps, any>, context?: any) => any;
21
21
  ProductTile: (props: import("@redneckz/uni-jsx").PropsWithChildren<import("./ProductTile/ProductTile").ProductTileProps, any>, context?: any) => any;
22
22
  PromoTile: (props: import("@redneckz/uni-jsx").PropsWithChildren<import("./PromoTile/PromoTile").PromoTileProps, any>, context?: any) => any;
23
23
  OtherProducts: (props: import("@redneckz/uni-jsx").PropsWithChildren<import("./OtherProducts/OtherProducts").OtherProductsProps, any>, context?: any) => any;
@@ -4,6 +4,7 @@ const Accordion_1 = require("./Accordion/Accordion");
4
4
  const BenefitsBlock_1 = require("./BenefitsBlock/BenefitsBlock");
5
5
  const Bonus_1 = require("./Bonus/Bonus");
6
6
  const ComparisonTable_1 = require("./ComparisonTable/ComparisonTable");
7
+ const Calculator_1 = require("./Calculator/Calculator");
7
8
  const CreditCalculator_1 = require("./CreditCalculator/CreditCalculator");
8
9
  const ExchangeRateTile_1 = require("./ExchangeRateTile/ExchangeRateTile");
9
10
  const Footer_1 = require("./Footer/Footer");
@@ -21,7 +22,6 @@ const PictureText_1 = require("./PictureText/PictureText");
21
22
  const Placeholder_1 = require("./Placeholder/Placeholder");
22
23
  const ProductBlock_1 = require("./ProductBlock/ProductBlock");
23
24
  const ProductGallery_1 = require("./ProductGallery/ProductGallery");
24
- const ProductGalleryGreen_1 = require("./ProductGalleryGreen/ProductGalleryGreen");
25
25
  const ProductTile_1 = require("./ProductTile/ProductTile");
26
26
  const PromoTile_1 = require("./PromoTile/PromoTile");
27
27
  const Recommendation_1 = require("./Recommendation/Recommendation");
@@ -35,6 +35,7 @@ exports.Blocks = {
35
35
  BenefitsBlock: BenefitsBlock_1.BenefitsBlock,
36
36
  Bonus: Bonus_1.Bonus,
37
37
  ComparisonTable: ComparisonTable_1.ComparisonTable,
38
+ Calculator: Calculator_1.Calculator,
38
39
  CreditCalculator: CreditCalculator_1.CreditCalculator,
39
40
  ExchangeRateTile: ExchangeRateTile_1.ExchangeRateTile,
40
41
  Footer: Footer_1.Footer,
@@ -49,7 +50,6 @@ exports.Blocks = {
49
50
  PictureText: PictureText_1.PictureText,
50
51
  ProductBlock: ProductBlock_1.ProductBlock,
51
52
  ProductGallery: ProductGallery_1.ProductGallery,
52
- ProductGalleryGreen: ProductGalleryGreen_1.ProductGalleryGreen,
53
53
  ProductTile: ProductTile_1.ProductTile,
54
54
  PromoTile: PromoTile_1.PromoTile,
55
55
  OtherProducts: OtherProducts_1.OtherProducts,
@@ -1 +1 @@
1
- {"version":3,"file":"Blocks.js","sourceRoot":"","sources":["../../src/components/Blocks.ts"],"names":[],"mappings":";;AAAA,qDAAkD;AAClD,iEAA8D;AAC9D,yCAAsC;AACtC,uEAAoE;AACpE,0EAAuE;AACvE,0EAAuE;AACvE,4CAAyC;AACzC,+CAA4C;AAC5C,2DAAwD;AACxD,4CAAyC;AACzC,kDAA+C;AAC/C,kDAA+C;AAC/C,2DAAwD;AACxD,iEAA8D;AAC9D,wDAAqD;AACrD,iEAA8D;AAC9D,iEAA8D;AAC9D,2DAAwD;AACxD,2DAAwD;AACxD,8DAA2D;AAC3D,oEAAiE;AACjE,mFAAgF;AAChF,2DAAwD;AACxD,qDAAkD;AAClD,oEAAiE;AACjE,wDAAqD;AACrD,8DAA2D;AAC3D,qDAAkD;AAClD,sCAAmC;AACnC,wDAAqD;AAExC,QAAA,MAAM,GAAG;IACpB,SAAS,EAAT,qBAAS;IACT,aAAa,EAAb,6BAAa;IACb,KAAK,EAAL,aAAK;IACL,eAAe,EAAf,iCAAe;IACf,gBAAgB,EAAhB,mCAAgB;IAChB,gBAAgB,EAAhB,mCAAgB;IAChB,MAAM,EAAN,eAAM;IACN,OAAO,EAAP,iBAAO;IACP,WAAW,EAAX,yBAAW;IACX,MAAM,EAAN,eAAM;IACN,QAAQ,EAAR,mBAAQ;IACR,QAAQ,EAAR,mBAAQ;IACR,WAAW,EAAX,yBAAW;IACX,aAAa,EAAb,6BAAa;IACb,aAAa,EAAb,6BAAa;IACb,WAAW,EAAX,yBAAW;IACX,YAAY,EAAZ,2BAAY;IACZ,cAAc,EAAd,+BAAc;IACd,mBAAmB,EAAnB,yCAAmB;IACnB,WAAW,EAAX,yBAAW;IACX,SAAS,EAAT,qBAAS;IACT,aAAa,EAAb,6BAAa;IACb,cAAc,EAAd,+BAAc;IACd,UAAU,EAAV,uBAAU;IACV,YAAY,EAAZ,2BAAY;IACZ,SAAS,EAAT,qBAAS;IACT,IAAI,EAAJ,WAAI;IACJ,UAAU,EAAV,uBAAU;IACV,WAAW,EAAX,yBAAW;IACX,UAAU,EAAV,uBAAU;CACX,CAAC"}
1
+ {"version":3,"file":"Blocks.js","sourceRoot":"","sources":["../../src/components/Blocks.ts"],"names":[],"mappings":";;AAAA,qDAAkD;AAClD,iEAA8D;AAC9D,yCAAsC;AACtC,uEAAoE;AACpE,wDAAqD;AACrD,0EAAuE;AACvE,0EAAuE;AACvE,4CAAyC;AACzC,+CAA4C;AAC5C,2DAAwD;AACxD,4CAAyC;AACzC,kDAA+C;AAC/C,kDAA+C;AAC/C,2DAAwD;AACxD,iEAA8D;AAC9D,wDAAqD;AACrD,iEAA8D;AAC9D,iEAA8D;AAC9D,2DAAwD;AACxD,2DAAwD;AACxD,8DAA2D;AAC3D,oEAAiE;AACjE,2DAAwD;AACxD,qDAAkD;AAClD,oEAAiE;AACjE,wDAAqD;AACrD,8DAA2D;AAC3D,qDAAkD;AAClD,sCAAmC;AACnC,wDAAqD;AAExC,QAAA,MAAM,GAAG;IACpB,SAAS,EAAT,qBAAS;IACT,aAAa,EAAb,6BAAa;IACb,KAAK,EAAL,aAAK;IACL,eAAe,EAAf,iCAAe;IACf,UAAU,EAAV,uBAAU;IACV,gBAAgB,EAAhB,mCAAgB;IAChB,gBAAgB,EAAhB,mCAAgB;IAChB,MAAM,EAAN,eAAM;IACN,OAAO,EAAP,iBAAO;IACP,WAAW,EAAX,yBAAW;IACX,MAAM,EAAN,eAAM;IACN,QAAQ,EAAR,mBAAQ;IACR,QAAQ,EAAR,mBAAQ;IACR,WAAW,EAAX,yBAAW;IACX,aAAa,EAAb,6BAAa;IACb,aAAa,EAAb,6BAAa;IACb,WAAW,EAAX,yBAAW;IACX,YAAY,EAAZ,2BAAY;IACZ,cAAc,EAAd,+BAAc;IACd,WAAW,EAAX,yBAAW;IACX,SAAS,EAAT,qBAAS;IACT,aAAa,EAAb,6BAAa;IACb,cAAc,EAAd,+BAAc;IACd,UAAU,EAAV,uBAAU;IACV,YAAY,EAAZ,2BAAY;IACZ,SAAS,EAAT,qBAAS;IACT,IAAI,EAAJ,WAAI;IACJ,UAAU,EAAV,uBAAU;IACV,WAAW,EAAX,yBAAW;IACX,UAAU,EAAV,uBAAU;CACX,CAAC"}
@@ -0,0 +1,5 @@
1
+ import type { UniBlockProps } from '../../types';
2
+ import { BonusCalculatorParams, CommonCalculatorProps } from './CalculatorContent';
3
+ export interface BonusCalculatorProp extends BonusCalculatorParams, CommonCalculatorProps, UniBlockProps {
4
+ }
5
+ export declare const BonusCalculatorForm: (props: import("@redneckz/uni-jsx").PropsWithChildren<BonusCalculatorProp, any>, context?: any) => any;