@redneckz/wildless-cms-uni-blocks 0.5.11 → 0.5.13

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 (1888) hide show
  1. package/bundle/EventBus/EventBus.d.ts +10 -0
  2. package/bundle/EventBus/EventMap.d.ts +7 -0
  3. package/bundle/ProjectSettings.d.ts +24 -0
  4. package/bundle/api/DaDataAPI.d.ts +15 -0
  5. package/bundle/api/LikeAPI.d.ts +9 -0
  6. package/bundle/blocks.schema.json +1 -1
  7. package/bundle/bundle.umd.js +457 -596
  8. package/bundle/bundle.umd.min.js +1 -1
  9. package/bundle/components/Accordion/Accordion.d.ts +5 -0
  10. package/bundle/components/Accordion/Accordion.mobile.d.ts +5 -0
  11. package/bundle/components/Accordion/AccordionContent.d.ts +45 -0
  12. package/bundle/components/Accordion/AccordionItem.d.ts +2 -0
  13. package/bundle/components/Accordion/AccordionItem.mobile.d.ts +2 -0
  14. package/bundle/components/Accordion/AccordionItemProps.d.ts +5 -0
  15. package/bundle/components/Accordion/AccordionItemsList.d.ts +1 -0
  16. package/bundle/components/BaseTile/BaseTile.d.ts +5 -0
  17. package/bundle/components/BaseTile/BaseTileProps.d.ts +15 -0
  18. package/bundle/components/BaseTile/getTileHeadingType.d.ts +1 -0
  19. package/bundle/components/BaseTile/getTileMinHeight.d.ts +1 -0
  20. package/bundle/components/BaseTile/getTileRightPadding.d.ts +1 -0
  21. package/bundle/components/BenefitsBlock/BenefitsBlock.d.ts +5 -0
  22. package/bundle/components/BenefitsBlock/BenefitsBlockContent.d.ts +52 -0
  23. package/bundle/components/Blocks.d.ts +37 -0
  24. package/bundle/components/Blocks.mobile.d.ts +17 -0
  25. package/bundle/components/Bonus/Bonus.d.ts +5 -0
  26. package/bundle/components/Bonus/BonusContent.d.ts +45 -0
  27. package/bundle/components/BonusBenefitsBlock/BonusBenefitsBlock.d.ts +5 -0
  28. package/bundle/components/BonusBenefitsBlock/BonusBenefitsBlockContent.d.ts +15 -0
  29. package/bundle/components/BonusBenefitsBlock/getElementsColsValue.d.ts +1 -0
  30. package/bundle/components/Calculator/BonusCalculatorForm.d.ts +5 -0
  31. package/bundle/components/Calculator/Calculator.d.ts +5 -0
  32. package/bundle/components/Calculator/CalculatorContent.d.ts +129 -0
  33. package/bundle/components/Calculator/CalculatorValueBlock.d.ts +8 -0
  34. package/bundle/components/Calculator/CreditCalculatorForm.d.ts +7 -0
  35. package/bundle/components/Calculator/DepositCalculatorForm.d.ts +5 -0
  36. package/bundle/components/Calculator/EmbeddableCalcBlocks.d.ts +9 -0
  37. package/bundle/components/Calculator/Rate.d.ts +7 -0
  38. package/bundle/components/Calculator/constants.d.ts +16 -0
  39. package/bundle/components/Calculator/getBonus.d.ts +2 -0
  40. package/bundle/components/Calculator/getCreditRate.d.ts +7 -0
  41. package/bundle/components/Calculator/getDefaultMonths.d.ts +1 -0
  42. package/bundle/components/Calculator/getDefaultSum.d.ts +1 -0
  43. package/bundle/components/Calculator/getMonthlyPayment.d.ts +6 -0
  44. package/bundle/components/Calculator/renderButtonSection.d.ts +2 -0
  45. package/bundle/components/Calculator/renderCalculatorBlock.d.ts +3 -0
  46. package/bundle/components/Calculator/renderFootnote.d.ts +2 -0
  47. package/bundle/components/Calculator/renderInitialFeeInput.d.ts +6 -0
  48. package/bundle/components/Calculator/renderMonthsInput.d.ts +8 -0
  49. package/bundle/components/Calculator/renderPaymentTypeSelector.d.ts +6 -0
  50. package/bundle/components/Calculator/renderProposal.d.ts +2 -0
  51. package/bundle/components/Calculator/renderProposalMortgage.d.ts +8 -0
  52. package/bundle/components/Calculator/renderRealEstateValue.d.ts +6 -0
  53. package/bundle/components/Calculator/renderWantedSumInput.d.ts +11 -0
  54. package/bundle/components/Calculator/useBonusCalculatorParams.d.ts +36 -0
  55. package/bundle/components/Calculator/useCalculatorParams.d.ts +1 -0
  56. package/bundle/components/Calculator/useCreditCalculatorParams.d.ts +27 -0
  57. package/bundle/components/CardTransfer/CardTransfer.d.ts +5 -0
  58. package/bundle/components/CardTransfer/CardTransferContent.d.ts +10 -0
  59. package/bundle/components/Catalog/Catalog.d.ts +5 -0
  60. package/bundle/components/Catalog/CatalogCard.d.ts +7 -0
  61. package/bundle/components/Catalog/CatalogContent.d.ts +25 -0
  62. package/bundle/components/ComparisonTable/ComparisonTable.d.ts +5 -0
  63. package/bundle/components/ComparisonTable/ComparisonTable.mobile.d.ts +5 -0
  64. package/bundle/components/ComparisonTable/ComparisonTableBody.d.ts +12 -0
  65. package/bundle/components/ComparisonTable/ComparisonTableColumnHeaders.d.ts +10 -0
  66. package/bundle/components/ComparisonTable/ComparisonTableContent.d.ts +50 -0
  67. package/bundle/components/ComparisonTable/ComparisonTableRows.d.ts +13 -0
  68. package/bundle/components/ComparisonTable/HeaderCell.d.ts +10 -0
  69. package/bundle/components/ComparisonTable/HeaderCell.mobile.d.ts +11 -0
  70. package/bundle/components/ComparisonTable/TableCarouselContainer.d.ts +7 -0
  71. package/bundle/components/ComparisonTable/TableCell.d.ts +9 -0
  72. package/bundle/components/ComparisonTable/TableCell.mobile.d.ts +9 -0
  73. package/bundle/components/ComparisonTable/TableColumn.d.ts +15 -0
  74. package/bundle/components/ComparisonTable/TableRow.d.ts +14 -0
  75. package/bundle/components/ComparisonTable/TableRowContainer.d.ts +1 -0
  76. package/bundle/components/ComparisonTable/constants.d.ts +6 -0
  77. package/bundle/components/ContentPage/ContentPage.d.ts +10 -0
  78. package/bundle/components/ContentPage/ContentPageContext.d.ts +17 -0
  79. package/bundle/components/ContentPage/ContentPageHead.d.ts +7 -0
  80. package/bundle/components/ContentPage/computeAPIFallback.d.ts +5 -0
  81. package/bundle/components/ContentPage/filterBlocks.d.ts +12 -0
  82. package/bundle/components/ContentPage/filterBlocks.mobile.d.ts +12 -0
  83. package/bundle/components/ContentPage/normalizeBlock.d.ts +11 -0
  84. package/bundle/components/ContentPage/normalizeBlock.mobile.d.ts +2 -0
  85. package/bundle/components/ContentPage/normalizePage.d.ts +3 -0
  86. package/bundle/components/ContentPage/renderBlock.d.ts +13 -0
  87. package/bundle/components/ErrorBlock/ErrorBlock.d.ts +5 -0
  88. package/bundle/components/ErrorBlock/ErrorBlockContent.d.ts +48 -0
  89. package/bundle/components/ExchangeRateTile/CurrencyProps.d.ts +5 -0
  90. package/bundle/components/ExchangeRateTile/CurrencyTable.d.ts +7 -0
  91. package/bundle/components/ExchangeRateTile/CurrentLocation.d.ts +7 -0
  92. package/bundle/components/ExchangeRateTile/ExchangeCurrencyCalculator.d.ts +21 -0
  93. package/bundle/components/ExchangeRateTile/ExchangeRateTile.d.ts +5 -0
  94. package/bundle/components/ExchangeRateTile/ExchangeRateTileContent.d.ts +8 -0
  95. package/bundle/components/ExchangeRateTile/calculateResult.d.ts +2 -0
  96. package/bundle/components/ExchangeRateTile/callbackCurrencySelect.d.ts +8 -0
  97. package/bundle/components/ExchangeRateTile/formatCurrency.d.ts +1 -0
  98. package/bundle/components/ExchangeRateTile/renderInput.d.ts +13 -0
  99. package/bundle/components/Footer/Contacts.d.ts +7 -0
  100. package/bundle/components/Footer/Footer.d.ts +5 -0
  101. package/bundle/components/Footer/Footer.mobile.d.ts +5 -0
  102. package/bundle/components/Footer/FooterContent.d.ts +44 -0
  103. package/bundle/components/Footer/FooterLink.d.ts +5 -0
  104. package/bundle/components/Footer/HorizontalNavigation.d.ts +6 -0
  105. package/bundle/components/Footer/HorizontalNavigation.mobile.d.ts +6 -0
  106. package/bundle/components/Footer/HorizontalNavigationLink.d.ts +8 -0
  107. package/bundle/components/Footer/MediaButton.d.ts +7 -0
  108. package/bundle/components/Footer/Sitemap.d.ts +8 -0
  109. package/bundle/components/Footer/SocialMedia.d.ts +8 -0
  110. package/bundle/components/Footer/SocialMedia.mobile.d.ts +8 -0
  111. package/bundle/components/Footer/TextInformation.d.ts +2 -0
  112. package/bundle/components/Footer/TextInformation.mobile.d.ts +2 -0
  113. package/bundle/components/Footer/TextInformationLink.d.ts +8 -0
  114. package/bundle/components/Gallery/Gallery.d.ts +2 -0
  115. package/bundle/components/Gallery/Gallery.mobile.d.ts +2 -0
  116. package/bundle/components/Gallery/GalleryCardInner.d.ts +2 -0
  117. package/bundle/components/Gallery/GalleryContainer.d.ts +13 -0
  118. package/bundle/components/Gallery/GalleryContent.d.ts +64 -0
  119. package/bundle/components/Gallery/GalleryInner.d.ts +7 -0
  120. package/bundle/components/Gallery/GalleryProps.d.ts +4 -0
  121. package/bundle/components/Gallery/constants.d.ts +4 -0
  122. package/bundle/components/GracePeriod/GracePeriod.d.ts +5 -0
  123. package/bundle/components/GracePeriod/GracePeriodContent.d.ts +32 -0
  124. package/bundle/components/Header/DropdownMenu.d.ts +14 -0
  125. package/bundle/components/Header/Header.d.ts +5 -0
  126. package/bundle/components/Header/Header.fallback.d.ts +2 -0
  127. package/bundle/components/Header/Header.mobile.d.ts +5 -0
  128. package/bundle/components/Header/HeaderBurger.d.ts +11 -0
  129. package/bundle/components/Header/HeaderContent.d.ts +41 -0
  130. package/bundle/components/Header/HeaderSecondaryMenu.d.ts +10 -0
  131. package/bundle/components/Header/HeaderSecondaryMenuButton.d.ts +6 -0
  132. package/bundle/components/Header/HeaderSubMenu.d.ts +9 -0
  133. package/bundle/components/Header/HeaderTop.d.ts +6 -0
  134. package/bundle/components/Headline/Headline.d.ts +5 -0
  135. package/bundle/components/Headline/Headline.mobile.d.ts +5 -0
  136. package/bundle/components/Headline/HeadlineContent.d.ts +15 -0
  137. package/bundle/components/Headline/constants.d.ts +20 -0
  138. package/bundle/components/InsuranceAmountBlock/InsuranceAmountBlock.d.ts +5 -0
  139. package/bundle/components/InsuranceAmountBlock/InsuranceAmountBlockContent.d.ts +30 -0
  140. package/bundle/components/InsuranceAmountBlock/InsuranceAmountBlockInner.d.ts +7 -0
  141. package/bundle/components/InvestmentInfo/InvestmentInfo.d.ts +5 -0
  142. package/bundle/components/InvestmentInfo/InvestmentInfoContent.d.ts +49 -0
  143. package/bundle/components/LikeControl/LikeControl.d.ts +2 -0
  144. package/bundle/components/LinkDocs/LinkDocs.d.ts +5 -0
  145. package/bundle/components/LinkDocs/LinkDocs.mobile.d.ts +5 -0
  146. package/bundle/components/LinkDocs/LinkDocsContent.d.ts +43 -0
  147. package/bundle/components/LinkDocs/LinkDocsHorizontalList.d.ts +6 -0
  148. package/bundle/components/LinkDocs/LinkDocsList.d.ts +9 -0
  149. package/bundle/components/LinkDocs/LinkDocsListItem.d.ts +2 -0
  150. package/bundle/components/LinkDocs/LinkDocsListItem.mobile.d.ts +2 -0
  151. package/bundle/components/LinkDocs/LinkDocsListItemBase.d.ts +13 -0
  152. package/bundle/components/LinkDocs/LinkDocsVerticalList.d.ts +8 -0
  153. package/bundle/components/LinkDocs/linkDocsContentExample.d.ts +2 -0
  154. package/bundle/components/LinkList/LinkList.d.ts +5 -0
  155. package/bundle/components/LinkList/LinkListContent.d.ts +8 -0
  156. package/bundle/components/LinkList/linkListContentExample.d.ts +2 -0
  157. package/bundle/components/MiniGallery/MiniGallery.d.ts +5 -0
  158. package/bundle/components/MiniGallery/MiniGalleryContent.d.ts +12 -0
  159. package/bundle/components/MobileAppTile/MobileAppTile.d.ts +5 -0
  160. package/bundle/components/MobileAppTile/MobileAppTile.mobile.d.ts +5 -0
  161. package/bundle/components/MobileAppTile/MobileAppTileContent.d.ts +31 -0
  162. package/bundle/components/OfficeServicesBlock/OfficeServicesBlock.d.ts +5 -0
  163. package/bundle/components/OfficeServicesBlock/OfficeServicesBlockContent.d.ts +10 -0
  164. package/bundle/components/OtherProducts/OtherProducts.d.ts +5 -0
  165. package/bundle/components/OtherProducts/OtherProductsContent.d.ts +25 -0
  166. package/bundle/components/OtherProducts/OtherProductsItem.d.ts +6 -0
  167. package/bundle/components/PictureText/PictureText.d.ts +5 -0
  168. package/bundle/components/PictureText/PictureTextContent.d.ts +34 -0
  169. package/bundle/components/Placeholder/Placeholder.d.ts +6 -0
  170. package/bundle/components/Placeholder/PlaceholderContent.d.ts +5 -0
  171. package/bundle/components/ProductBlock/ProductBlock.d.ts +5 -0
  172. package/bundle/components/ProductBlock/ProductBlock.mobile.d.ts +5 -0
  173. package/bundle/components/ProductBlock/ProductBlockContent.d.ts +54 -0
  174. package/bundle/components/ProductBlock/ProductBlockInner.d.ts +4 -0
  175. package/bundle/components/ProductBlock/ProductBlockInner.mobile.d.ts +4 -0
  176. package/bundle/components/ProductBlock/renderBackwardButton.d.ts +4 -0
  177. package/bundle/components/ProductBlock/renderBenefit.d.ts +5 -0
  178. package/bundle/components/ProductGallery/ProductGallery.d.ts +5 -0
  179. package/bundle/components/ProductGallery/ProductGallery.mobile.d.ts +5 -0
  180. package/bundle/components/ProductGallery/ProductGalleryBlock.d.ts +8 -0
  181. package/bundle/components/ProductGallery/ProductGalleryContent.d.ts +29 -0
  182. package/bundle/components/ProductTile/ProductTile.d.ts +5 -0
  183. package/bundle/components/ProductTile/ProductTileContent.d.ts +33 -0
  184. package/bundle/components/PromoTile/PromoTile.d.ts +5 -0
  185. package/bundle/components/PromoTile/PromoTileContent.d.ts +12 -0
  186. package/bundle/components/Recommendation/Recommendation.d.ts +5 -0
  187. package/bundle/components/Recommendation/RecommendationCard.d.ts +7 -0
  188. package/bundle/components/Recommendation/RecommendationContent.d.ts +43 -0
  189. package/bundle/components/SafeDepositRental/RegionsAndBranches.d.ts +12 -0
  190. package/bundle/components/SafeDepositRental/RenderRadioButtons.d.ts +2 -0
  191. package/bundle/components/SafeDepositRental/RentalPeriod.d.ts +6 -0
  192. package/bundle/components/SafeDepositRental/SafeBoxCases.d.ts +11 -0
  193. package/bundle/components/SafeDepositRental/SafeDepositRental.d.ts +5 -0
  194. package/bundle/components/SafeDepositRental/SafeDepositRentalContent.d.ts +9 -0
  195. package/bundle/components/SafeDepositRental/SafeDepositRentalFields.d.ts +12 -0
  196. package/bundle/components/SafeDepositRental/SafeDepositRentalForm.d.ts +11 -0
  197. package/bundle/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +6 -0
  198. package/bundle/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +8 -0
  199. package/bundle/components/SafeDepositRental/WrapperSelect.d.ts +11 -0
  200. package/bundle/components/SafeDepositRental/YandexMap.d.ts +5 -0
  201. package/bundle/components/SafeDepositRental/renderClusterer.d.ts +2 -0
  202. package/bundle/components/SafeDepositRental/useGetRegions.d.ts +6 -0
  203. package/bundle/components/SafeDepositRental/useYandexMaps.d.ts +2 -0
  204. package/bundle/components/SafeDepositRental/utils.d.ts +3 -0
  205. package/bundle/components/StepsBlock/StepsBlock.d.ts +5 -0
  206. package/bundle/components/StepsBlock/StepsBlock.mobile.d.ts +5 -0
  207. package/bundle/components/StepsBlock/StepsBlockContent.d.ts +43 -0
  208. package/bundle/components/StepsBlock/StepsBlockStyleMaps.d.ts +11 -0
  209. package/bundle/components/StepsBlock/renderItems.d.ts +8 -0
  210. package/bundle/components/StepsBlock/renderStepContent.d.ts +14 -0
  211. package/bundle/components/Tabs/Tabs.d.ts +13 -0
  212. package/bundle/components/Tabs/TabsContent.d.ts +36 -0
  213. package/bundle/components/Tabs/renderGroupTab.d.ts +4 -0
  214. package/bundle/components/Tabs/renderLinkTab.d.ts +9 -0
  215. package/bundle/components/Tabs/renderTab.d.ts +12 -0
  216. package/bundle/components/Tabs/tabItemClasses.d.ts +6 -0
  217. package/bundle/components/TariffsTable/EmbeddableCellData.d.ts +14 -0
  218. package/bundle/components/TariffsTable/EmbeddableCellData.mobile.d.ts +12 -0
  219. package/bundle/components/TariffsTable/TableTileHeader.d.ts +2 -0
  220. package/bundle/components/TariffsTable/TariffsTable.d.ts +5 -0
  221. package/bundle/components/TariffsTable/TariffsTable.mobile.d.ts +5 -0
  222. package/bundle/components/TariffsTable/TariffsTableCell.d.ts +9 -0
  223. package/bundle/components/TariffsTable/TariffsTableContent.d.ts +95 -0
  224. package/bundle/components/TariffsTable/TariffsTableHorizontal.d.ts +6 -0
  225. package/bundle/components/TariffsTable/TariffsTableRow.d.ts +9 -0
  226. package/bundle/components/TariffsTable/TariffsTableRowContainer.d.ts +7 -0
  227. package/bundle/components/TariffsTable/TariffsTableTileCell.d.ts +8 -0
  228. package/bundle/components/TariffsTable/TariffsTableVertical.d.ts +6 -0
  229. package/bundle/components/TariffsTable/constants.d.ts +4 -0
  230. package/bundle/components/TariffsTable/dataFixture.d.ts +5 -0
  231. package/bundle/components/TariffsTable/utils/getButtonAriaLabel.d.ts +2 -0
  232. package/bundle/components/TextBlock/TextBlock.d.ts +5 -0
  233. package/bundle/components/TextBlock/TextBlock.mobile.d.ts +5 -0
  234. package/bundle/components/TextBlock/TextBlockContent.d.ts +22 -0
  235. package/bundle/components/Tile/Tile.d.ts +6 -0
  236. package/bundle/components/Tile/TileContent.d.ts +34 -0
  237. package/bundle/content-page-repository/ContentPageRepository.d.ts +11 -0
  238. package/bundle/content-page-repository/TransformationOptions.d.ts +4 -0
  239. package/bundle/content-page-repository/index.d.ts +2 -0
  240. package/bundle/content-page-repository/mapJSON.d.ts +1 -0
  241. package/bundle/content-page-repository/transformContentPage.d.ts +3 -0
  242. package/bundle/content-page-repository/transformImg.d.ts +11 -0
  243. package/bundle/content-page-repository/transformMarkdown.d.ts +1 -0
  244. package/bundle/content-page-repository/transformPicture.d.ts +3 -0
  245. package/bundle/content-page-repository/transformSrc.d.ts +3 -0
  246. package/bundle/hooks/useExchangeRates.d.ts +2 -0
  247. package/bundle/hooks/useExternalNS.d.ts +2 -0
  248. package/bundle/hooks/useGeolocation.d.ts +1 -0
  249. package/bundle/hooks/useLikeService.d.ts +5 -0
  250. package/bundle/hooks/useLink.d.ts +18 -0
  251. package/bundle/hooks/useOutsideClick.d.ts +5 -0
  252. package/{mobile/dist/hooks/useFetchSafeBoxes.d.ts → bundle/hooks/useSafeBoxes.d.ts} +1 -3
  253. package/bundle/hooks/useSearch.d.ts +4 -0
  254. package/bundle/hooks/useTableArrowScrollControl.d.ts +7 -0
  255. package/bundle/hooks/useTariffsInnerTableData.d.ts +1 -0
  256. package/bundle/icons/IconName.d.ts +194 -0
  257. package/bundle/index.d.ts +9 -0
  258. package/bundle/model/AlignType.d.ts +9 -0
  259. package/bundle/model/BgColorVersion.d.ts +8 -0
  260. package/bundle/model/BlockDecorator.d.ts +15 -0
  261. package/bundle/model/BlockVersion.d.ts +11 -0
  262. package/bundle/model/BlocksRegistry.d.ts +8 -0
  263. package/bundle/model/ButtonVersion.d.ts +6 -0
  264. package/bundle/model/ContentPageDef.d.ts +52 -0
  265. package/bundle/model/EmptyOptionType.d.ts +4 -0
  266. package/bundle/model/Fallback.d.ts +5 -0
  267. package/bundle/model/Footnote.d.ts +4 -0
  268. package/bundle/model/GalleryVersion.d.ts +1 -0
  269. package/bundle/model/HeadlineType.d.ts +29 -0
  270. package/bundle/model/IconVersion.d.ts +9 -0
  271. package/bundle/model/ImageSize.d.ts +6 -0
  272. package/bundle/model/InputTypes.d.ts +1 -0
  273. package/bundle/model/LinkProps.d.ts +24 -0
  274. package/bundle/model/ListOrientation.d.ts +8 -0
  275. package/bundle/model/Picture.d.ts +59 -0
  276. package/bundle/model/ProductColorVersion.d.ts +4 -0
  277. package/bundle/model/SitemapProps.d.ts +24 -0
  278. package/bundle/model/SizeVersion.d.ts +8 -0
  279. package/bundle/model/TableVersion.d.ts +1 -0
  280. package/bundle/model/VNode.d.ts +1 -0
  281. package/bundle/react/setup-fixture.d.ts +4 -0
  282. package/bundle/services/sitemap/SitemapProps.d.ts +24 -0
  283. package/bundle/services/sitemap/checkIsHrefSameOrigin.d.ts +4 -0
  284. package/bundle/services/sitemap/findActiveSubItem.d.ts +3 -0
  285. package/bundle/services/sitemap/isHrefActive.d.ts +4 -0
  286. package/bundle/services/sitemap/isSubItemActive.d.ts +3 -0
  287. package/bundle/services/sitemap/isTopItemActive.d.ts +3 -0
  288. package/bundle/services/sitemap/mergeTopItems.d.ts +2 -0
  289. package/bundle/services/sitemap/useSitemap.d.ts +3 -0
  290. package/bundle/ui-kit/BenefitItem/BenefitItem.d.ts +4 -0
  291. package/bundle/ui-kit/BenefitItem/BenefitItemProps.d.ts +20 -0
  292. package/bundle/ui-kit/BlockWrapper.d.ts +7 -0
  293. package/bundle/ui-kit/BlocksList/BlocksListProps.d.ts +96 -0
  294. package/bundle/ui-kit/BlocksList/EmbeddableBlocks.d.ts +12 -0
  295. package/bundle/ui-kit/BlocksList/EmbeddableBlocks.mobile.d.ts +8 -0
  296. package/bundle/ui-kit/BlocksList/renderBlocksList.d.ts +9 -0
  297. package/bundle/ui-kit/Breadcrumb.d.ts +6 -0
  298. package/bundle/ui-kit/Button/ArrowButton.d.ts +2 -0
  299. package/bundle/ui-kit/Button/Button.d.ts +2 -0
  300. package/bundle/ui-kit/Button/Button.mobile.d.ts +2 -0
  301. package/bundle/ui-kit/Button/ButtonInner.d.ts +7 -0
  302. package/bundle/ui-kit/Button/ButtonProps.d.ts +54 -0
  303. package/bundle/ui-kit/Button/ButtonSection.d.ts +5 -0
  304. package/bundle/ui-kit/Button/GetButtonClassParams.d.ts +6 -0
  305. package/bundle/ui-kit/Button/LikeButton.d.ts +6 -0
  306. package/bundle/ui-kit/Button/buttonClassNameConstants.d.ts +5 -0
  307. package/bundle/ui-kit/Button/getDisabledButtonClasses.d.ts +2 -0
  308. package/bundle/ui-kit/Button/getRegularButtonClasses.d.ts +2 -0
  309. package/bundle/ui-kit/Button/renderArrows.d.ts +9 -0
  310. package/bundle/ui-kit/Checkbox/Checkbox.d.ts +2 -0
  311. package/bundle/ui-kit/Checkbox/CheckboxProps.d.ts +7 -0
  312. package/bundle/ui-kit/CurrencyInput/CurrencyInput.d.ts +2 -0
  313. package/bundle/ui-kit/CurrencyInput/CurrencyInputProps.d.ts +5 -0
  314. package/bundle/ui-kit/CurrencyInput/adjustValue .d.ts +3 -0
  315. package/bundle/ui-kit/Description/Description.d.ts +5 -0
  316. package/bundle/ui-kit/Foldable/DefaultFoldButton.d.ts +14 -0
  317. package/bundle/ui-kit/Foldable/Foldable.d.ts +9 -0
  318. package/bundle/ui-kit/Foldable/FoldablePartProps.d.ts +4 -0
  319. package/bundle/ui-kit/Foldable/FoldableSection.d.ts +5 -0
  320. package/bundle/ui-kit/HeaderItem/HeaderItem.d.ts +2 -0
  321. package/bundle/ui-kit/HeaderItem/HeaderItem.mobile.d.ts +3 -0
  322. package/bundle/ui-kit/Heading/Heading.d.ts +2 -0
  323. package/bundle/ui-kit/Heading/Heading.mobile.d.ts +2 -0
  324. package/bundle/ui-kit/Heading/HeadingProps.d.ts +23 -0
  325. package/bundle/ui-kit/Icon/Icon.d.ts +2 -0
  326. package/bundle/ui-kit/Icon/IconProps.d.ts +21 -0
  327. package/bundle/ui-kit/Img/Img.d.ts +1 -0
  328. package/bundle/ui-kit/Img/Img.mobile.d.ts +2 -0
  329. package/bundle/ui-kit/Img/ImgAsPicture.d.ts +4 -0
  330. package/bundle/ui-kit/Img/ImgInner.d.ts +2 -0
  331. package/bundle/ui-kit/Img/ImgProps.d.ts +11 -0
  332. package/bundle/ui-kit/Img/getIconVersion.d.ts +1 -0
  333. package/bundle/ui-kit/InnerTable/InnerTable.d.ts +5 -0
  334. package/bundle/ui-kit/InnerTable/InnerTableBody.d.ts +7 -0
  335. package/bundle/ui-kit/InnerTable/InnerTableBodyItem.d.ts +6 -0
  336. package/bundle/ui-kit/InnerTable/InnerTableButton.d.ts +6 -0
  337. package/bundle/ui-kit/InnerTable/InnerTableHeader.d.ts +7 -0
  338. package/bundle/ui-kit/InnerTable/InnerTableProps.d.ts +24 -0
  339. package/bundle/ui-kit/Input/Input.d.ts +2 -0
  340. package/bundle/ui-kit/Input/InputProps.d.ts +16 -0
  341. package/bundle/ui-kit/InputRange/InputRange.d.ts +2 -0
  342. package/bundle/ui-kit/InputRange/InputRangeProps.d.ts +11 -0
  343. package/bundle/ui-kit/IntersectionObserverTag.d.ts +11 -0
  344. package/bundle/ui-kit/List/List.d.ts +2 -0
  345. package/bundle/ui-kit/List/ListContent.d.ts +4 -0
  346. package/bundle/ui-kit/List/ListItem.d.ts +12 -0
  347. package/bundle/ui-kit/List/ListProps.d.ts +26 -0
  348. package/bundle/ui-kit/Logo/Logo.d.ts +13 -0
  349. package/bundle/ui-kit/Logo/Logo.mobile.d.ts +8 -0
  350. package/bundle/ui-kit/Radio/Radio.d.ts +2 -0
  351. package/bundle/ui-kit/Radio/RadioProps.d.ts +9 -0
  352. package/bundle/ui-kit/RadioButtonGroup/RadioButtonGroup.d.ts +12 -0
  353. package/bundle/ui-kit/SVG.d.ts +19 -0
  354. package/bundle/ui-kit/SearchBar/SearchBar.d.ts +2 -0
  355. package/bundle/ui-kit/SearchBar/SearchBar.mobile.d.ts +2 -0
  356. package/bundle/ui-kit/SearchBar/SearchBarInner.d.ts +5 -0
  357. package/bundle/ui-kit/Select/Select.d.ts +14 -0
  358. package/bundle/ui-kit/SwipeListControl/SwipeListControl.d.ts +2 -0
  359. package/bundle/ui-kit/SwipeListControl/SwipeListControlDots.d.ts +6 -0
  360. package/bundle/ui-kit/SwipeListControl/SwipeListControlItem.d.ts +9 -0
  361. package/bundle/ui-kit/SwipeListControl/SwipeListControlList.d.ts +10 -0
  362. package/bundle/ui-kit/SwipeListControl/SwipeListControlProps.d.ts +18 -0
  363. package/bundle/ui-kit/SwipeListControl/constants.d.ts +2 -0
  364. package/bundle/ui-kit/SwipeListControl/utils/getContainerStyle.d.ts +1 -0
  365. package/bundle/ui-kit/SwipeListControl/utils/getIndexParts.d.ts +4 -0
  366. package/bundle/ui-kit/SwipeListControl/utils/getScrollPoints.d.ts +8 -0
  367. package/bundle/ui-kit/TableArrowScrollControl/TableArrowScrollControl.d.ts +2 -0
  368. package/bundle/ui-kit/TableArrowScrollControl/TableArrowScrollControlProps.d.ts +7 -0
  369. package/bundle/ui-kit/TopItem/TopItem.d.ts +14 -0
  370. package/bundle/utils/addSpacesBetweenNumbers.d.ts +1 -0
  371. package/bundle/utils/adjustHref.d.ts +4 -0
  372. package/bundle/utils/assertUnreachable.d.ts +1 -0
  373. package/bundle/utils/changeHashOnObserve.d.ts +9 -0
  374. package/bundle/utils/checkIsIconRenderable.d.ts +2 -0
  375. package/bundle/utils/clamp.d.ts +1 -0
  376. package/bundle/utils/fetchJSON.d.ts +2 -0
  377. package/bundle/utils/getColSpan.d.ts +1 -0
  378. package/bundle/utils/getCurrentDate.d.ts +1 -0
  379. package/bundle/utils/getGeolocation.d.ts +1 -0
  380. package/bundle/utils/getSanitizedValue.d.ts +1 -0
  381. package/bundle/utils/isPictureSizeEmpty.d.ts +2 -0
  382. package/bundle/utils/joinList.d.ts +1 -0
  383. package/bundle/utils/maxBy.d.ts +2 -0
  384. package/bundle/utils/roundTo.d.ts +1 -0
  385. package/bundle/utils/style2className.d.ts +1 -0
  386. package/bundle/utils/tableFunc.d.ts +2 -0
  387. package/bundle/utils/url.d.ts +5 -0
  388. package/bundle/utils/withoutMobilePath.d.ts +2 -0
  389. package/dist/components/Accordion/Accordion.js +3 -1
  390. package/dist/components/Accordion/Accordion.js.map +1 -1
  391. package/dist/components/Accordion/Accordion.mobile.js +5 -2
  392. package/dist/components/Accordion/Accordion.mobile.js.map +1 -1
  393. package/dist/components/Accordion/AccordionContent.d.ts +9 -7
  394. package/dist/components/Accordion/AccordionItem.d.ts +1 -4
  395. package/dist/components/Accordion/AccordionItem.js +5 -11
  396. package/dist/components/Accordion/AccordionItem.js.map +1 -1
  397. package/dist/components/Accordion/AccordionItem.mobile.d.ts +1 -4
  398. package/dist/components/Accordion/AccordionItem.mobile.js +7 -8
  399. package/dist/components/Accordion/AccordionItem.mobile.js.map +1 -1
  400. package/dist/components/Accordion/AccordionItemProps.d.ts +5 -0
  401. package/dist/components/Accordion/AccordionItemProps.js +2 -0
  402. package/dist/components/Accordion/AccordionItemProps.js.map +1 -0
  403. package/dist/components/Accordion/AccordionItemsList.d.ts +1 -0
  404. package/dist/components/Accordion/AccordionItemsList.js +6 -0
  405. package/dist/components/Accordion/AccordionItemsList.js.map +1 -0
  406. package/dist/components/BenefitsBlock/BenefitsBlock.js +1 -1
  407. package/dist/components/BenefitsBlock/BenefitsBlock.js.map +1 -1
  408. package/dist/components/Blocks.d.ts +1 -0
  409. package/dist/components/Blocks.js +2 -0
  410. package/dist/components/Blocks.js.map +1 -1
  411. package/dist/components/Blocks.mobile.d.ts +0 -1
  412. package/dist/components/Blocks.mobile.js +0 -2
  413. package/dist/components/Blocks.mobile.js.map +1 -1
  414. package/dist/components/Calculator/CalculatorContent.d.ts +1 -1
  415. package/dist/components/CardTransfer/CardTransfer.js +3 -2
  416. package/dist/components/CardTransfer/CardTransfer.js.map +1 -1
  417. package/dist/components/Catalog/Catalog.js +1 -1
  418. package/dist/components/Catalog/Catalog.js.map +1 -1
  419. package/dist/components/Catalog/CatalogCard.js +1 -23
  420. package/dist/components/Catalog/CatalogCard.js.map +1 -1
  421. package/dist/components/ComparisonTable/ComparisonTable.js +1 -1
  422. package/dist/components/ComparisonTable/ComparisonTable.js.map +1 -1
  423. package/dist/components/ComparisonTable/ComparisonTable.mobile.js +13 -48
  424. package/dist/components/ComparisonTable/ComparisonTable.mobile.js.map +1 -1
  425. package/dist/components/ComparisonTable/TableCell.d.ts +1 -1
  426. package/dist/components/ComparisonTable/TableCell.js.map +1 -1
  427. package/dist/components/ComparisonTable/TableColumn.d.ts +5 -8
  428. package/dist/components/ComparisonTable/TableColumn.js +2 -8
  429. package/dist/components/ComparisonTable/TableColumn.js.map +1 -1
  430. package/dist/components/ContentPage/ContentPageContext.d.ts +0 -11
  431. package/dist/components/ContentPage/filterBlocks.js +1 -2
  432. package/dist/components/ContentPage/filterBlocks.js.map +1 -1
  433. package/dist/components/ContentPage/filterBlocks.mobile.js +1 -3
  434. package/dist/components/ContentPage/filterBlocks.mobile.js.map +1 -1
  435. package/dist/components/ContentPage/renderBlock.js +1 -1
  436. package/dist/components/ContentPage/renderBlock.js.map +1 -1
  437. package/dist/components/ErrorBlock/ErrorBlock.js +1 -1
  438. package/dist/components/ErrorBlock/ErrorBlock.js.map +1 -1
  439. package/dist/components/ExchangeRateTile/renderInput.js +1 -1
  440. package/dist/components/ExchangeRateTile/renderInput.js.map +1 -1
  441. package/dist/components/Footer/Contacts.js +1 -1
  442. package/dist/components/Footer/Contacts.js.map +1 -1
  443. package/dist/components/Footer/Footer.mobile.js +8 -7
  444. package/dist/components/Footer/Footer.mobile.js.map +1 -1
  445. package/dist/components/Footer/FooterContent.d.ts +5 -9
  446. package/dist/components/Gallery/Gallery.mobile.js +7 -3
  447. package/dist/components/Gallery/Gallery.mobile.js.map +1 -1
  448. package/dist/components/Gallery/GalleryCardInner.js +14 -17
  449. package/dist/components/Gallery/GalleryCardInner.js.map +1 -1
  450. package/dist/components/Gallery/GalleryContainer.js +2 -2
  451. package/dist/components/Gallery/GalleryContainer.js.map +1 -1
  452. package/dist/components/Gallery/GalleryContent.d.ts +11 -3
  453. package/dist/components/Header/Header.mobile.js +5 -5
  454. package/dist/components/Header/Header.mobile.js.map +1 -1
  455. package/dist/components/Header/HeaderSubMenu.js +3 -2
  456. package/dist/components/Header/HeaderSubMenu.js.map +1 -1
  457. package/dist/components/Headline/constants.d.ts +2 -1
  458. package/dist/components/Headline/constants.js +10 -1
  459. package/dist/components/Headline/constants.js.map +1 -1
  460. package/dist/components/InvestmentInfo/InvestmentInfo.d.ts +5 -0
  461. package/dist/components/InvestmentInfo/InvestmentInfo.js +49 -0
  462. package/dist/components/InvestmentInfo/InvestmentInfo.js.map +1 -0
  463. package/dist/components/InvestmentInfo/InvestmentInfoContent.d.ts +49 -0
  464. package/dist/components/InvestmentInfo/InvestmentInfoContent.js +2 -0
  465. package/dist/components/InvestmentInfo/InvestmentInfoContent.js.map +1 -0
  466. package/dist/components/MiniGallery/MiniGalleryContent.d.ts +1 -0
  467. package/dist/components/MobileAppTile/MobileAppTile.js +1 -1
  468. package/dist/components/MobileAppTile/MobileAppTile.js.map +1 -1
  469. package/dist/components/OtherProducts/OtherProductsItem.js +5 -5
  470. package/dist/components/OtherProducts/OtherProductsItem.js.map +1 -1
  471. package/dist/components/ProductGallery/ProductGallery.js +2 -2
  472. package/dist/components/ProductGallery/ProductGallery.js.map +1 -1
  473. package/dist/components/ProductTile/ProductTile.js +1 -1
  474. package/dist/components/ProductTile/ProductTile.js.map +1 -1
  475. package/dist/components/Recommendation/RecommendationContent.d.ts +5 -0
  476. package/dist/components/SafeDepositRental/RegionsAndBranches.d.ts +1 -1
  477. package/dist/components/SafeDepositRental/SafeBoxCases.d.ts +1 -1
  478. package/dist/components/SafeDepositRental/SafeDepositRental.d.ts +1 -1
  479. package/dist/components/SafeDepositRental/SafeDepositRental.js +17 -3
  480. package/dist/components/SafeDepositRental/SafeDepositRental.js.map +1 -1
  481. package/dist/components/SafeDepositRental/SafeDepositRentalFields.d.ts +7 -4
  482. package/dist/components/SafeDepositRental/SafeDepositRentalFields.js +3 -5
  483. package/dist/components/SafeDepositRental/SafeDepositRentalFields.js.map +1 -1
  484. package/dist/components/SafeDepositRental/SafeDepositRentalForm.d.ts +7 -3
  485. package/dist/components/SafeDepositRental/SafeDepositRentalForm.js +7 -28
  486. package/dist/components/SafeDepositRental/SafeDepositRentalForm.js.map +1 -1
  487. package/dist/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +1 -1
  488. package/dist/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +0 -2
  489. package/dist/components/SafeDepositRental/utils.d.ts +1 -1
  490. package/dist/components/StepsBlock/StepsBlock.js +5 -6
  491. package/dist/components/StepsBlock/StepsBlock.js.map +1 -1
  492. package/dist/components/StepsBlock/StepsBlockContent.d.ts +9 -2
  493. package/dist/components/StepsBlock/StepsBlockStyleMaps.d.ts +1 -0
  494. package/dist/components/StepsBlock/StepsBlockStyleMaps.js +4 -2
  495. package/dist/components/StepsBlock/StepsBlockStyleMaps.js.map +1 -1
  496. package/dist/components/StepsBlock/renderItems.d.ts +8 -0
  497. package/dist/components/StepsBlock/renderItems.js +10 -0
  498. package/dist/components/StepsBlock/renderItems.js.map +1 -0
  499. package/dist/components/StepsBlock/renderStepContent.d.ts +14 -0
  500. package/dist/components/StepsBlock/renderStepContent.js +20 -0
  501. package/dist/components/StepsBlock/renderStepContent.js.map +1 -0
  502. package/dist/components/TariffsTable/EmbeddableCellData.js +4 -5
  503. package/dist/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  504. package/dist/components/TariffsTable/EmbeddableCellData.mobile.js +1 -2
  505. package/dist/components/TariffsTable/EmbeddableCellData.mobile.js.map +1 -1
  506. package/dist/components/TariffsTable/TariffsTable.js +11 -2
  507. package/dist/components/TariffsTable/TariffsTable.js.map +1 -1
  508. package/dist/components/TariffsTable/TariffsTableCell.js +1 -1
  509. package/dist/components/TariffsTable/TariffsTableCell.js.map +1 -1
  510. package/dist/components/TariffsTable/TariffsTableRow.js +1 -2
  511. package/dist/components/TariffsTable/TariffsTableRow.js.map +1 -1
  512. package/dist/components/TariffsTable/dataFixture.js +4 -2
  513. package/dist/components/TariffsTable/dataFixture.js.map +1 -1
  514. package/dist/components/TariffsTable/utils/getButtonAriaLabel.d.ts +1 -1
  515. package/dist/components/TariffsTable/utils/getButtonAriaLabel.js +1 -2
  516. package/dist/components/TariffsTable/utils/getButtonAriaLabel.js.map +1 -1
  517. package/dist/components/Tile/Tile.js +2 -3
  518. package/dist/components/Tile/Tile.js.map +1 -1
  519. package/dist/hooks/useOutsideClick.d.ts +5 -0
  520. package/dist/hooks/useOutsideClick.js +21 -0
  521. package/dist/hooks/useOutsideClick.js.map +1 -0
  522. package/dist/hooks/{useFetchSafeBoxes.d.ts → useSafeBoxes.d.ts} +1 -3
  523. package/{mobile/dist/hooks/useFetchSafeBoxes.js → dist/hooks/useSafeBoxes.js} +9 -10
  524. package/dist/hooks/useSafeBoxes.js.map +1 -0
  525. package/dist/icons/IconName.d.ts +1 -92
  526. package/dist/icons/IconName.js +4 -4
  527. package/dist/icons/IconName.js.map +1 -1
  528. package/dist/model/BlockDecorator.d.ts +1 -0
  529. package/dist/model/BlockDecorator.js +2 -1
  530. package/dist/model/BlockDecorator.js.map +1 -1
  531. package/dist/model/BlocksRegistry.d.ts +4 -1
  532. package/dist/model/HeadlineType.d.ts +8 -0
  533. package/dist/model/Picture.d.ts +1 -0
  534. package/dist/react/setup-fixture.js +0 -2
  535. package/dist/react/setup-fixture.js.map +1 -1
  536. package/dist/ui-kit/BenefitItem/BenefitItem.js +3 -1
  537. package/dist/ui-kit/BenefitItem/BenefitItem.js.map +1 -1
  538. package/dist/ui-kit/BlockWrapper.d.ts +0 -3
  539. package/dist/ui-kit/BlockWrapper.js +5 -5
  540. package/dist/ui-kit/BlockWrapper.js.map +1 -1
  541. package/dist/ui-kit/BlocksList/renderBlocksList.d.ts +1 -1
  542. package/dist/ui-kit/BlocksList/renderBlocksList.js +1 -1
  543. package/dist/ui-kit/BlocksList/renderBlocksList.js.map +1 -1
  544. package/dist/ui-kit/Button/Button.js +6 -10
  545. package/dist/ui-kit/Button/Button.js.map +1 -1
  546. package/dist/ui-kit/Button/Button.mobile.js +1 -1
  547. package/dist/ui-kit/Button/Button.mobile.js.map +1 -1
  548. package/dist/ui-kit/Button/ButtonInner.js +3 -2
  549. package/dist/ui-kit/Button/ButtonInner.js.map +1 -1
  550. package/dist/ui-kit/Button/ButtonProps.d.ts +1 -7
  551. package/dist/ui-kit/Button/ButtonSection.js +5 -10
  552. package/dist/ui-kit/Button/ButtonSection.js.map +1 -1
  553. package/dist/ui-kit/Button/buttonClassNameConstants.d.ts +1 -0
  554. package/dist/ui-kit/Button/buttonClassNameConstants.js +7 -1
  555. package/dist/ui-kit/Button/buttonClassNameConstants.js.map +1 -1
  556. package/dist/ui-kit/CurrencyInput/CurrencyInput.js +7 -1
  557. package/dist/ui-kit/CurrencyInput/CurrencyInput.js.map +1 -1
  558. package/dist/ui-kit/CurrencyInput/adjustValue .d.ts +2 -0
  559. package/dist/ui-kit/CurrencyInput/adjustValue .js +11 -2
  560. package/dist/ui-kit/CurrencyInput/adjustValue .js.map +1 -1
  561. package/dist/ui-kit/Foldable/DefaultFoldButton.d.ts +14 -0
  562. package/dist/ui-kit/Foldable/DefaultFoldButton.js +16 -0
  563. package/dist/ui-kit/Foldable/DefaultFoldButton.js.map +1 -0
  564. package/dist/ui-kit/Foldable/Foldable.d.ts +5 -18
  565. package/dist/ui-kit/Foldable/Foldable.js +9 -17
  566. package/dist/ui-kit/Foldable/Foldable.js.map +1 -1
  567. package/dist/ui-kit/Foldable/FoldablePartProps.d.ts +4 -0
  568. package/dist/ui-kit/Foldable/FoldablePartProps.js +2 -0
  569. package/dist/ui-kit/Foldable/FoldablePartProps.js.map +1 -0
  570. package/dist/ui-kit/Foldable/FoldableSection.d.ts +5 -0
  571. package/dist/ui-kit/Foldable/FoldableSection.js +17 -0
  572. package/dist/ui-kit/Foldable/FoldableSection.js.map +1 -0
  573. package/dist/ui-kit/Icon/Icon.js +4 -5
  574. package/dist/ui-kit/Icon/Icon.js.map +1 -1
  575. package/dist/ui-kit/Icon/IconProps.d.ts +0 -1
  576. package/dist/ui-kit/Img/Img.d.ts +1 -2
  577. package/dist/ui-kit/Img/Img.js +2 -6
  578. package/dist/ui-kit/Img/Img.js.map +1 -1
  579. package/dist/ui-kit/Img/Img.mobile.js +1 -3
  580. package/dist/ui-kit/Img/Img.mobile.js.map +1 -1
  581. package/dist/ui-kit/InnerTable/InnerTableBody.js +1 -1
  582. package/dist/ui-kit/InnerTable/InnerTableBody.js.map +1 -1
  583. package/dist/ui-kit/InnerTable/InnerTableBodyItem.js +6 -2
  584. package/dist/ui-kit/InnerTable/InnerTableBodyItem.js.map +1 -1
  585. package/dist/ui-kit/InnerTable/InnerTableButton.js +1 -1
  586. package/dist/ui-kit/InnerTable/InnerTableButton.js.map +1 -1
  587. package/dist/ui-kit/InnerTable/InnerTableHeader.js +1 -1
  588. package/dist/ui-kit/InnerTable/InnerTableHeader.js.map +1 -1
  589. package/dist/ui-kit/Input/Input.js +12 -3
  590. package/dist/ui-kit/Input/Input.js.map +1 -1
  591. package/dist/ui-kit/Input/InputProps.d.ts +2 -0
  592. package/dist/ui-kit/InputRange/InputRange.js +2 -2
  593. package/dist/ui-kit/InputRange/InputRange.js.map +1 -1
  594. package/dist/ui-kit/IntersectionObserverTag.d.ts +11 -0
  595. package/dist/ui-kit/IntersectionObserverTag.js +22 -0
  596. package/dist/ui-kit/IntersectionObserverTag.js.map +1 -0
  597. package/dist/ui-kit/List/List.js +13 -8
  598. package/dist/ui-kit/List/List.js.map +1 -1
  599. package/dist/ui-kit/List/ListItem.d.ts +2 -2
  600. package/dist/ui-kit/List/ListItem.js +8 -23
  601. package/dist/ui-kit/List/ListItem.js.map +1 -1
  602. package/dist/ui-kit/List/ListProps.d.ts +5 -3
  603. package/dist/ui-kit/Radio/Radio.js +1 -1
  604. package/dist/ui-kit/Radio/Radio.js.map +1 -1
  605. package/dist/ui-kit/Select/Select.js +4 -1
  606. package/dist/ui-kit/Select/Select.js.map +1 -1
  607. package/dist/utils/getSanitizedValue.d.ts +1 -0
  608. package/dist/utils/getSanitizedValue.js +5 -0
  609. package/dist/utils/getSanitizedValue.js.map +1 -0
  610. package/lib/common.css +1 -1
  611. package/lib/components/Accordion/Accordion.js +3 -1
  612. package/lib/components/Accordion/Accordion.js.map +1 -1
  613. package/lib/components/Accordion/Accordion.mobile.js +5 -2
  614. package/lib/components/Accordion/Accordion.mobile.js.map +1 -1
  615. package/lib/components/Accordion/AccordionContent.d.ts +9 -7
  616. package/lib/components/Accordion/AccordionItem.d.ts +1 -4
  617. package/lib/components/Accordion/AccordionItem.js +5 -11
  618. package/lib/components/Accordion/AccordionItem.js.map +1 -1
  619. package/lib/components/Accordion/AccordionItem.mobile.d.ts +1 -4
  620. package/lib/components/Accordion/AccordionItem.mobile.js +7 -8
  621. package/lib/components/Accordion/AccordionItem.mobile.js.map +1 -1
  622. package/lib/components/Accordion/AccordionItemProps.d.ts +5 -0
  623. package/lib/components/Accordion/AccordionItemProps.js +2 -0
  624. package/lib/components/Accordion/AccordionItemProps.js.map +1 -0
  625. package/lib/components/Accordion/AccordionItemsList.d.ts +1 -0
  626. package/lib/components/Accordion/AccordionItemsList.js +4 -0
  627. package/lib/components/Accordion/AccordionItemsList.js.map +1 -0
  628. package/lib/components/BenefitsBlock/BenefitsBlock.js +1 -1
  629. package/lib/components/BenefitsBlock/BenefitsBlock.js.map +1 -1
  630. package/lib/components/Blocks.d.ts +1 -0
  631. package/lib/components/Blocks.js +2 -0
  632. package/lib/components/Blocks.js.map +1 -1
  633. package/lib/components/Blocks.mobile.d.ts +0 -1
  634. package/lib/components/Blocks.mobile.js +0 -2
  635. package/lib/components/Blocks.mobile.js.map +1 -1
  636. package/lib/components/Calculator/CalculatorContent.d.ts +1 -1
  637. package/lib/components/CardTransfer/CardTransfer.js +3 -2
  638. package/lib/components/CardTransfer/CardTransfer.js.map +1 -1
  639. package/lib/components/Catalog/Catalog.js +1 -1
  640. package/lib/components/Catalog/Catalog.js.map +1 -1
  641. package/lib/components/Catalog/CatalogCard.js +1 -23
  642. package/lib/components/Catalog/CatalogCard.js.map +1 -1
  643. package/lib/components/ComparisonTable/ComparisonTable.js +1 -1
  644. package/lib/components/ComparisonTable/ComparisonTable.js.map +1 -1
  645. package/lib/components/ComparisonTable/ComparisonTable.mobile.js +14 -49
  646. package/lib/components/ComparisonTable/ComparisonTable.mobile.js.map +1 -1
  647. package/lib/components/ComparisonTable/TableCell.d.ts +1 -1
  648. package/lib/components/ComparisonTable/TableCell.js.map +1 -1
  649. package/lib/components/ComparisonTable/TableColumn.d.ts +5 -8
  650. package/lib/components/ComparisonTable/TableColumn.js +2 -8
  651. package/lib/components/ComparisonTable/TableColumn.js.map +1 -1
  652. package/lib/components/ContentPage/ContentPageContext.d.ts +0 -11
  653. package/lib/components/ContentPage/filterBlocks.js +1 -2
  654. package/lib/components/ContentPage/filterBlocks.js.map +1 -1
  655. package/lib/components/ContentPage/filterBlocks.mobile.js +1 -3
  656. package/lib/components/ContentPage/filterBlocks.mobile.js.map +1 -1
  657. package/lib/components/ContentPage/renderBlock.js +2 -2
  658. package/lib/components/ContentPage/renderBlock.js.map +1 -1
  659. package/lib/components/ErrorBlock/ErrorBlock.js +1 -1
  660. package/lib/components/ErrorBlock/ErrorBlock.js.map +1 -1
  661. package/lib/components/ExchangeRateTile/renderInput.js +1 -1
  662. package/lib/components/ExchangeRateTile/renderInput.js.map +1 -1
  663. package/lib/components/Footer/Contacts.js +1 -1
  664. package/lib/components/Footer/Contacts.js.map +1 -1
  665. package/lib/components/Footer/Footer.mobile.js +8 -7
  666. package/lib/components/Footer/Footer.mobile.js.map +1 -1
  667. package/lib/components/Footer/FooterContent.d.ts +5 -9
  668. package/lib/components/Gallery/Gallery.mobile.js +7 -3
  669. package/lib/components/Gallery/Gallery.mobile.js.map +1 -1
  670. package/lib/components/Gallery/GalleryCardInner.js +15 -18
  671. package/lib/components/Gallery/GalleryCardInner.js.map +1 -1
  672. package/lib/components/Gallery/GalleryContainer.js +2 -2
  673. package/lib/components/Gallery/GalleryContainer.js.map +1 -1
  674. package/lib/components/Gallery/GalleryContent.d.ts +11 -3
  675. package/lib/components/Header/Header.mobile.js +5 -5
  676. package/lib/components/Header/Header.mobile.js.map +1 -1
  677. package/lib/components/Header/HeaderSubMenu.js +2 -1
  678. package/lib/components/Header/HeaderSubMenu.js.map +1 -1
  679. package/lib/components/Headline/constants.d.ts +2 -1
  680. package/lib/components/Headline/constants.js +9 -0
  681. package/lib/components/Headline/constants.js.map +1 -1
  682. package/lib/components/InvestmentInfo/InvestmentInfo.d.ts +5 -0
  683. package/lib/components/InvestmentInfo/InvestmentInfo.fixture.d.ts +7 -0
  684. package/lib/components/InvestmentInfo/InvestmentInfo.js +47 -0
  685. package/lib/components/InvestmentInfo/InvestmentInfo.js.map +1 -0
  686. package/lib/components/InvestmentInfo/InvestmentInfoContent.d.ts +49 -0
  687. package/lib/components/InvestmentInfo/InvestmentInfoContent.js +2 -0
  688. package/lib/components/InvestmentInfo/InvestmentInfoContent.js.map +1 -0
  689. package/lib/components/MiniGallery/MiniGallery.fixture.d.ts +1 -0
  690. package/lib/components/MiniGallery/MiniGalleryContent.d.ts +1 -0
  691. package/lib/components/MobileAppTile/MobileAppTile.js +1 -1
  692. package/lib/components/MobileAppTile/MobileAppTile.js.map +1 -1
  693. package/lib/components/OtherProducts/OtherProductsItem.js +5 -5
  694. package/lib/components/OtherProducts/OtherProductsItem.js.map +1 -1
  695. package/lib/components/ProductGallery/ProductGallery.js +2 -2
  696. package/lib/components/ProductGallery/ProductGallery.js.map +1 -1
  697. package/lib/components/ProductTile/ProductTile.js +1 -1
  698. package/lib/components/ProductTile/ProductTile.js.map +1 -1
  699. package/lib/components/Recommendation/RecommendationContent.d.ts +5 -0
  700. package/lib/components/SafeDepositRental/RegionsAndBranches.d.ts +1 -1
  701. package/lib/components/SafeDepositRental/SafeBoxCases.d.ts +1 -1
  702. package/lib/components/SafeDepositRental/SafeDepositRental.d.ts +1 -1
  703. package/lib/components/SafeDepositRental/SafeDepositRental.js +18 -4
  704. package/lib/components/SafeDepositRental/SafeDepositRental.js.map +1 -1
  705. package/lib/components/SafeDepositRental/SafeDepositRentalFields.d.ts +7 -4
  706. package/lib/components/SafeDepositRental/SafeDepositRentalFields.js +3 -5
  707. package/lib/components/SafeDepositRental/SafeDepositRentalFields.js.map +1 -1
  708. package/lib/components/SafeDepositRental/SafeDepositRentalForm.d.ts +7 -3
  709. package/lib/components/SafeDepositRental/SafeDepositRentalForm.js +9 -30
  710. package/lib/components/SafeDepositRental/SafeDepositRentalForm.js.map +1 -1
  711. package/lib/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +1 -1
  712. package/lib/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +0 -2
  713. package/lib/components/SafeDepositRental/utils.d.ts +1 -1
  714. package/lib/components/StepsBlock/StepsBlock.fixture.d.ts +2 -0
  715. package/lib/components/StepsBlock/StepsBlock.js +5 -6
  716. package/lib/components/StepsBlock/StepsBlock.js.map +1 -1
  717. package/lib/components/StepsBlock/StepsBlockContent.d.ts +9 -2
  718. package/lib/components/StepsBlock/StepsBlockStyleMaps.d.ts +1 -0
  719. package/lib/components/StepsBlock/StepsBlockStyleMaps.js +4 -2
  720. package/lib/components/StepsBlock/StepsBlockStyleMaps.js.map +1 -1
  721. package/lib/components/StepsBlock/renderItems.d.ts +8 -0
  722. package/lib/components/StepsBlock/renderItems.js +7 -0
  723. package/lib/components/StepsBlock/renderItems.js.map +1 -0
  724. package/lib/components/StepsBlock/renderStepContent.d.ts +14 -0
  725. package/lib/components/StepsBlock/renderStepContent.js +17 -0
  726. package/lib/components/StepsBlock/renderStepContent.js.map +1 -0
  727. package/lib/components/TariffsTable/EmbeddableCellData.js +4 -5
  728. package/lib/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  729. package/lib/components/TariffsTable/EmbeddableCellData.mobile.js +1 -2
  730. package/lib/components/TariffsTable/EmbeddableCellData.mobile.js.map +1 -1
  731. package/lib/components/TariffsTable/TariffsTable.js +11 -2
  732. package/lib/components/TariffsTable/TariffsTable.js.map +1 -1
  733. package/lib/components/TariffsTable/TariffsTableCell.js +1 -1
  734. package/lib/components/TariffsTable/TariffsTableCell.js.map +1 -1
  735. package/lib/components/TariffsTable/TariffsTableRow.js +1 -2
  736. package/lib/components/TariffsTable/TariffsTableRow.js.map +1 -1
  737. package/lib/components/TariffsTable/dataFixture.js +4 -2
  738. package/lib/components/TariffsTable/dataFixture.js.map +1 -1
  739. package/lib/components/TariffsTable/utils/getButtonAriaLabel.d.ts +1 -1
  740. package/lib/components/TariffsTable/utils/getButtonAriaLabel.js +1 -2
  741. package/lib/components/TariffsTable/utils/getButtonAriaLabel.js.map +1 -1
  742. package/lib/components/Tile/Tile.js +2 -3
  743. package/lib/components/Tile/Tile.js.map +1 -1
  744. package/lib/hooks/useOutsideClick.d.ts +5 -0
  745. package/lib/hooks/useOutsideClick.js +18 -0
  746. package/lib/hooks/useOutsideClick.js.map +1 -0
  747. package/lib/hooks/{useFetchSafeBoxes.d.ts → useSafeBoxes.d.ts} +1 -3
  748. package/lib/hooks/{useFetchSafeBoxes.js → useSafeBoxes.js} +7 -8
  749. package/lib/hooks/useSafeBoxes.js.map +1 -0
  750. package/lib/icons/IconName.d.ts +1 -92
  751. package/lib/icons/IconName.js +3 -3
  752. package/lib/icons/IconName.js.map +1 -1
  753. package/lib/model/BlockDecorator.d.ts +1 -0
  754. package/lib/model/BlockDecorator.js +1 -0
  755. package/lib/model/BlockDecorator.js.map +1 -1
  756. package/lib/model/BlocksRegistry.d.ts +4 -1
  757. package/lib/model/HeadlineType.d.ts +8 -0
  758. package/lib/model/Picture.d.ts +1 -0
  759. package/lib/react/setup-fixture.js +0 -2
  760. package/lib/react/setup-fixture.js.map +1 -1
  761. package/lib/ui-kit/BenefitItem/BenefitItem.js +3 -1
  762. package/lib/ui-kit/BenefitItem/BenefitItem.js.map +1 -1
  763. package/lib/ui-kit/BlockWrapper.d.ts +0 -3
  764. package/lib/ui-kit/BlockWrapper.js +4 -4
  765. package/lib/ui-kit/BlockWrapper.js.map +1 -1
  766. package/lib/ui-kit/BlocksList/renderBlocksList.d.ts +1 -1
  767. package/lib/ui-kit/BlocksList/renderBlocksList.js +1 -1
  768. package/lib/ui-kit/BlocksList/renderBlocksList.js.map +1 -1
  769. package/lib/ui-kit/Button/Button.js +6 -10
  770. package/lib/ui-kit/Button/Button.js.map +1 -1
  771. package/lib/ui-kit/Button/Button.mobile.js +1 -1
  772. package/lib/ui-kit/Button/Button.mobile.js.map +1 -1
  773. package/lib/ui-kit/Button/ButtonInner.js +3 -2
  774. package/lib/ui-kit/Button/ButtonInner.js.map +1 -1
  775. package/lib/ui-kit/Button/ButtonProps.d.ts +1 -7
  776. package/lib/ui-kit/Button/ButtonSection.js +5 -10
  777. package/lib/ui-kit/Button/ButtonSection.js.map +1 -1
  778. package/lib/ui-kit/Button/buttonClassNameConstants.d.ts +1 -0
  779. package/lib/ui-kit/Button/buttonClassNameConstants.js +6 -0
  780. package/lib/ui-kit/Button/buttonClassNameConstants.js.map +1 -1
  781. package/lib/ui-kit/CurrencyInput/CurrencyInput.js +8 -2
  782. package/lib/ui-kit/CurrencyInput/CurrencyInput.js.map +1 -1
  783. package/lib/ui-kit/CurrencyInput/adjustValue .d.ts +2 -0
  784. package/lib/ui-kit/CurrencyInput/adjustValue .js +9 -2
  785. package/lib/ui-kit/CurrencyInput/adjustValue .js.map +1 -1
  786. package/lib/ui-kit/Foldable/DefaultFoldButton.d.ts +14 -0
  787. package/lib/ui-kit/Foldable/DefaultFoldButton.js +13 -0
  788. package/lib/ui-kit/Foldable/DefaultFoldButton.js.map +1 -0
  789. package/lib/ui-kit/Foldable/Foldable.d.ts +5 -18
  790. package/lib/ui-kit/Foldable/Foldable.js +10 -18
  791. package/lib/ui-kit/Foldable/Foldable.js.map +1 -1
  792. package/lib/ui-kit/Foldable/FoldablePartProps.d.ts +4 -0
  793. package/lib/ui-kit/Foldable/FoldablePartProps.js +2 -0
  794. package/lib/ui-kit/Foldable/FoldablePartProps.js.map +1 -0
  795. package/lib/ui-kit/Foldable/FoldableSection.d.ts +5 -0
  796. package/lib/ui-kit/Foldable/FoldableSection.js +15 -0
  797. package/lib/ui-kit/Foldable/FoldableSection.js.map +1 -0
  798. package/lib/ui-kit/Icon/Icon.js +4 -5
  799. package/lib/ui-kit/Icon/Icon.js.map +1 -1
  800. package/lib/ui-kit/Icon/IconProps.d.ts +0 -1
  801. package/lib/ui-kit/Img/Img.d.ts +1 -2
  802. package/lib/ui-kit/Img/Img.js +1 -6
  803. package/lib/ui-kit/Img/Img.js.map +1 -1
  804. package/lib/ui-kit/Img/Img.mobile.js +1 -3
  805. package/lib/ui-kit/Img/Img.mobile.js.map +1 -1
  806. package/lib/ui-kit/InnerTable/InnerTableBody.js +1 -1
  807. package/lib/ui-kit/InnerTable/InnerTableBody.js.map +1 -1
  808. package/lib/ui-kit/InnerTable/InnerTableBodyItem.js +6 -2
  809. package/lib/ui-kit/InnerTable/InnerTableBodyItem.js.map +1 -1
  810. package/lib/ui-kit/InnerTable/InnerTableButton.js +1 -1
  811. package/lib/ui-kit/InnerTable/InnerTableButton.js.map +1 -1
  812. package/lib/ui-kit/InnerTable/InnerTableHeader.js +1 -1
  813. package/lib/ui-kit/InnerTable/InnerTableHeader.js.map +1 -1
  814. package/lib/ui-kit/Input/Input.js +12 -3
  815. package/lib/ui-kit/Input/Input.js.map +1 -1
  816. package/lib/ui-kit/Input/InputProps.d.ts +2 -0
  817. package/lib/ui-kit/InputRange/InputRange.js +2 -2
  818. package/lib/ui-kit/InputRange/InputRange.js.map +1 -1
  819. package/lib/ui-kit/IntersectionObserverTag.d.ts +11 -0
  820. package/lib/ui-kit/IntersectionObserverTag.js +20 -0
  821. package/lib/ui-kit/IntersectionObserverTag.js.map +1 -0
  822. package/lib/ui-kit/List/List.fixture.d.ts +0 -4
  823. package/lib/ui-kit/List/List.js +13 -8
  824. package/lib/ui-kit/List/List.js.map +1 -1
  825. package/lib/ui-kit/List/ListItem.d.ts +2 -2
  826. package/lib/ui-kit/List/ListItem.js +7 -21
  827. package/lib/ui-kit/List/ListItem.js.map +1 -1
  828. package/lib/ui-kit/List/ListProps.d.ts +5 -3
  829. package/lib/ui-kit/Radio/Radio.js +1 -1
  830. package/lib/ui-kit/Radio/Radio.js.map +1 -1
  831. package/lib/ui-kit/Select/Select.js +5 -2
  832. package/lib/ui-kit/Select/Select.js.map +1 -1
  833. package/lib/utils/getSanitizedValue.d.ts +1 -0
  834. package/lib/utils/getSanitizedValue.js +2 -0
  835. package/lib/utils/getSanitizedValue.js.map +1 -0
  836. package/mobile/bundle/EventBus/EventBus.d.ts +10 -0
  837. package/mobile/bundle/EventBus/EventMap.d.ts +7 -0
  838. package/mobile/bundle/ProjectSettings.d.ts +24 -0
  839. package/mobile/bundle/api/DaDataAPI.d.ts +15 -0
  840. package/mobile/bundle/api/LikeAPI.d.ts +9 -0
  841. package/mobile/bundle/bundle.umd.js +157 -625
  842. package/mobile/bundle/bundle.umd.min.js +1 -1
  843. package/mobile/bundle/components/Accordion/Accordion.d.ts +5 -0
  844. package/mobile/bundle/components/Accordion/AccordionContent.d.ts +45 -0
  845. package/mobile/bundle/components/Accordion/AccordionItem.d.ts +2 -0
  846. package/mobile/bundle/components/Accordion/AccordionItemProps.d.ts +5 -0
  847. package/mobile/bundle/components/Accordion/AccordionItemsList.d.ts +1 -0
  848. package/mobile/bundle/components/BaseTile/BaseTile.d.ts +5 -0
  849. package/mobile/bundle/components/BaseTile/BaseTileProps.d.ts +15 -0
  850. package/mobile/bundle/components/BaseTile/getTileHeadingType.d.ts +1 -0
  851. package/mobile/bundle/components/BaseTile/getTileMinHeight.d.ts +1 -0
  852. package/mobile/bundle/components/BaseTile/getTileRightPadding.d.ts +1 -0
  853. package/mobile/bundle/components/BenefitsBlock/BenefitsBlock.d.ts +5 -0
  854. package/mobile/bundle/components/BenefitsBlock/BenefitsBlockContent.d.ts +52 -0
  855. package/mobile/bundle/components/Blocks.d.ts +17 -0
  856. package/mobile/bundle/components/Bonus/Bonus.d.ts +5 -0
  857. package/mobile/bundle/components/Bonus/BonusContent.d.ts +45 -0
  858. package/mobile/bundle/components/BonusBenefitsBlock/BonusBenefitsBlock.d.ts +5 -0
  859. package/mobile/bundle/components/BonusBenefitsBlock/BonusBenefitsBlockContent.d.ts +15 -0
  860. package/mobile/bundle/components/BonusBenefitsBlock/getElementsColsValue.d.ts +1 -0
  861. package/mobile/bundle/components/Calculator/BonusCalculatorForm.d.ts +5 -0
  862. package/mobile/bundle/components/Calculator/Calculator.d.ts +5 -0
  863. package/mobile/bundle/components/Calculator/CalculatorContent.d.ts +129 -0
  864. package/mobile/bundle/components/Calculator/CalculatorValueBlock.d.ts +8 -0
  865. package/mobile/bundle/components/Calculator/CreditCalculatorForm.d.ts +7 -0
  866. package/mobile/bundle/components/Calculator/DepositCalculatorForm.d.ts +5 -0
  867. package/mobile/bundle/components/Calculator/EmbeddableCalcBlocks.d.ts +9 -0
  868. package/mobile/bundle/components/Calculator/Rate.d.ts +7 -0
  869. package/mobile/bundle/components/Calculator/constants.d.ts +16 -0
  870. package/mobile/bundle/components/Calculator/getBonus.d.ts +2 -0
  871. package/mobile/bundle/components/Calculator/getCreditRate.d.ts +7 -0
  872. package/mobile/bundle/components/Calculator/getDefaultMonths.d.ts +1 -0
  873. package/mobile/bundle/components/Calculator/getDefaultSum.d.ts +1 -0
  874. package/mobile/bundle/components/Calculator/getMonthlyPayment.d.ts +6 -0
  875. package/mobile/bundle/components/Calculator/renderButtonSection.d.ts +2 -0
  876. package/mobile/bundle/components/Calculator/renderCalculatorBlock.d.ts +3 -0
  877. package/mobile/bundle/components/Calculator/renderFootnote.d.ts +2 -0
  878. package/mobile/bundle/components/Calculator/renderInitialFeeInput.d.ts +6 -0
  879. package/mobile/bundle/components/Calculator/renderMonthsInput.d.ts +8 -0
  880. package/mobile/bundle/components/Calculator/renderPaymentTypeSelector.d.ts +6 -0
  881. package/mobile/bundle/components/Calculator/renderProposal.d.ts +2 -0
  882. package/mobile/bundle/components/Calculator/renderProposalMortgage.d.ts +8 -0
  883. package/mobile/bundle/components/Calculator/renderRealEstateValue.d.ts +6 -0
  884. package/mobile/bundle/components/Calculator/renderWantedSumInput.d.ts +11 -0
  885. package/mobile/bundle/components/Calculator/useBonusCalculatorParams.d.ts +36 -0
  886. package/mobile/bundle/components/Calculator/useCalculatorParams.d.ts +1 -0
  887. package/mobile/bundle/components/Calculator/useCreditCalculatorParams.d.ts +27 -0
  888. package/mobile/bundle/components/CardTransfer/CardTransfer.d.ts +5 -0
  889. package/mobile/bundle/components/CardTransfer/CardTransferContent.d.ts +10 -0
  890. package/mobile/bundle/components/Catalog/Catalog.d.ts +5 -0
  891. package/mobile/bundle/components/Catalog/CatalogCard.d.ts +7 -0
  892. package/mobile/bundle/components/Catalog/CatalogContent.d.ts +25 -0
  893. package/mobile/bundle/components/ComparisonTable/ComparisonTable.d.ts +5 -0
  894. package/mobile/bundle/components/ComparisonTable/ComparisonTableBody.d.ts +12 -0
  895. package/mobile/bundle/components/ComparisonTable/ComparisonTableColumnHeaders.d.ts +10 -0
  896. package/mobile/bundle/components/ComparisonTable/ComparisonTableContent.d.ts +50 -0
  897. package/mobile/bundle/components/ComparisonTable/ComparisonTableRows.d.ts +13 -0
  898. package/mobile/bundle/components/ComparisonTable/HeaderCell.d.ts +11 -0
  899. package/mobile/bundle/components/ComparisonTable/TableCarouselContainer.d.ts +7 -0
  900. package/mobile/bundle/components/ComparisonTable/TableCell.d.ts +9 -0
  901. package/mobile/bundle/components/ComparisonTable/TableColumn.d.ts +15 -0
  902. package/mobile/bundle/components/ComparisonTable/TableRow.d.ts +14 -0
  903. package/mobile/bundle/components/ComparisonTable/TableRowContainer.d.ts +1 -0
  904. package/mobile/bundle/components/ComparisonTable/constants.d.ts +6 -0
  905. package/mobile/bundle/components/ContentPage/ContentPage.d.ts +10 -0
  906. package/mobile/bundle/components/ContentPage/ContentPageContext.d.ts +17 -0
  907. package/mobile/bundle/components/ContentPage/ContentPageHead.d.ts +7 -0
  908. package/mobile/bundle/components/ContentPage/computeAPIFallback.d.ts +5 -0
  909. package/mobile/bundle/components/ContentPage/filterBlocks.d.ts +3 -0
  910. package/mobile/bundle/components/ContentPage/normalizeBlock.d.ts +2 -0
  911. package/mobile/bundle/components/ContentPage/normalizePage.d.ts +3 -0
  912. package/mobile/bundle/components/ContentPage/renderBlock.d.ts +13 -0
  913. package/mobile/bundle/components/ErrorBlock/ErrorBlock.d.ts +5 -0
  914. package/mobile/bundle/components/ErrorBlock/ErrorBlockContent.d.ts +48 -0
  915. package/mobile/bundle/components/ExchangeRateTile/CurrencyProps.d.ts +5 -0
  916. package/mobile/bundle/components/ExchangeRateTile/CurrencyTable.d.ts +7 -0
  917. package/mobile/bundle/components/ExchangeRateTile/CurrentLocation.d.ts +7 -0
  918. package/mobile/bundle/components/ExchangeRateTile/ExchangeCurrencyCalculator.d.ts +21 -0
  919. package/mobile/bundle/components/ExchangeRateTile/ExchangeRateTile.d.ts +5 -0
  920. package/mobile/bundle/components/ExchangeRateTile/ExchangeRateTileContent.d.ts +8 -0
  921. package/mobile/bundle/components/ExchangeRateTile/calculateResult.d.ts +2 -0
  922. package/mobile/bundle/components/ExchangeRateTile/callbackCurrencySelect.d.ts +8 -0
  923. package/mobile/bundle/components/ExchangeRateTile/formatCurrency.d.ts +1 -0
  924. package/mobile/bundle/components/ExchangeRateTile/renderInput.d.ts +13 -0
  925. package/mobile/bundle/components/Footer/Contacts.d.ts +7 -0
  926. package/mobile/bundle/components/Footer/Footer.d.ts +5 -0
  927. package/mobile/bundle/components/Footer/FooterContent.d.ts +44 -0
  928. package/mobile/bundle/components/Footer/FooterLink.d.ts +5 -0
  929. package/mobile/bundle/components/Footer/HorizontalNavigation.d.ts +6 -0
  930. package/mobile/bundle/components/Footer/HorizontalNavigationLink.d.ts +8 -0
  931. package/mobile/bundle/components/Footer/MediaButton.d.ts +7 -0
  932. package/mobile/bundle/components/Footer/Sitemap.d.ts +8 -0
  933. package/mobile/bundle/components/Footer/SocialMedia.d.ts +8 -0
  934. package/mobile/bundle/components/Footer/TextInformation.d.ts +2 -0
  935. package/mobile/bundle/components/Footer/TextInformationLink.d.ts +8 -0
  936. package/mobile/bundle/components/Gallery/Gallery.d.ts +2 -0
  937. package/mobile/bundle/components/Gallery/GalleryCardInner.d.ts +2 -0
  938. package/mobile/bundle/components/Gallery/GalleryContainer.d.ts +13 -0
  939. package/mobile/bundle/components/Gallery/GalleryContent.d.ts +64 -0
  940. package/mobile/bundle/components/Gallery/GalleryInner.d.ts +7 -0
  941. package/mobile/bundle/components/Gallery/GalleryProps.d.ts +4 -0
  942. package/mobile/bundle/components/Gallery/constants.d.ts +4 -0
  943. package/mobile/bundle/components/GracePeriod/GracePeriod.d.ts +5 -0
  944. package/mobile/bundle/components/GracePeriod/GracePeriodContent.d.ts +32 -0
  945. package/mobile/bundle/components/Header/DropdownMenu.d.ts +14 -0
  946. package/mobile/bundle/components/Header/Header.d.ts +5 -0
  947. package/mobile/bundle/components/Header/Header.fallback.d.ts +2 -0
  948. package/mobile/bundle/components/Header/HeaderBurger.d.ts +11 -0
  949. package/mobile/bundle/components/Header/HeaderContent.d.ts +41 -0
  950. package/mobile/bundle/components/Header/HeaderSecondaryMenu.d.ts +10 -0
  951. package/mobile/bundle/components/Header/HeaderSecondaryMenuButton.d.ts +6 -0
  952. package/mobile/bundle/components/Header/HeaderSubMenu.d.ts +9 -0
  953. package/mobile/bundle/components/Header/HeaderTop.d.ts +6 -0
  954. package/mobile/bundle/components/Headline/Headline.d.ts +5 -0
  955. package/mobile/bundle/components/Headline/HeadlineContent.d.ts +15 -0
  956. package/mobile/bundle/components/Headline/constants.d.ts +20 -0
  957. package/mobile/bundle/components/InsuranceAmountBlock/InsuranceAmountBlock.d.ts +5 -0
  958. package/mobile/bundle/components/InsuranceAmountBlock/InsuranceAmountBlockContent.d.ts +30 -0
  959. package/mobile/bundle/components/InsuranceAmountBlock/InsuranceAmountBlockInner.d.ts +7 -0
  960. package/mobile/bundle/components/InvestmentInfo/InvestmentInfo.d.ts +5 -0
  961. package/mobile/bundle/components/InvestmentInfo/InvestmentInfoContent.d.ts +49 -0
  962. package/mobile/bundle/components/LikeControl/LikeControl.d.ts +2 -0
  963. package/mobile/bundle/components/LinkDocs/LinkDocs.d.ts +5 -0
  964. package/mobile/bundle/components/LinkDocs/LinkDocsContent.d.ts +43 -0
  965. package/mobile/bundle/components/LinkDocs/LinkDocsHorizontalList.d.ts +6 -0
  966. package/mobile/bundle/components/LinkDocs/LinkDocsList.d.ts +9 -0
  967. package/mobile/bundle/components/LinkDocs/LinkDocsListItem.d.ts +2 -0
  968. package/mobile/bundle/components/LinkDocs/LinkDocsListItemBase.d.ts +13 -0
  969. package/mobile/bundle/components/LinkDocs/LinkDocsVerticalList.d.ts +8 -0
  970. package/mobile/bundle/components/LinkDocs/linkDocsContentExample.d.ts +2 -0
  971. package/mobile/bundle/components/LinkList/LinkList.d.ts +5 -0
  972. package/mobile/bundle/components/LinkList/LinkListContent.d.ts +8 -0
  973. package/mobile/bundle/components/LinkList/linkListContentExample.d.ts +2 -0
  974. package/mobile/bundle/components/MiniGallery/MiniGallery.d.ts +5 -0
  975. package/mobile/bundle/components/MiniGallery/MiniGalleryContent.d.ts +12 -0
  976. package/mobile/bundle/components/MobileAppTile/MobileAppTile.d.ts +5 -0
  977. package/mobile/bundle/components/MobileAppTile/MobileAppTileContent.d.ts +31 -0
  978. package/mobile/bundle/components/OfficeServicesBlock/OfficeServicesBlock.d.ts +5 -0
  979. package/mobile/bundle/components/OfficeServicesBlock/OfficeServicesBlockContent.d.ts +10 -0
  980. package/mobile/bundle/components/OtherProducts/OtherProducts.d.ts +5 -0
  981. package/mobile/bundle/components/OtherProducts/OtherProductsContent.d.ts +25 -0
  982. package/mobile/bundle/components/OtherProducts/OtherProductsItem.d.ts +6 -0
  983. package/mobile/bundle/components/PictureText/PictureText.d.ts +5 -0
  984. package/mobile/bundle/components/PictureText/PictureTextContent.d.ts +34 -0
  985. package/mobile/bundle/components/Placeholder/Placeholder.d.ts +6 -0
  986. package/mobile/bundle/components/Placeholder/PlaceholderContent.d.ts +5 -0
  987. package/mobile/bundle/components/ProductBlock/ProductBlock.d.ts +5 -0
  988. package/mobile/bundle/components/ProductBlock/ProductBlockContent.d.ts +54 -0
  989. package/mobile/bundle/components/ProductBlock/ProductBlockInner.d.ts +4 -0
  990. package/mobile/bundle/components/ProductBlock/renderBackwardButton.d.ts +4 -0
  991. package/mobile/bundle/components/ProductBlock/renderBenefit.d.ts +5 -0
  992. package/mobile/bundle/components/ProductGallery/ProductGallery.d.ts +5 -0
  993. package/mobile/bundle/components/ProductGallery/ProductGalleryBlock.d.ts +8 -0
  994. package/mobile/bundle/components/ProductGallery/ProductGalleryContent.d.ts +29 -0
  995. package/mobile/bundle/components/ProductTile/ProductTile.d.ts +5 -0
  996. package/mobile/bundle/components/ProductTile/ProductTileContent.d.ts +33 -0
  997. package/mobile/bundle/components/PromoTile/PromoTile.d.ts +5 -0
  998. package/mobile/bundle/components/PromoTile/PromoTileContent.d.ts +12 -0
  999. package/mobile/bundle/components/Recommendation/Recommendation.d.ts +5 -0
  1000. package/mobile/bundle/components/Recommendation/RecommendationCard.d.ts +7 -0
  1001. package/mobile/bundle/components/Recommendation/RecommendationContent.d.ts +43 -0
  1002. package/mobile/bundle/components/SafeDepositRental/RegionsAndBranches.d.ts +12 -0
  1003. package/mobile/bundle/components/SafeDepositRental/RenderRadioButtons.d.ts +2 -0
  1004. package/mobile/bundle/components/SafeDepositRental/RentalPeriod.d.ts +6 -0
  1005. package/mobile/bundle/components/SafeDepositRental/SafeBoxCases.d.ts +11 -0
  1006. package/mobile/bundle/components/SafeDepositRental/SafeDepositRental.d.ts +5 -0
  1007. package/mobile/bundle/components/SafeDepositRental/SafeDepositRentalContent.d.ts +9 -0
  1008. package/mobile/bundle/components/SafeDepositRental/SafeDepositRentalFields.d.ts +12 -0
  1009. package/mobile/bundle/components/SafeDepositRental/SafeDepositRentalForm.d.ts +11 -0
  1010. package/mobile/bundle/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +6 -0
  1011. package/mobile/bundle/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +8 -0
  1012. package/mobile/bundle/components/SafeDepositRental/WrapperSelect.d.ts +11 -0
  1013. package/mobile/bundle/components/SafeDepositRental/YandexMap.d.ts +5 -0
  1014. package/mobile/bundle/components/SafeDepositRental/renderClusterer.d.ts +2 -0
  1015. package/mobile/bundle/components/SafeDepositRental/useGetRegions.d.ts +6 -0
  1016. package/mobile/bundle/components/SafeDepositRental/useYandexMaps.d.ts +2 -0
  1017. package/mobile/bundle/components/SafeDepositRental/utils.d.ts +3 -0
  1018. package/mobile/bundle/components/StepsBlock/StepsBlock.d.ts +5 -0
  1019. package/mobile/bundle/components/StepsBlock/StepsBlockContent.d.ts +43 -0
  1020. package/mobile/bundle/components/StepsBlock/StepsBlockStyleMaps.d.ts +11 -0
  1021. package/mobile/bundle/components/StepsBlock/renderItems.d.ts +8 -0
  1022. package/mobile/bundle/components/StepsBlock/renderStepContent.d.ts +14 -0
  1023. package/mobile/bundle/components/Tabs/Tabs.d.ts +13 -0
  1024. package/mobile/bundle/components/Tabs/TabsContent.d.ts +36 -0
  1025. package/mobile/bundle/components/Tabs/renderGroupTab.d.ts +4 -0
  1026. package/mobile/bundle/components/Tabs/renderLinkTab.d.ts +9 -0
  1027. package/mobile/bundle/components/Tabs/renderTab.d.ts +12 -0
  1028. package/mobile/bundle/components/Tabs/tabItemClasses.d.ts +6 -0
  1029. package/mobile/bundle/components/TariffsTable/EmbeddableCellData.d.ts +12 -0
  1030. package/mobile/bundle/components/TariffsTable/TableTileHeader.d.ts +2 -0
  1031. package/mobile/bundle/components/TariffsTable/TariffsTable.d.ts +5 -0
  1032. package/mobile/bundle/components/TariffsTable/TariffsTableCell.d.ts +9 -0
  1033. package/mobile/bundle/components/TariffsTable/TariffsTableContent.d.ts +95 -0
  1034. package/mobile/bundle/components/TariffsTable/TariffsTableHorizontal.d.ts +6 -0
  1035. package/mobile/bundle/components/TariffsTable/TariffsTableRow.d.ts +9 -0
  1036. package/mobile/bundle/components/TariffsTable/TariffsTableRowContainer.d.ts +7 -0
  1037. package/mobile/bundle/components/TariffsTable/TariffsTableTileCell.d.ts +8 -0
  1038. package/mobile/bundle/components/TariffsTable/TariffsTableVertical.d.ts +6 -0
  1039. package/mobile/bundle/components/TariffsTable/constants.d.ts +4 -0
  1040. package/mobile/bundle/components/TariffsTable/dataFixture.d.ts +5 -0
  1041. package/mobile/bundle/components/TariffsTable/utils/getButtonAriaLabel.d.ts +2 -0
  1042. package/mobile/bundle/components/TextBlock/TextBlock.d.ts +5 -0
  1043. package/mobile/bundle/components/TextBlock/TextBlockContent.d.ts +22 -0
  1044. package/mobile/bundle/components/Tile/Tile.d.ts +6 -0
  1045. package/mobile/bundle/components/Tile/TileContent.d.ts +34 -0
  1046. package/mobile/bundle/content-page-repository/ContentPageRepository.d.ts +11 -0
  1047. package/mobile/bundle/content-page-repository/TransformationOptions.d.ts +4 -0
  1048. package/mobile/bundle/content-page-repository/index.d.ts +2 -0
  1049. package/mobile/bundle/content-page-repository/mapJSON.d.ts +1 -0
  1050. package/mobile/bundle/content-page-repository/transformContentPage.d.ts +3 -0
  1051. package/mobile/bundle/content-page-repository/transformImg.d.ts +11 -0
  1052. package/mobile/bundle/content-page-repository/transformMarkdown.d.ts +1 -0
  1053. package/mobile/bundle/content-page-repository/transformPicture.d.ts +3 -0
  1054. package/mobile/bundle/content-page-repository/transformSrc.d.ts +3 -0
  1055. package/mobile/bundle/hooks/useExchangeRates.d.ts +2 -0
  1056. package/mobile/bundle/hooks/useExternalNS.d.ts +2 -0
  1057. package/mobile/bundle/hooks/useGeolocation.d.ts +1 -0
  1058. package/mobile/bundle/hooks/useLikeService.d.ts +5 -0
  1059. package/mobile/bundle/hooks/useLink.d.ts +18 -0
  1060. package/mobile/bundle/hooks/useOutsideClick.d.ts +5 -0
  1061. package/mobile/{lib/hooks/useFetchSafeBoxes.d.ts → bundle/hooks/useSafeBoxes.d.ts} +1 -3
  1062. package/mobile/bundle/hooks/useSearch.d.ts +4 -0
  1063. package/mobile/bundle/hooks/useTableArrowScrollControl.d.ts +7 -0
  1064. package/mobile/bundle/hooks/useTariffsInnerTableData.d.ts +1 -0
  1065. package/mobile/bundle/icons/IconName.d.ts +194 -0
  1066. package/mobile/bundle/index.d.ts +9 -0
  1067. package/mobile/bundle/model/AlignType.d.ts +9 -0
  1068. package/mobile/bundle/model/BgColorVersion.d.ts +8 -0
  1069. package/mobile/bundle/model/BlockDecorator.d.ts +15 -0
  1070. package/mobile/bundle/model/BlockVersion.d.ts +11 -0
  1071. package/mobile/bundle/model/BlocksRegistry.d.ts +8 -0
  1072. package/mobile/bundle/model/ButtonVersion.d.ts +6 -0
  1073. package/mobile/bundle/model/ContentPageDef.d.ts +52 -0
  1074. package/mobile/bundle/model/EmptyOptionType.d.ts +4 -0
  1075. package/mobile/bundle/model/Fallback.d.ts +5 -0
  1076. package/mobile/bundle/model/Footnote.d.ts +4 -0
  1077. package/mobile/bundle/model/GalleryVersion.d.ts +1 -0
  1078. package/mobile/bundle/model/HeadlineType.d.ts +29 -0
  1079. package/mobile/bundle/model/IconVersion.d.ts +9 -0
  1080. package/mobile/bundle/model/ImageSize.d.ts +6 -0
  1081. package/mobile/bundle/model/InputTypes.d.ts +1 -0
  1082. package/mobile/bundle/model/LinkProps.d.ts +24 -0
  1083. package/mobile/bundle/model/ListOrientation.d.ts +8 -0
  1084. package/mobile/bundle/model/Picture.d.ts +59 -0
  1085. package/mobile/bundle/model/ProductColorVersion.d.ts +4 -0
  1086. package/mobile/bundle/model/SitemapProps.d.ts +24 -0
  1087. package/mobile/bundle/model/SizeVersion.d.ts +8 -0
  1088. package/mobile/bundle/model/TableVersion.d.ts +1 -0
  1089. package/mobile/bundle/model/VNode.d.ts +1 -0
  1090. package/mobile/bundle/react/setup-fixture.d.ts +4 -0
  1091. package/mobile/bundle/services/sitemap/SitemapProps.d.ts +24 -0
  1092. package/mobile/bundle/services/sitemap/checkIsHrefSameOrigin.d.ts +4 -0
  1093. package/mobile/bundle/services/sitemap/findActiveSubItem.d.ts +3 -0
  1094. package/mobile/bundle/services/sitemap/isHrefActive.d.ts +4 -0
  1095. package/mobile/bundle/services/sitemap/isSubItemActive.d.ts +3 -0
  1096. package/mobile/bundle/services/sitemap/isTopItemActive.d.ts +3 -0
  1097. package/mobile/bundle/services/sitemap/mergeTopItems.d.ts +2 -0
  1098. package/mobile/bundle/services/sitemap/useSitemap.d.ts +3 -0
  1099. package/mobile/bundle/ui-kit/BenefitItem/BenefitItem.d.ts +4 -0
  1100. package/mobile/bundle/ui-kit/BenefitItem/BenefitItemProps.d.ts +20 -0
  1101. package/mobile/bundle/ui-kit/BlockWrapper.d.ts +7 -0
  1102. package/mobile/bundle/ui-kit/BlocksList/BlocksListProps.d.ts +96 -0
  1103. package/mobile/bundle/ui-kit/BlocksList/EmbeddableBlocks.d.ts +8 -0
  1104. package/mobile/bundle/ui-kit/BlocksList/renderBlocksList.d.ts +9 -0
  1105. package/mobile/bundle/ui-kit/Breadcrumb.d.ts +6 -0
  1106. package/mobile/bundle/ui-kit/Button/ArrowButton.d.ts +2 -0
  1107. package/mobile/bundle/ui-kit/Button/Button.d.ts +2 -0
  1108. package/mobile/bundle/ui-kit/Button/ButtonInner.d.ts +7 -0
  1109. package/mobile/bundle/ui-kit/Button/ButtonProps.d.ts +54 -0
  1110. package/mobile/bundle/ui-kit/Button/ButtonSection.d.ts +5 -0
  1111. package/mobile/bundle/ui-kit/Button/GetButtonClassParams.d.ts +6 -0
  1112. package/mobile/bundle/ui-kit/Button/LikeButton.d.ts +6 -0
  1113. package/mobile/bundle/ui-kit/Button/buttonClassNameConstants.d.ts +5 -0
  1114. package/mobile/bundle/ui-kit/Button/getDisabledButtonClasses.d.ts +2 -0
  1115. package/mobile/bundle/ui-kit/Button/getRegularButtonClasses.d.ts +2 -0
  1116. package/mobile/bundle/ui-kit/Button/renderArrows.d.ts +9 -0
  1117. package/mobile/bundle/ui-kit/Checkbox/Checkbox.d.ts +2 -0
  1118. package/mobile/bundle/ui-kit/Checkbox/CheckboxProps.d.ts +7 -0
  1119. package/mobile/bundle/ui-kit/CurrencyInput/CurrencyInput.d.ts +2 -0
  1120. package/mobile/bundle/ui-kit/CurrencyInput/CurrencyInputProps.d.ts +5 -0
  1121. package/mobile/bundle/ui-kit/CurrencyInput/adjustValue .d.ts +3 -0
  1122. package/mobile/bundle/ui-kit/Description/Description.d.ts +5 -0
  1123. package/mobile/bundle/ui-kit/Foldable/DefaultFoldButton.d.ts +14 -0
  1124. package/mobile/bundle/ui-kit/Foldable/Foldable.d.ts +9 -0
  1125. package/mobile/bundle/ui-kit/Foldable/FoldablePartProps.d.ts +4 -0
  1126. package/mobile/bundle/ui-kit/Foldable/FoldableSection.d.ts +5 -0
  1127. package/mobile/bundle/ui-kit/HeaderItem/HeaderItem.d.ts +3 -0
  1128. package/mobile/bundle/ui-kit/Heading/Heading.d.ts +2 -0
  1129. package/mobile/bundle/ui-kit/Heading/HeadingProps.d.ts +23 -0
  1130. package/mobile/bundle/ui-kit/Icon/Icon.d.ts +2 -0
  1131. package/mobile/bundle/ui-kit/Icon/IconProps.d.ts +21 -0
  1132. package/mobile/bundle/ui-kit/Img/Img.d.ts +2 -0
  1133. package/mobile/bundle/ui-kit/Img/ImgAsPicture.d.ts +4 -0
  1134. package/mobile/bundle/ui-kit/Img/ImgInner.d.ts +2 -0
  1135. package/mobile/bundle/ui-kit/Img/ImgProps.d.ts +11 -0
  1136. package/mobile/bundle/ui-kit/Img/getIconVersion.d.ts +1 -0
  1137. package/mobile/bundle/ui-kit/InnerTable/InnerTable.d.ts +5 -0
  1138. package/mobile/bundle/ui-kit/InnerTable/InnerTableBody.d.ts +7 -0
  1139. package/mobile/bundle/ui-kit/InnerTable/InnerTableBodyItem.d.ts +6 -0
  1140. package/mobile/bundle/ui-kit/InnerTable/InnerTableButton.d.ts +6 -0
  1141. package/mobile/bundle/ui-kit/InnerTable/InnerTableHeader.d.ts +7 -0
  1142. package/mobile/bundle/ui-kit/InnerTable/InnerTableProps.d.ts +24 -0
  1143. package/mobile/bundle/ui-kit/Input/Input.d.ts +2 -0
  1144. package/mobile/bundle/ui-kit/Input/InputProps.d.ts +16 -0
  1145. package/mobile/bundle/ui-kit/InputRange/InputRange.d.ts +2 -0
  1146. package/mobile/bundle/ui-kit/InputRange/InputRangeProps.d.ts +11 -0
  1147. package/mobile/bundle/ui-kit/IntersectionObserverTag.d.ts +11 -0
  1148. package/mobile/bundle/ui-kit/List/List.d.ts +2 -0
  1149. package/mobile/bundle/ui-kit/List/ListContent.d.ts +4 -0
  1150. package/mobile/bundle/ui-kit/List/ListItem.d.ts +12 -0
  1151. package/mobile/bundle/ui-kit/List/ListProps.d.ts +26 -0
  1152. package/mobile/bundle/ui-kit/Logo/Logo.d.ts +8 -0
  1153. package/mobile/bundle/ui-kit/Radio/Radio.d.ts +2 -0
  1154. package/mobile/bundle/ui-kit/Radio/RadioProps.d.ts +9 -0
  1155. package/mobile/bundle/ui-kit/RadioButtonGroup/RadioButtonGroup.d.ts +12 -0
  1156. package/mobile/bundle/ui-kit/SVG.d.ts +19 -0
  1157. package/mobile/bundle/ui-kit/SearchBar/SearchBar.d.ts +2 -0
  1158. package/mobile/bundle/ui-kit/SearchBar/SearchBarInner.d.ts +5 -0
  1159. package/mobile/bundle/ui-kit/Select/Select.d.ts +14 -0
  1160. package/mobile/bundle/ui-kit/SwipeListControl/SwipeListControl.d.ts +2 -0
  1161. package/mobile/bundle/ui-kit/SwipeListControl/SwipeListControlDots.d.ts +6 -0
  1162. package/mobile/bundle/ui-kit/SwipeListControl/SwipeListControlItem.d.ts +9 -0
  1163. package/mobile/bundle/ui-kit/SwipeListControl/SwipeListControlList.d.ts +10 -0
  1164. package/mobile/bundle/ui-kit/SwipeListControl/SwipeListControlProps.d.ts +18 -0
  1165. package/mobile/bundle/ui-kit/SwipeListControl/constants.d.ts +2 -0
  1166. package/mobile/bundle/ui-kit/SwipeListControl/utils/getContainerStyle.d.ts +1 -0
  1167. package/mobile/bundle/ui-kit/SwipeListControl/utils/getIndexParts.d.ts +4 -0
  1168. package/mobile/bundle/ui-kit/SwipeListControl/utils/getScrollPoints.d.ts +8 -0
  1169. package/mobile/bundle/ui-kit/TableArrowScrollControl/TableArrowScrollControl.d.ts +2 -0
  1170. package/mobile/bundle/ui-kit/TableArrowScrollControl/TableArrowScrollControlProps.d.ts +7 -0
  1171. package/mobile/bundle/ui-kit/TopItem/TopItem.d.ts +14 -0
  1172. package/mobile/bundle/utils/addSpacesBetweenNumbers.d.ts +1 -0
  1173. package/mobile/bundle/utils/adjustHref.d.ts +4 -0
  1174. package/mobile/bundle/utils/assertUnreachable.d.ts +1 -0
  1175. package/mobile/bundle/utils/changeHashOnObserve.d.ts +9 -0
  1176. package/mobile/bundle/utils/checkIsIconRenderable.d.ts +2 -0
  1177. package/mobile/bundle/utils/clamp.d.ts +1 -0
  1178. package/mobile/bundle/utils/fetchJSON.d.ts +2 -0
  1179. package/mobile/bundle/utils/getColSpan.d.ts +1 -0
  1180. package/mobile/bundle/utils/getCurrentDate.d.ts +1 -0
  1181. package/mobile/bundle/utils/getGeolocation.d.ts +1 -0
  1182. package/mobile/bundle/utils/getSanitizedValue.d.ts +1 -0
  1183. package/mobile/bundle/utils/isPictureSizeEmpty.d.ts +2 -0
  1184. package/mobile/bundle/utils/joinList.d.ts +1 -0
  1185. package/mobile/bundle/utils/maxBy.d.ts +2 -0
  1186. package/mobile/bundle/utils/roundTo.d.ts +1 -0
  1187. package/mobile/bundle/utils/style2className.d.ts +1 -0
  1188. package/mobile/bundle/utils/tableFunc.d.ts +2 -0
  1189. package/mobile/bundle/utils/url.d.ts +5 -0
  1190. package/mobile/bundle/utils/withoutMobilePath.d.ts +2 -0
  1191. package/mobile/dist/components/Accordion/Accordion.js +5 -2
  1192. package/mobile/dist/components/Accordion/Accordion.js.map +1 -1
  1193. package/mobile/dist/components/Accordion/AccordionContent.d.ts +9 -7
  1194. package/mobile/dist/components/Accordion/AccordionItem.d.ts +1 -4
  1195. package/mobile/dist/components/Accordion/AccordionItem.js +7 -8
  1196. package/mobile/dist/components/Accordion/AccordionItem.js.map +1 -1
  1197. package/mobile/dist/components/Accordion/AccordionItemProps.d.ts +5 -0
  1198. package/mobile/dist/components/Accordion/AccordionItemProps.js +2 -0
  1199. package/mobile/dist/components/Accordion/AccordionItemProps.js.map +1 -0
  1200. package/mobile/dist/components/Accordion/AccordionItemsList.d.ts +1 -0
  1201. package/mobile/dist/components/Accordion/AccordionItemsList.js +6 -0
  1202. package/mobile/dist/components/Accordion/AccordionItemsList.js.map +1 -0
  1203. package/mobile/dist/components/BenefitsBlock/BenefitsBlock.js +1 -1
  1204. package/mobile/dist/components/BenefitsBlock/BenefitsBlock.js.map +1 -1
  1205. package/mobile/dist/components/Blocks.d.ts +0 -1
  1206. package/mobile/dist/components/Blocks.js +0 -2
  1207. package/mobile/dist/components/Blocks.js.map +1 -1
  1208. package/mobile/dist/components/Calculator/CalculatorContent.d.ts +1 -1
  1209. package/mobile/dist/components/CardTransfer/CardTransfer.js +3 -2
  1210. package/mobile/dist/components/CardTransfer/CardTransfer.js.map +1 -1
  1211. package/mobile/dist/components/Catalog/Catalog.js +1 -1
  1212. package/mobile/dist/components/Catalog/Catalog.js.map +1 -1
  1213. package/mobile/dist/components/Catalog/CatalogCard.js +1 -23
  1214. package/mobile/dist/components/Catalog/CatalogCard.js.map +1 -1
  1215. package/mobile/dist/components/ComparisonTable/ComparisonTable.js +13 -48
  1216. package/mobile/dist/components/ComparisonTable/ComparisonTable.js.map +1 -1
  1217. package/mobile/dist/components/ComparisonTable/TableColumn.d.ts +5 -8
  1218. package/mobile/dist/components/ComparisonTable/TableColumn.js +2 -8
  1219. package/mobile/dist/components/ComparisonTable/TableColumn.js.map +1 -1
  1220. package/mobile/dist/components/ContentPage/ContentPageContext.d.ts +0 -11
  1221. package/mobile/dist/components/ContentPage/filterBlocks.js +1 -3
  1222. package/mobile/dist/components/ContentPage/filterBlocks.js.map +1 -1
  1223. package/mobile/dist/components/ContentPage/renderBlock.js +1 -1
  1224. package/mobile/dist/components/ContentPage/renderBlock.js.map +1 -1
  1225. package/mobile/dist/components/ErrorBlock/ErrorBlock.js +1 -1
  1226. package/mobile/dist/components/ErrorBlock/ErrorBlock.js.map +1 -1
  1227. package/mobile/dist/components/ExchangeRateTile/renderInput.js +1 -1
  1228. package/mobile/dist/components/ExchangeRateTile/renderInput.js.map +1 -1
  1229. package/mobile/dist/components/Footer/Contacts.js +1 -1
  1230. package/mobile/dist/components/Footer/Contacts.js.map +1 -1
  1231. package/mobile/dist/components/Footer/Footer.js +8 -7
  1232. package/mobile/dist/components/Footer/Footer.js.map +1 -1
  1233. package/mobile/dist/components/Footer/FooterContent.d.ts +5 -9
  1234. package/mobile/dist/components/Gallery/Gallery.js +7 -3
  1235. package/mobile/dist/components/Gallery/Gallery.js.map +1 -1
  1236. package/mobile/dist/components/Gallery/GalleryCardInner.js +14 -17
  1237. package/mobile/dist/components/Gallery/GalleryCardInner.js.map +1 -1
  1238. package/mobile/dist/components/Gallery/GalleryContainer.js +2 -2
  1239. package/mobile/dist/components/Gallery/GalleryContainer.js.map +1 -1
  1240. package/mobile/dist/components/Gallery/GalleryContent.d.ts +11 -3
  1241. package/mobile/dist/components/Header/Header.js +5 -5
  1242. package/mobile/dist/components/Header/Header.js.map +1 -1
  1243. package/mobile/dist/components/Header/HeaderSubMenu.js +3 -2
  1244. package/mobile/dist/components/Header/HeaderSubMenu.js.map +1 -1
  1245. package/mobile/dist/components/Headline/constants.d.ts +2 -1
  1246. package/mobile/dist/components/Headline/constants.js +10 -1
  1247. package/mobile/dist/components/Headline/constants.js.map +1 -1
  1248. package/mobile/dist/components/InvestmentInfo/InvestmentInfo.d.ts +5 -0
  1249. package/mobile/dist/components/InvestmentInfo/InvestmentInfo.js +49 -0
  1250. package/mobile/dist/components/InvestmentInfo/InvestmentInfo.js.map +1 -0
  1251. package/mobile/dist/components/InvestmentInfo/InvestmentInfoContent.d.ts +49 -0
  1252. package/mobile/dist/components/InvestmentInfo/InvestmentInfoContent.js +2 -0
  1253. package/mobile/dist/components/InvestmentInfo/InvestmentInfoContent.js.map +1 -0
  1254. package/mobile/dist/components/MiniGallery/MiniGalleryContent.d.ts +1 -0
  1255. package/mobile/dist/components/OtherProducts/OtherProductsItem.js +5 -5
  1256. package/mobile/dist/components/OtherProducts/OtherProductsItem.js.map +1 -1
  1257. package/mobile/dist/components/ProductTile/ProductTile.js +1 -1
  1258. package/mobile/dist/components/ProductTile/ProductTile.js.map +1 -1
  1259. package/mobile/dist/components/Recommendation/RecommendationContent.d.ts +5 -0
  1260. package/mobile/dist/components/SafeDepositRental/RegionsAndBranches.d.ts +1 -1
  1261. package/mobile/dist/components/SafeDepositRental/SafeBoxCases.d.ts +1 -1
  1262. package/mobile/dist/components/SafeDepositRental/SafeDepositRental.d.ts +1 -1
  1263. package/mobile/dist/components/SafeDepositRental/SafeDepositRental.js +17 -3
  1264. package/mobile/dist/components/SafeDepositRental/SafeDepositRental.js.map +1 -1
  1265. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalFields.d.ts +7 -4
  1266. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalFields.js +3 -5
  1267. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalFields.js.map +1 -1
  1268. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalForm.d.ts +7 -3
  1269. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalForm.js +7 -28
  1270. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalForm.js.map +1 -1
  1271. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +1 -1
  1272. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +0 -2
  1273. package/mobile/dist/components/SafeDepositRental/utils.d.ts +1 -1
  1274. package/mobile/dist/components/StepsBlock/StepsBlockContent.d.ts +9 -2
  1275. package/mobile/dist/components/StepsBlock/StepsBlockStyleMaps.d.ts +1 -0
  1276. package/mobile/dist/components/StepsBlock/StepsBlockStyleMaps.js +4 -2
  1277. package/mobile/dist/components/StepsBlock/StepsBlockStyleMaps.js.map +1 -1
  1278. package/mobile/dist/components/StepsBlock/renderItems.d.ts +8 -0
  1279. package/mobile/dist/components/StepsBlock/renderItems.js +10 -0
  1280. package/mobile/dist/components/StepsBlock/renderItems.js.map +1 -0
  1281. package/mobile/dist/components/StepsBlock/renderStepContent.d.ts +14 -0
  1282. package/mobile/dist/components/StepsBlock/renderStepContent.js +20 -0
  1283. package/mobile/dist/components/StepsBlock/renderStepContent.js.map +1 -0
  1284. package/mobile/dist/components/TariffsTable/EmbeddableCellData.js +1 -2
  1285. package/mobile/dist/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  1286. package/mobile/dist/components/TariffsTable/TariffsTableCell.js +1 -1
  1287. package/mobile/dist/components/TariffsTable/TariffsTableCell.js.map +1 -1
  1288. package/mobile/dist/components/TariffsTable/TariffsTableRow.js +1 -2
  1289. package/mobile/dist/components/TariffsTable/TariffsTableRow.js.map +1 -1
  1290. package/mobile/dist/components/TariffsTable/dataFixture.js +4 -2
  1291. package/mobile/dist/components/TariffsTable/dataFixture.js.map +1 -1
  1292. package/mobile/dist/components/TariffsTable/utils/getButtonAriaLabel.d.ts +1 -1
  1293. package/mobile/dist/components/TariffsTable/utils/getButtonAriaLabel.js +1 -2
  1294. package/mobile/dist/components/TariffsTable/utils/getButtonAriaLabel.js.map +1 -1
  1295. package/mobile/dist/components/Tile/Tile.js +2 -3
  1296. package/mobile/dist/components/Tile/Tile.js.map +1 -1
  1297. package/mobile/dist/hooks/useOutsideClick.d.ts +5 -0
  1298. package/mobile/dist/hooks/useOutsideClick.js +21 -0
  1299. package/mobile/dist/hooks/useOutsideClick.js.map +1 -0
  1300. package/mobile/dist/hooks/useSafeBoxes.d.ts +20 -0
  1301. package/{dist/hooks/useFetchSafeBoxes.js → mobile/dist/hooks/useSafeBoxes.js} +9 -10
  1302. package/mobile/dist/hooks/useSafeBoxes.js.map +1 -0
  1303. package/mobile/dist/icons/IconName.d.ts +1 -92
  1304. package/mobile/dist/icons/IconName.js +4 -4
  1305. package/mobile/dist/icons/IconName.js.map +1 -1
  1306. package/mobile/dist/model/BlockDecorator.d.ts +1 -0
  1307. package/mobile/dist/model/BlockDecorator.js +2 -1
  1308. package/mobile/dist/model/BlockDecorator.js.map +1 -1
  1309. package/mobile/dist/model/BlocksRegistry.d.ts +4 -1
  1310. package/mobile/dist/model/HeadlineType.d.ts +8 -0
  1311. package/mobile/dist/model/Picture.d.ts +1 -0
  1312. package/mobile/dist/react/setup-fixture.js +0 -2
  1313. package/mobile/dist/react/setup-fixture.js.map +1 -1
  1314. package/mobile/dist/ui-kit/BenefitItem/BenefitItem.js +3 -1
  1315. package/mobile/dist/ui-kit/BenefitItem/BenefitItem.js.map +1 -1
  1316. package/mobile/dist/ui-kit/BlockWrapper.d.ts +0 -3
  1317. package/mobile/dist/ui-kit/BlockWrapper.js +5 -5
  1318. package/mobile/dist/ui-kit/BlockWrapper.js.map +1 -1
  1319. package/mobile/dist/ui-kit/BlocksList/renderBlocksList.d.ts +1 -1
  1320. package/mobile/dist/ui-kit/BlocksList/renderBlocksList.js +1 -1
  1321. package/mobile/dist/ui-kit/BlocksList/renderBlocksList.js.map +1 -1
  1322. package/mobile/dist/ui-kit/Button/Button.js +1 -1
  1323. package/mobile/dist/ui-kit/Button/Button.js.map +1 -1
  1324. package/mobile/dist/ui-kit/Button/ButtonInner.js +3 -2
  1325. package/mobile/dist/ui-kit/Button/ButtonInner.js.map +1 -1
  1326. package/mobile/dist/ui-kit/Button/ButtonProps.d.ts +1 -7
  1327. package/mobile/dist/ui-kit/Button/ButtonSection.js +5 -10
  1328. package/mobile/dist/ui-kit/Button/ButtonSection.js.map +1 -1
  1329. package/mobile/dist/ui-kit/Button/buttonClassNameConstants.d.ts +1 -0
  1330. package/mobile/dist/ui-kit/Button/buttonClassNameConstants.js +7 -1
  1331. package/mobile/dist/ui-kit/Button/buttonClassNameConstants.js.map +1 -1
  1332. package/mobile/dist/ui-kit/CurrencyInput/CurrencyInput.js +7 -1
  1333. package/mobile/dist/ui-kit/CurrencyInput/CurrencyInput.js.map +1 -1
  1334. package/mobile/dist/ui-kit/CurrencyInput/adjustValue .d.ts +2 -0
  1335. package/mobile/dist/ui-kit/CurrencyInput/adjustValue .js +11 -2
  1336. package/mobile/dist/ui-kit/CurrencyInput/adjustValue .js.map +1 -1
  1337. package/mobile/dist/ui-kit/Foldable/DefaultFoldButton.d.ts +14 -0
  1338. package/mobile/dist/ui-kit/Foldable/DefaultFoldButton.js +16 -0
  1339. package/mobile/dist/ui-kit/Foldable/DefaultFoldButton.js.map +1 -0
  1340. package/mobile/dist/ui-kit/Foldable/Foldable.d.ts +5 -18
  1341. package/mobile/dist/ui-kit/Foldable/Foldable.js +9 -17
  1342. package/mobile/dist/ui-kit/Foldable/Foldable.js.map +1 -1
  1343. package/mobile/dist/ui-kit/Foldable/FoldablePartProps.d.ts +4 -0
  1344. package/mobile/dist/ui-kit/Foldable/FoldablePartProps.js +2 -0
  1345. package/mobile/dist/ui-kit/Foldable/FoldablePartProps.js.map +1 -0
  1346. package/mobile/dist/ui-kit/Foldable/FoldableSection.d.ts +5 -0
  1347. package/mobile/dist/ui-kit/Foldable/FoldableSection.js +17 -0
  1348. package/mobile/dist/ui-kit/Foldable/FoldableSection.js.map +1 -0
  1349. package/mobile/dist/ui-kit/Icon/Icon.js +4 -5
  1350. package/mobile/dist/ui-kit/Icon/Icon.js.map +1 -1
  1351. package/mobile/dist/ui-kit/Icon/IconProps.d.ts +0 -1
  1352. package/mobile/dist/ui-kit/Img/Img.js +1 -3
  1353. package/mobile/dist/ui-kit/Img/Img.js.map +1 -1
  1354. package/mobile/dist/ui-kit/InnerTable/InnerTableBody.js +1 -1
  1355. package/mobile/dist/ui-kit/InnerTable/InnerTableBody.js.map +1 -1
  1356. package/mobile/dist/ui-kit/InnerTable/InnerTableBodyItem.js +6 -2
  1357. package/mobile/dist/ui-kit/InnerTable/InnerTableBodyItem.js.map +1 -1
  1358. package/mobile/dist/ui-kit/InnerTable/InnerTableButton.js +1 -1
  1359. package/mobile/dist/ui-kit/InnerTable/InnerTableButton.js.map +1 -1
  1360. package/mobile/dist/ui-kit/InnerTable/InnerTableHeader.js +1 -1
  1361. package/mobile/dist/ui-kit/InnerTable/InnerTableHeader.js.map +1 -1
  1362. package/mobile/dist/ui-kit/Input/Input.js +12 -3
  1363. package/mobile/dist/ui-kit/Input/Input.js.map +1 -1
  1364. package/mobile/dist/ui-kit/Input/InputProps.d.ts +2 -0
  1365. package/mobile/dist/ui-kit/InputRange/InputRange.js +2 -2
  1366. package/mobile/dist/ui-kit/InputRange/InputRange.js.map +1 -1
  1367. package/mobile/dist/ui-kit/IntersectionObserverTag.d.ts +11 -0
  1368. package/mobile/dist/ui-kit/IntersectionObserverTag.js +22 -0
  1369. package/mobile/dist/ui-kit/IntersectionObserverTag.js.map +1 -0
  1370. package/mobile/dist/ui-kit/List/List.js +13 -8
  1371. package/mobile/dist/ui-kit/List/List.js.map +1 -1
  1372. package/mobile/dist/ui-kit/List/ListItem.d.ts +2 -2
  1373. package/mobile/dist/ui-kit/List/ListItem.js +8 -23
  1374. package/mobile/dist/ui-kit/List/ListItem.js.map +1 -1
  1375. package/mobile/dist/ui-kit/List/ListProps.d.ts +5 -3
  1376. package/mobile/dist/ui-kit/Radio/Radio.js +1 -1
  1377. package/mobile/dist/ui-kit/Radio/Radio.js.map +1 -1
  1378. package/mobile/dist/ui-kit/Select/Select.js +4 -1
  1379. package/mobile/dist/ui-kit/Select/Select.js.map +1 -1
  1380. package/mobile/dist/utils/getSanitizedValue.d.ts +1 -0
  1381. package/mobile/dist/utils/getSanitizedValue.js +5 -0
  1382. package/mobile/dist/utils/getSanitizedValue.js.map +1 -0
  1383. package/mobile/lib/components/Accordion/Accordion.js +5 -2
  1384. package/mobile/lib/components/Accordion/Accordion.js.map +1 -1
  1385. package/mobile/lib/components/Accordion/AccordionContent.d.ts +9 -7
  1386. package/mobile/lib/components/Accordion/AccordionItem.d.ts +1 -4
  1387. package/mobile/lib/components/Accordion/AccordionItem.js +7 -8
  1388. package/mobile/lib/components/Accordion/AccordionItem.js.map +1 -1
  1389. package/mobile/lib/components/Accordion/AccordionItemProps.d.ts +5 -0
  1390. package/mobile/lib/components/Accordion/AccordionItemProps.js +2 -0
  1391. package/mobile/lib/components/Accordion/AccordionItemProps.js.map +1 -0
  1392. package/mobile/lib/components/Accordion/AccordionItemsList.d.ts +1 -0
  1393. package/mobile/lib/components/Accordion/AccordionItemsList.js +4 -0
  1394. package/mobile/lib/components/Accordion/AccordionItemsList.js.map +1 -0
  1395. package/mobile/lib/components/BenefitsBlock/BenefitsBlock.js +1 -1
  1396. package/mobile/lib/components/BenefitsBlock/BenefitsBlock.js.map +1 -1
  1397. package/mobile/lib/components/Blocks.d.ts +0 -1
  1398. package/mobile/lib/components/Blocks.js +0 -2
  1399. package/mobile/lib/components/Blocks.js.map +1 -1
  1400. package/mobile/lib/components/Calculator/CalculatorContent.d.ts +1 -1
  1401. package/mobile/lib/components/CardTransfer/CardTransfer.js +3 -2
  1402. package/mobile/lib/components/CardTransfer/CardTransfer.js.map +1 -1
  1403. package/mobile/lib/components/Catalog/Catalog.js +1 -1
  1404. package/mobile/lib/components/Catalog/Catalog.js.map +1 -1
  1405. package/mobile/lib/components/Catalog/CatalogCard.js +1 -23
  1406. package/mobile/lib/components/Catalog/CatalogCard.js.map +1 -1
  1407. package/mobile/lib/components/ComparisonTable/ComparisonTable.js +14 -49
  1408. package/mobile/lib/components/ComparisonTable/ComparisonTable.js.map +1 -1
  1409. package/mobile/lib/components/ComparisonTable/TableColumn.d.ts +5 -8
  1410. package/mobile/lib/components/ComparisonTable/TableColumn.js +2 -8
  1411. package/mobile/lib/components/ComparisonTable/TableColumn.js.map +1 -1
  1412. package/mobile/lib/components/ContentPage/ContentPageContext.d.ts +0 -11
  1413. package/mobile/lib/components/ContentPage/filterBlocks.js +1 -3
  1414. package/mobile/lib/components/ContentPage/filterBlocks.js.map +1 -1
  1415. package/mobile/lib/components/ContentPage/renderBlock.js +2 -2
  1416. package/mobile/lib/components/ContentPage/renderBlock.js.map +1 -1
  1417. package/mobile/lib/components/ErrorBlock/ErrorBlock.js +1 -1
  1418. package/mobile/lib/components/ErrorBlock/ErrorBlock.js.map +1 -1
  1419. package/mobile/lib/components/ExchangeRateTile/renderInput.js +1 -1
  1420. package/mobile/lib/components/ExchangeRateTile/renderInput.js.map +1 -1
  1421. package/mobile/lib/components/Footer/Contacts.js +1 -1
  1422. package/mobile/lib/components/Footer/Contacts.js.map +1 -1
  1423. package/mobile/lib/components/Footer/Footer.js +8 -7
  1424. package/mobile/lib/components/Footer/Footer.js.map +1 -1
  1425. package/mobile/lib/components/Footer/FooterContent.d.ts +5 -9
  1426. package/mobile/lib/components/Gallery/Gallery.js +7 -3
  1427. package/mobile/lib/components/Gallery/Gallery.js.map +1 -1
  1428. package/mobile/lib/components/Gallery/GalleryCardInner.js +15 -18
  1429. package/mobile/lib/components/Gallery/GalleryCardInner.js.map +1 -1
  1430. package/mobile/lib/components/Gallery/GalleryContainer.js +2 -2
  1431. package/mobile/lib/components/Gallery/GalleryContainer.js.map +1 -1
  1432. package/mobile/lib/components/Gallery/GalleryContent.d.ts +11 -3
  1433. package/mobile/lib/components/Header/Header.js +5 -5
  1434. package/mobile/lib/components/Header/Header.js.map +1 -1
  1435. package/mobile/lib/components/Header/HeaderSubMenu.js +2 -1
  1436. package/mobile/lib/components/Header/HeaderSubMenu.js.map +1 -1
  1437. package/mobile/lib/components/Headline/constants.d.ts +2 -1
  1438. package/mobile/lib/components/Headline/constants.js +9 -0
  1439. package/mobile/lib/components/Headline/constants.js.map +1 -1
  1440. package/mobile/lib/components/InvestmentInfo/InvestmentInfo.d.ts +5 -0
  1441. package/mobile/lib/components/InvestmentInfo/InvestmentInfo.js +47 -0
  1442. package/mobile/lib/components/InvestmentInfo/InvestmentInfo.js.map +1 -0
  1443. package/mobile/lib/components/InvestmentInfo/InvestmentInfoContent.d.ts +49 -0
  1444. package/mobile/lib/components/InvestmentInfo/InvestmentInfoContent.js +2 -0
  1445. package/mobile/lib/components/InvestmentInfo/InvestmentInfoContent.js.map +1 -0
  1446. package/mobile/lib/components/MiniGallery/MiniGalleryContent.d.ts +1 -0
  1447. package/mobile/lib/components/OtherProducts/OtherProductsItem.js +5 -5
  1448. package/mobile/lib/components/OtherProducts/OtherProductsItem.js.map +1 -1
  1449. package/mobile/lib/components/ProductTile/ProductTile.js +1 -1
  1450. package/mobile/lib/components/ProductTile/ProductTile.js.map +1 -1
  1451. package/mobile/lib/components/Recommendation/RecommendationContent.d.ts +5 -0
  1452. package/mobile/lib/components/SafeDepositRental/RegionsAndBranches.d.ts +1 -1
  1453. package/mobile/lib/components/SafeDepositRental/SafeBoxCases.d.ts +1 -1
  1454. package/mobile/lib/components/SafeDepositRental/SafeDepositRental.d.ts +1 -1
  1455. package/mobile/lib/components/SafeDepositRental/SafeDepositRental.js +18 -4
  1456. package/mobile/lib/components/SafeDepositRental/SafeDepositRental.js.map +1 -1
  1457. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalFields.d.ts +7 -4
  1458. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalFields.js +3 -5
  1459. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalFields.js.map +1 -1
  1460. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalForm.d.ts +7 -3
  1461. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalForm.js +9 -30
  1462. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalForm.js.map +1 -1
  1463. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +1 -1
  1464. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +0 -2
  1465. package/mobile/lib/components/SafeDepositRental/utils.d.ts +1 -1
  1466. package/mobile/lib/components/StepsBlock/StepsBlockContent.d.ts +9 -2
  1467. package/mobile/lib/components/StepsBlock/StepsBlockStyleMaps.d.ts +1 -0
  1468. package/mobile/lib/components/StepsBlock/StepsBlockStyleMaps.js +4 -2
  1469. package/mobile/lib/components/StepsBlock/StepsBlockStyleMaps.js.map +1 -1
  1470. package/mobile/lib/components/StepsBlock/renderItems.d.ts +8 -0
  1471. package/mobile/lib/components/StepsBlock/renderItems.js +7 -0
  1472. package/mobile/lib/components/StepsBlock/renderItems.js.map +1 -0
  1473. package/mobile/lib/components/StepsBlock/renderStepContent.d.ts +14 -0
  1474. package/mobile/lib/components/StepsBlock/renderStepContent.js +17 -0
  1475. package/mobile/lib/components/StepsBlock/renderStepContent.js.map +1 -0
  1476. package/mobile/lib/components/TariffsTable/EmbeddableCellData.js +1 -2
  1477. package/mobile/lib/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  1478. package/mobile/lib/components/TariffsTable/TariffsTableCell.js +1 -1
  1479. package/mobile/lib/components/TariffsTable/TariffsTableCell.js.map +1 -1
  1480. package/mobile/lib/components/TariffsTable/TariffsTableRow.js +1 -2
  1481. package/mobile/lib/components/TariffsTable/TariffsTableRow.js.map +1 -1
  1482. package/mobile/lib/components/TariffsTable/dataFixture.js +4 -2
  1483. package/mobile/lib/components/TariffsTable/dataFixture.js.map +1 -1
  1484. package/mobile/lib/components/TariffsTable/utils/getButtonAriaLabel.d.ts +1 -1
  1485. package/mobile/lib/components/TariffsTable/utils/getButtonAriaLabel.js +1 -2
  1486. package/mobile/lib/components/TariffsTable/utils/getButtonAriaLabel.js.map +1 -1
  1487. package/mobile/lib/components/Tile/Tile.js +2 -3
  1488. package/mobile/lib/components/Tile/Tile.js.map +1 -1
  1489. package/mobile/lib/hooks/useOutsideClick.d.ts +5 -0
  1490. package/mobile/lib/hooks/useOutsideClick.js +18 -0
  1491. package/mobile/lib/hooks/useOutsideClick.js.map +1 -0
  1492. package/mobile/lib/hooks/useSafeBoxes.d.ts +20 -0
  1493. package/mobile/lib/hooks/{useFetchSafeBoxes.js → useSafeBoxes.js} +7 -8
  1494. package/mobile/lib/hooks/useSafeBoxes.js.map +1 -0
  1495. package/mobile/lib/icons/IconName.d.ts +1 -92
  1496. package/mobile/lib/icons/IconName.js +3 -3
  1497. package/mobile/lib/icons/IconName.js.map +1 -1
  1498. package/mobile/lib/model/BlockDecorator.d.ts +1 -0
  1499. package/mobile/lib/model/BlockDecorator.js +1 -0
  1500. package/mobile/lib/model/BlockDecorator.js.map +1 -1
  1501. package/mobile/lib/model/BlocksRegistry.d.ts +4 -1
  1502. package/mobile/lib/model/HeadlineType.d.ts +8 -0
  1503. package/mobile/lib/model/Picture.d.ts +1 -0
  1504. package/mobile/lib/react/setup-fixture.js +0 -2
  1505. package/mobile/lib/react/setup-fixture.js.map +1 -1
  1506. package/mobile/lib/ui-kit/BenefitItem/BenefitItem.js +3 -1
  1507. package/mobile/lib/ui-kit/BenefitItem/BenefitItem.js.map +1 -1
  1508. package/mobile/lib/ui-kit/BlockWrapper.d.ts +0 -3
  1509. package/mobile/lib/ui-kit/BlockWrapper.js +4 -4
  1510. package/mobile/lib/ui-kit/BlockWrapper.js.map +1 -1
  1511. package/mobile/lib/ui-kit/BlocksList/renderBlocksList.d.ts +1 -1
  1512. package/mobile/lib/ui-kit/BlocksList/renderBlocksList.js +1 -1
  1513. package/mobile/lib/ui-kit/BlocksList/renderBlocksList.js.map +1 -1
  1514. package/mobile/lib/ui-kit/Button/Button.js +1 -1
  1515. package/mobile/lib/ui-kit/Button/Button.js.map +1 -1
  1516. package/mobile/lib/ui-kit/Button/ButtonInner.js +3 -2
  1517. package/mobile/lib/ui-kit/Button/ButtonInner.js.map +1 -1
  1518. package/mobile/lib/ui-kit/Button/ButtonProps.d.ts +1 -7
  1519. package/mobile/lib/ui-kit/Button/ButtonSection.js +5 -10
  1520. package/mobile/lib/ui-kit/Button/ButtonSection.js.map +1 -1
  1521. package/mobile/lib/ui-kit/Button/buttonClassNameConstants.d.ts +1 -0
  1522. package/mobile/lib/ui-kit/Button/buttonClassNameConstants.js +6 -0
  1523. package/mobile/lib/ui-kit/Button/buttonClassNameConstants.js.map +1 -1
  1524. package/mobile/lib/ui-kit/CurrencyInput/CurrencyInput.js +8 -2
  1525. package/mobile/lib/ui-kit/CurrencyInput/CurrencyInput.js.map +1 -1
  1526. package/mobile/lib/ui-kit/CurrencyInput/adjustValue .d.ts +2 -0
  1527. package/mobile/lib/ui-kit/CurrencyInput/adjustValue .js +9 -2
  1528. package/mobile/lib/ui-kit/CurrencyInput/adjustValue .js.map +1 -1
  1529. package/mobile/lib/ui-kit/Foldable/DefaultFoldButton.d.ts +14 -0
  1530. package/mobile/lib/ui-kit/Foldable/DefaultFoldButton.js +13 -0
  1531. package/mobile/lib/ui-kit/Foldable/DefaultFoldButton.js.map +1 -0
  1532. package/mobile/lib/ui-kit/Foldable/Foldable.d.ts +5 -18
  1533. package/mobile/lib/ui-kit/Foldable/Foldable.js +10 -18
  1534. package/mobile/lib/ui-kit/Foldable/Foldable.js.map +1 -1
  1535. package/mobile/lib/ui-kit/Foldable/FoldablePartProps.d.ts +4 -0
  1536. package/mobile/lib/ui-kit/Foldable/FoldablePartProps.js +2 -0
  1537. package/mobile/lib/ui-kit/Foldable/FoldablePartProps.js.map +1 -0
  1538. package/mobile/lib/ui-kit/Foldable/FoldableSection.d.ts +5 -0
  1539. package/mobile/lib/ui-kit/Foldable/FoldableSection.js +15 -0
  1540. package/mobile/lib/ui-kit/Foldable/FoldableSection.js.map +1 -0
  1541. package/mobile/lib/ui-kit/Icon/Icon.js +4 -5
  1542. package/mobile/lib/ui-kit/Icon/Icon.js.map +1 -1
  1543. package/mobile/lib/ui-kit/Icon/IconProps.d.ts +0 -1
  1544. package/mobile/lib/ui-kit/Img/Img.js +1 -3
  1545. package/mobile/lib/ui-kit/Img/Img.js.map +1 -1
  1546. package/mobile/lib/ui-kit/InnerTable/InnerTableBody.js +1 -1
  1547. package/mobile/lib/ui-kit/InnerTable/InnerTableBody.js.map +1 -1
  1548. package/mobile/lib/ui-kit/InnerTable/InnerTableBodyItem.js +6 -2
  1549. package/mobile/lib/ui-kit/InnerTable/InnerTableBodyItem.js.map +1 -1
  1550. package/mobile/lib/ui-kit/InnerTable/InnerTableButton.js +1 -1
  1551. package/mobile/lib/ui-kit/InnerTable/InnerTableButton.js.map +1 -1
  1552. package/mobile/lib/ui-kit/InnerTable/InnerTableHeader.js +1 -1
  1553. package/mobile/lib/ui-kit/InnerTable/InnerTableHeader.js.map +1 -1
  1554. package/mobile/lib/ui-kit/Input/Input.js +12 -3
  1555. package/mobile/lib/ui-kit/Input/Input.js.map +1 -1
  1556. package/mobile/lib/ui-kit/Input/InputProps.d.ts +2 -0
  1557. package/mobile/lib/ui-kit/InputRange/InputRange.js +2 -2
  1558. package/mobile/lib/ui-kit/InputRange/InputRange.js.map +1 -1
  1559. package/mobile/lib/ui-kit/IntersectionObserverTag.d.ts +11 -0
  1560. package/mobile/lib/ui-kit/IntersectionObserverTag.js +20 -0
  1561. package/mobile/lib/ui-kit/IntersectionObserverTag.js.map +1 -0
  1562. package/mobile/lib/ui-kit/List/List.js +13 -8
  1563. package/mobile/lib/ui-kit/List/List.js.map +1 -1
  1564. package/mobile/lib/ui-kit/List/ListItem.d.ts +2 -2
  1565. package/mobile/lib/ui-kit/List/ListItem.js +7 -21
  1566. package/mobile/lib/ui-kit/List/ListItem.js.map +1 -1
  1567. package/mobile/lib/ui-kit/List/ListProps.d.ts +5 -3
  1568. package/mobile/lib/ui-kit/Radio/Radio.js +1 -1
  1569. package/mobile/lib/ui-kit/Radio/Radio.js.map +1 -1
  1570. package/mobile/lib/ui-kit/Select/Select.js +5 -2
  1571. package/mobile/lib/ui-kit/Select/Select.js.map +1 -1
  1572. package/mobile/lib/utils/getSanitizedValue.d.ts +1 -0
  1573. package/mobile/lib/utils/getSanitizedValue.js +2 -0
  1574. package/mobile/lib/utils/getSanitizedValue.js.map +1 -0
  1575. package/mobile/src/common.css +11 -3
  1576. package/mobile/src/components/Accordion/Accordion.tsx +17 -7
  1577. package/mobile/src/components/Accordion/AccordionContent.ts +10 -7
  1578. package/mobile/src/components/Accordion/AccordionItem.tsx +61 -33
  1579. package/mobile/src/components/Accordion/AccordionItemProps.ts +6 -0
  1580. package/mobile/src/components/Accordion/AccordionItemsList.tsx +5 -0
  1581. package/mobile/src/components/BenefitsBlock/BenefitsBlock.tsx +1 -1
  1582. package/mobile/src/components/Blocks.ts +0 -2
  1583. package/mobile/src/components/Calculator/CalculatorContent.ts +1 -1
  1584. package/mobile/src/components/CardTransfer/CardTransfer.tsx +3 -1
  1585. package/mobile/src/components/Catalog/Catalog.tsx +2 -2
  1586. package/mobile/src/components/Catalog/CatalogCard.tsx +1 -35
  1587. package/mobile/src/components/ComparisonTable/ComparisonTable.tsx +49 -120
  1588. package/mobile/src/components/ComparisonTable/TableColumn.tsx +25 -27
  1589. package/mobile/src/components/ContentPage/ContentPageContext.tsx +0 -14
  1590. package/mobile/src/components/ContentPage/filterBlocks.ts +1 -3
  1591. package/mobile/src/components/ContentPage/renderBlock.tsx +2 -2
  1592. package/mobile/src/components/ErrorBlock/ErrorBlock.tsx +1 -3
  1593. package/mobile/src/components/ExchangeRateTile/ExchangeRateTile.ui.json +8 -1
  1594. package/mobile/src/components/ExchangeRateTile/renderInput.tsx +1 -1
  1595. package/mobile/src/components/Footer/Contacts.tsx +1 -0
  1596. package/mobile/src/components/Footer/Footer.tsx +15 -13
  1597. package/mobile/src/components/Footer/FooterContent.ts +5 -10
  1598. package/mobile/src/components/Gallery/Gallery.tsx +15 -5
  1599. package/mobile/src/components/Gallery/GalleryCardInner.tsx +60 -44
  1600. package/mobile/src/components/Gallery/GalleryContainer.tsx +10 -2
  1601. package/mobile/src/components/Gallery/GalleryContent.ts +11 -3
  1602. package/mobile/src/components/GracePeriod/GracePeriod.ui.json +5 -0
  1603. package/mobile/src/components/Header/Header.tsx +16 -11
  1604. package/mobile/src/components/Header/HeaderSubMenu.tsx +2 -1
  1605. package/mobile/src/components/Headline/constants.ts +11 -1
  1606. package/mobile/src/components/InvestmentInfo/InvestmentInfo.example.json +48 -0
  1607. package/mobile/src/components/InvestmentInfo/InvestmentInfo.tsx +149 -0
  1608. package/mobile/src/components/InvestmentInfo/InvestmentInfo.ui.json +16 -0
  1609. package/mobile/src/components/InvestmentInfo/InvestmentInfoContent.ts +55 -0
  1610. package/mobile/src/components/MiniGallery/MiniGalleryContent.ts +1 -0
  1611. package/mobile/src/components/OtherProducts/OtherProductsItem.tsx +26 -14
  1612. package/mobile/src/components/ProductTile/ProductTile.tsx +3 -3
  1613. package/mobile/src/components/Recommendation/RecommendationContent.ts +5 -0
  1614. package/mobile/src/components/SafeDepositRental/RegionsAndBranches.tsx +1 -1
  1615. package/mobile/src/components/SafeDepositRental/SafeBoxCases.tsx +1 -1
  1616. package/mobile/src/components/SafeDepositRental/SafeDepositRental.tsx +34 -7
  1617. package/mobile/src/components/SafeDepositRental/SafeDepositRental.ui.json +8 -1
  1618. package/mobile/src/components/SafeDepositRental/SafeDepositRentalFields.tsx +13 -21
  1619. package/mobile/src/components/SafeDepositRental/SafeDepositRentalForm.tsx +21 -49
  1620. package/mobile/src/components/SafeDepositRental/SafeDepositRentalTotal.tsx +1 -1
  1621. package/mobile/src/components/SafeDepositRental/SafeDepositRentalTypes.ts +0 -3
  1622. package/mobile/src/components/SafeDepositRental/utils.ts +1 -1
  1623. package/mobile/src/components/StepsBlock/StepsBlock.ui.json +8 -0
  1624. package/mobile/src/components/StepsBlock/StepsBlockContent.ts +9 -2
  1625. package/mobile/src/components/StepsBlock/StepsBlockStyleMaps.ts +5 -2
  1626. package/mobile/src/components/StepsBlock/renderItems.tsx +26 -0
  1627. package/mobile/src/components/StepsBlock/renderStepContent.tsx +63 -0
  1628. package/mobile/src/components/TariffsTable/EmbeddableCellData.tsx +4 -8
  1629. package/mobile/src/components/TariffsTable/TariffsTableCell.tsx +1 -1
  1630. package/mobile/src/components/TariffsTable/TariffsTableRow.tsx +1 -4
  1631. package/mobile/src/components/TariffsTable/{dataFixture.ts → dataFixture.tsx} +3 -2
  1632. package/mobile/src/components/TariffsTable/utils/getButtonAriaLabel.ts +1 -3
  1633. package/mobile/src/components/Tile/Tile.tsx +3 -5
  1634. package/mobile/src/hooks/useOutsideClick.ts +25 -0
  1635. package/mobile/src/hooks/{useFetchSafeBoxes.ts → useSafeBoxes.ts} +7 -8
  1636. package/mobile/src/icons/IconName.ts +3 -3
  1637. package/mobile/src/model/BlockDecorator.ts +2 -0
  1638. package/mobile/src/model/BlocksRegistry.ts +4 -1
  1639. package/mobile/src/model/HeadlineType.ts +10 -0
  1640. package/mobile/src/model/Picture.ts +1 -0
  1641. package/mobile/src/react/setup-fixture.ts +0 -2
  1642. package/mobile/src/ui-kit/BenefitItem/BenefitItem.tsx +5 -5
  1643. package/mobile/src/ui-kit/BlockWrapper.tsx +5 -9
  1644. package/mobile/src/ui-kit/BlocksList/renderBlocksList.tsx +1 -1
  1645. package/mobile/src/ui-kit/Button/Button.tsx +1 -1
  1646. package/mobile/src/ui-kit/Button/ButtonInner.tsx +4 -3
  1647. package/mobile/src/ui-kit/Button/ButtonProps.ts +1 -7
  1648. package/mobile/src/ui-kit/Button/ButtonSection.tsx +19 -41
  1649. package/mobile/src/ui-kit/Button/buttonClassNameConstants.ts +7 -0
  1650. package/mobile/src/ui-kit/CurrencyInput/CurrencyInput.tsx +19 -3
  1651. package/mobile/src/ui-kit/CurrencyInput/adjustValue .ts +13 -2
  1652. package/mobile/src/ui-kit/Foldable/DefaultFoldButton.tsx +52 -0
  1653. package/mobile/src/ui-kit/Foldable/Foldable.tsx +26 -78
  1654. package/mobile/src/ui-kit/Foldable/FoldablePartProps.ts +4 -0
  1655. package/mobile/src/ui-kit/Foldable/FoldableSection.tsx +30 -0
  1656. package/mobile/src/ui-kit/Icon/Icon.tsx +5 -6
  1657. package/mobile/src/ui-kit/Icon/IconProps.ts +0 -1
  1658. package/mobile/src/ui-kit/Img/Img.tsx +1 -13
  1659. package/mobile/src/ui-kit/InnerTable/InnerTableBody.tsx +1 -1
  1660. package/mobile/src/ui-kit/InnerTable/InnerTableBodyItem.tsx +14 -5
  1661. package/mobile/src/ui-kit/InnerTable/InnerTableButton.tsx +1 -1
  1662. package/mobile/src/ui-kit/InnerTable/InnerTableHeader.tsx +4 -3
  1663. package/mobile/src/ui-kit/Input/Input.tsx +18 -2
  1664. package/mobile/src/ui-kit/Input/InputProps.ts +2 -0
  1665. package/mobile/src/ui-kit/InputRange/InputRange.tsx +2 -3
  1666. package/mobile/src/ui-kit/IntersectionObserverTag.tsx +49 -0
  1667. package/mobile/src/ui-kit/List/List.tsx +29 -18
  1668. package/mobile/src/ui-kit/List/ListItem.tsx +14 -26
  1669. package/mobile/src/ui-kit/List/ListProps.ts +5 -3
  1670. package/mobile/src/ui-kit/Radio/Radio.tsx +3 -2
  1671. package/mobile/src/ui-kit/Select/Select.tsx +8 -3
  1672. package/mobile/src/utils/getSanitizedValue.ts +1 -0
  1673. package/package.json +3 -3
  1674. package/src/common.css +11 -3
  1675. package/src/components/Accordion/Accordion.mobile.tsx +17 -7
  1676. package/src/components/Accordion/Accordion.tsx +12 -3
  1677. package/src/components/Accordion/AccordionContent.ts +10 -7
  1678. package/src/components/Accordion/AccordionItem.mobile.tsx +61 -33
  1679. package/src/components/Accordion/AccordionItem.tsx +45 -33
  1680. package/src/components/Accordion/AccordionItemProps.ts +6 -0
  1681. package/src/components/Accordion/AccordionItemsList.tsx +5 -0
  1682. package/src/components/BenefitsBlock/BenefitsBlock.fixture.tsx +4 -4
  1683. package/src/components/BenefitsBlock/BenefitsBlock.tsx +1 -1
  1684. package/src/components/Blocks.mobile.ts +0 -2
  1685. package/src/components/Blocks.ts +2 -0
  1686. package/src/components/Calculator/CalculatorContent.ts +1 -1
  1687. package/src/components/CardTransfer/CardTransfer.tsx +3 -1
  1688. package/src/components/Catalog/Catalog.fixture.tsx +10 -3
  1689. package/src/components/Catalog/Catalog.tsx +2 -2
  1690. package/src/components/Catalog/CatalogCard.tsx +1 -35
  1691. package/src/components/ComparisonTable/ComparisonTable.mobile.tsx +49 -120
  1692. package/src/components/ComparisonTable/ComparisonTable.tsx +1 -1
  1693. package/src/components/ComparisonTable/TableCell.tsx +2 -2
  1694. package/src/components/ComparisonTable/TableColumn.tsx +25 -27
  1695. package/src/components/ContentPage/ContentPageContext.tsx +0 -14
  1696. package/src/components/ContentPage/filterBlocks.mobile.ts +1 -3
  1697. package/src/components/ContentPage/filterBlocks.ts +1 -2
  1698. package/src/components/ContentPage/renderBlock.tsx +2 -2
  1699. package/src/components/ErrorBlock/ErrorBlock.tsx +1 -3
  1700. package/src/components/ExchangeRateTile/ExchangeRateTile.ui.json +8 -1
  1701. package/src/components/ExchangeRateTile/renderInput.tsx +1 -1
  1702. package/src/components/Footer/Contacts.tsx +1 -0
  1703. package/src/components/Footer/Footer.mobile.tsx +15 -13
  1704. package/src/components/Footer/FooterContent.ts +5 -10
  1705. package/src/components/Gallery/Gallery.fixture.tsx +2 -2
  1706. package/src/components/Gallery/Gallery.mobile.tsx +15 -5
  1707. package/src/components/Gallery/GalleryCardInner.tsx +60 -44
  1708. package/src/components/Gallery/GalleryContainer.tsx +10 -2
  1709. package/src/components/Gallery/GalleryContent.ts +11 -3
  1710. package/src/components/GracePeriod/GracePeriod.ui.json +5 -0
  1711. package/src/components/Header/Header.mobile.tsx +16 -11
  1712. package/src/components/Header/HeaderSubMenu.tsx +2 -1
  1713. package/src/components/Headline/constants.ts +11 -1
  1714. package/src/components/InvestmentInfo/InvestmentInfo.example.json +48 -0
  1715. package/src/components/InvestmentInfo/InvestmentInfo.fixture.tsx +107 -0
  1716. package/src/components/InvestmentInfo/InvestmentInfo.tsx +149 -0
  1717. package/src/components/InvestmentInfo/InvestmentInfo.ui.json +16 -0
  1718. package/src/components/InvestmentInfo/InvestmentInfoContent.ts +55 -0
  1719. package/src/components/MiniGallery/MiniGallery.fixture.tsx +45 -0
  1720. package/src/components/MiniGallery/MiniGalleryContent.ts +1 -0
  1721. package/src/components/MobileAppTile/MobileAppTile.fixture.tsx +14 -4
  1722. package/src/components/MobileAppTile/MobileAppTile.tsx +3 -6
  1723. package/src/components/OtherProducts/OtherProductsItem.tsx +26 -14
  1724. package/src/components/ProductGallery/ProductGallery.tsx +2 -2
  1725. package/src/components/ProductTile/ProductTile.tsx +3 -3
  1726. package/src/components/Recommendation/RecommendationContent.ts +5 -0
  1727. package/src/components/SafeDepositRental/RegionsAndBranches.tsx +1 -1
  1728. package/src/components/SafeDepositRental/SafeBoxCases.tsx +1 -1
  1729. package/src/components/SafeDepositRental/SafeDepositRental.tsx +34 -7
  1730. package/src/components/SafeDepositRental/SafeDepositRental.ui.json +8 -1
  1731. package/src/components/SafeDepositRental/SafeDepositRentalFields.tsx +13 -21
  1732. package/src/components/SafeDepositRental/SafeDepositRentalForm.tsx +21 -49
  1733. package/src/components/SafeDepositRental/SafeDepositRentalTotal.tsx +1 -1
  1734. package/src/components/SafeDepositRental/SafeDepositRentalTypes.ts +0 -3
  1735. package/src/components/SafeDepositRental/utils.ts +1 -1
  1736. package/src/components/StepsBlock/StepsBlock.fixture.tsx +48 -6
  1737. package/src/components/StepsBlock/StepsBlock.tsx +8 -49
  1738. package/src/components/StepsBlock/StepsBlock.ui.json +8 -0
  1739. package/src/components/StepsBlock/StepsBlockContent.ts +9 -2
  1740. package/src/components/StepsBlock/StepsBlockStyleMaps.ts +5 -2
  1741. package/src/components/StepsBlock/renderItems.tsx +26 -0
  1742. package/src/components/StepsBlock/renderStepContent.tsx +63 -0
  1743. package/src/components/TariffsTable/EmbeddableCellData.mobile.tsx +4 -8
  1744. package/src/components/TariffsTable/EmbeddableCellData.tsx +5 -10
  1745. package/src/components/TariffsTable/TariffsTable.tsx +32 -25
  1746. package/src/components/TariffsTable/TariffsTableCell.tsx +1 -1
  1747. package/src/components/TariffsTable/TariffsTableRow.tsx +1 -4
  1748. package/src/components/TariffsTable/{dataFixture.ts → dataFixture.tsx} +3 -2
  1749. package/src/components/TariffsTable/utils/getButtonAriaLabel.ts +1 -3
  1750. package/src/components/Tile/Tile.tsx +3 -5
  1751. package/src/hooks/useOutsideClick.ts +25 -0
  1752. package/src/hooks/{useFetchSafeBoxes.ts → useSafeBoxes.ts} +7 -8
  1753. package/src/icons/IconName.ts +34 -92
  1754. package/src/model/BlockDecorator.ts +2 -0
  1755. package/src/model/BlocksRegistry.ts +4 -1
  1756. package/src/model/HeadlineType.ts +10 -0
  1757. package/src/model/Picture.ts +1 -0
  1758. package/src/react/setup-fixture.ts +0 -2
  1759. package/src/ui-kit/BenefitItem/BenefitItem.tsx +5 -5
  1760. package/src/ui-kit/BlockWrapper.tsx +5 -9
  1761. package/src/ui-kit/BlocksList/renderBlocksList.tsx +1 -1
  1762. package/src/ui-kit/Button/Button.mobile.tsx +1 -1
  1763. package/src/ui-kit/Button/Button.tsx +55 -27
  1764. package/src/ui-kit/Button/ButtonInner.tsx +4 -3
  1765. package/src/ui-kit/Button/ButtonProps.ts +1 -7
  1766. package/src/ui-kit/Button/ButtonSection.tsx +19 -41
  1767. package/src/ui-kit/Button/buttonClassNameConstants.ts +7 -0
  1768. package/src/ui-kit/CurrencyInput/CurrencyInput.tsx +19 -3
  1769. package/src/ui-kit/CurrencyInput/adjustValue .ts +13 -2
  1770. package/src/ui-kit/Foldable/DefaultFoldButton.tsx +52 -0
  1771. package/src/ui-kit/Foldable/Foldable.tsx +26 -78
  1772. package/src/ui-kit/Foldable/FoldablePartProps.ts +4 -0
  1773. package/src/ui-kit/Foldable/FoldableSection.tsx +30 -0
  1774. package/src/ui-kit/Icon/Icon.tsx +5 -6
  1775. package/src/ui-kit/Icon/IconProps.ts +0 -1
  1776. package/src/ui-kit/Img/Img.mobile.tsx +1 -13
  1777. package/src/ui-kit/Img/Img.tsx +1 -17
  1778. package/src/ui-kit/InnerTable/InnerTableBody.tsx +1 -1
  1779. package/src/ui-kit/InnerTable/InnerTableBodyItem.tsx +14 -5
  1780. package/src/ui-kit/InnerTable/InnerTableButton.tsx +1 -1
  1781. package/src/ui-kit/InnerTable/InnerTableHeader.tsx +4 -3
  1782. package/src/ui-kit/Input/Input.tsx +18 -2
  1783. package/src/ui-kit/Input/InputProps.ts +2 -0
  1784. package/src/ui-kit/InputRange/InputRange.tsx +2 -3
  1785. package/src/ui-kit/IntersectionObserverTag.tsx +49 -0
  1786. package/src/ui-kit/List/List.fixture.tsx +1 -21
  1787. package/src/ui-kit/List/List.tsx +29 -18
  1788. package/src/ui-kit/List/ListItem.tsx +14 -26
  1789. package/src/ui-kit/List/ListProps.ts +5 -3
  1790. package/src/ui-kit/Radio/Radio.tsx +3 -2
  1791. package/src/ui-kit/Select/Select.tsx +8 -3
  1792. package/src/utils/getSanitizedValue.ts +1 -0
  1793. package/tailwind.config.cjs +6 -1
  1794. package/dist/components/Accordion/AccordionItemInner.d.ts +0 -2
  1795. package/dist/components/Accordion/AccordionItemInner.js +0 -9
  1796. package/dist/components/Accordion/AccordionItemInner.js.map +0 -1
  1797. package/dist/components/Accordion/AccordionItemInner.mobile.d.ts +0 -2
  1798. package/dist/components/Accordion/AccordionItemInner.mobile.js +0 -9
  1799. package/dist/components/Accordion/AccordionItemInner.mobile.js.map +0 -1
  1800. package/dist/components/Accordion/useActiveHandler.d.ts +0 -7
  1801. package/dist/components/Accordion/useActiveHandler.js +0 -22
  1802. package/dist/components/Accordion/useActiveHandler.js.map +0 -1
  1803. package/dist/components/ContentPage/isBlockInRegistry.d.ts +0 -2
  1804. package/dist/components/ContentPage/isBlockInRegistry.js +0 -7
  1805. package/dist/components/ContentPage/isBlockInRegistry.js.map +0 -1
  1806. package/dist/hooks/useFetchSafeBoxes.js.map +0 -1
  1807. package/dist/react/IntersectionObserverTag.d.ts +0 -2
  1808. package/dist/react/IntersectionObserverTag.js +0 -43
  1809. package/dist/react/IntersectionObserverTag.js.map +0 -1
  1810. package/dist/ui-kit/Foldable/useActiveHandler.d.ts +0 -9
  1811. package/dist/ui-kit/Foldable/useActiveHandler.js +0 -23
  1812. package/dist/ui-kit/Foldable/useActiveHandler.js.map +0 -1
  1813. package/dist/utils/getAccordionItems.d.ts +0 -1
  1814. package/dist/utils/getAccordionItems.js +0 -13
  1815. package/dist/utils/getAccordionItems.js.map +0 -1
  1816. package/lib/components/Accordion/AccordionItemInner.d.ts +0 -2
  1817. package/lib/components/Accordion/AccordionItemInner.js +0 -7
  1818. package/lib/components/Accordion/AccordionItemInner.js.map +0 -1
  1819. package/lib/components/Accordion/AccordionItemInner.mobile.d.ts +0 -2
  1820. package/lib/components/Accordion/AccordionItemInner.mobile.js +0 -7
  1821. package/lib/components/Accordion/AccordionItemInner.mobile.js.map +0 -1
  1822. package/lib/components/Accordion/useActiveHandler.d.ts +0 -7
  1823. package/lib/components/Accordion/useActiveHandler.js +0 -19
  1824. package/lib/components/Accordion/useActiveHandler.js.map +0 -1
  1825. package/lib/components/ContentPage/isBlockInRegistry.d.ts +0 -2
  1826. package/lib/components/ContentPage/isBlockInRegistry.js +0 -4
  1827. package/lib/components/ContentPage/isBlockInRegistry.js.map +0 -1
  1828. package/lib/hooks/useFetchSafeBoxes.js.map +0 -1
  1829. package/lib/react/IntersectionObserverTag.d.ts +0 -2
  1830. package/lib/react/IntersectionObserverTag.js +0 -17
  1831. package/lib/react/IntersectionObserverTag.js.map +0 -1
  1832. package/lib/ui-kit/Foldable/useActiveHandler.d.ts +0 -9
  1833. package/lib/ui-kit/Foldable/useActiveHandler.js +0 -20
  1834. package/lib/ui-kit/Foldable/useActiveHandler.js.map +0 -1
  1835. package/lib/utils/getAccordionItems.d.ts +0 -1
  1836. package/lib/utils/getAccordionItems.js +0 -10
  1837. package/lib/utils/getAccordionItems.js.map +0 -1
  1838. package/mobile/dist/components/Accordion/AccordionItemInner.d.ts +0 -2
  1839. package/mobile/dist/components/Accordion/AccordionItemInner.js +0 -9
  1840. package/mobile/dist/components/Accordion/AccordionItemInner.js.map +0 -1
  1841. package/mobile/dist/components/Accordion/useActiveHandler.d.ts +0 -7
  1842. package/mobile/dist/components/Accordion/useActiveHandler.js +0 -22
  1843. package/mobile/dist/components/Accordion/useActiveHandler.js.map +0 -1
  1844. package/mobile/dist/components/ContentPage/isBlockInRegistry.d.ts +0 -2
  1845. package/mobile/dist/components/ContentPage/isBlockInRegistry.js +0 -7
  1846. package/mobile/dist/components/ContentPage/isBlockInRegistry.js.map +0 -1
  1847. package/mobile/dist/hooks/useFetchSafeBoxes.js.map +0 -1
  1848. package/mobile/dist/react/IntersectionObserverTag.d.ts +0 -2
  1849. package/mobile/dist/react/IntersectionObserverTag.js +0 -43
  1850. package/mobile/dist/react/IntersectionObserverTag.js.map +0 -1
  1851. package/mobile/dist/ui-kit/Foldable/useActiveHandler.d.ts +0 -9
  1852. package/mobile/dist/ui-kit/Foldable/useActiveHandler.js +0 -23
  1853. package/mobile/dist/ui-kit/Foldable/useActiveHandler.js.map +0 -1
  1854. package/mobile/dist/utils/getAccordionItems.d.ts +0 -1
  1855. package/mobile/dist/utils/getAccordionItems.js +0 -13
  1856. package/mobile/dist/utils/getAccordionItems.js.map +0 -1
  1857. package/mobile/lib/components/Accordion/AccordionItemInner.d.ts +0 -2
  1858. package/mobile/lib/components/Accordion/AccordionItemInner.js +0 -7
  1859. package/mobile/lib/components/Accordion/AccordionItemInner.js.map +0 -1
  1860. package/mobile/lib/components/Accordion/useActiveHandler.d.ts +0 -7
  1861. package/mobile/lib/components/Accordion/useActiveHandler.js +0 -19
  1862. package/mobile/lib/components/Accordion/useActiveHandler.js.map +0 -1
  1863. package/mobile/lib/components/ContentPage/isBlockInRegistry.d.ts +0 -2
  1864. package/mobile/lib/components/ContentPage/isBlockInRegistry.js +0 -4
  1865. package/mobile/lib/components/ContentPage/isBlockInRegistry.js.map +0 -1
  1866. package/mobile/lib/hooks/useFetchSafeBoxes.js.map +0 -1
  1867. package/mobile/lib/react/IntersectionObserverTag.d.ts +0 -2
  1868. package/mobile/lib/react/IntersectionObserverTag.js +0 -17
  1869. package/mobile/lib/react/IntersectionObserverTag.js.map +0 -1
  1870. package/mobile/lib/ui-kit/Foldable/useActiveHandler.d.ts +0 -9
  1871. package/mobile/lib/ui-kit/Foldable/useActiveHandler.js +0 -20
  1872. package/mobile/lib/ui-kit/Foldable/useActiveHandler.js.map +0 -1
  1873. package/mobile/lib/utils/getAccordionItems.d.ts +0 -1
  1874. package/mobile/lib/utils/getAccordionItems.js +0 -10
  1875. package/mobile/lib/utils/getAccordionItems.js.map +0 -1
  1876. package/mobile/src/components/Accordion/AccordionItemInner.tsx +0 -11
  1877. package/mobile/src/components/Accordion/useActiveHandler.ts +0 -25
  1878. package/mobile/src/components/ContentPage/isBlockInRegistry.ts +0 -5
  1879. package/mobile/src/react/IntersectionObserverTag.tsx +0 -33
  1880. package/mobile/src/ui-kit/Foldable/useActiveHandler.ts +0 -33
  1881. package/mobile/src/utils/getAccordionItems.ts +0 -10
  1882. package/src/components/Accordion/AccordionItemInner.mobile.tsx +0 -11
  1883. package/src/components/Accordion/AccordionItemInner.tsx +0 -11
  1884. package/src/components/Accordion/useActiveHandler.ts +0 -25
  1885. package/src/components/ContentPage/isBlockInRegistry.ts +0 -5
  1886. package/src/react/IntersectionObserverTag.tsx +0 -33
  1887. package/src/ui-kit/Foldable/useActiveHandler.ts +0 -33
  1888. package/src/utils/getAccordionItems.ts +0 -10
@@ -1,12 +1,9 @@
1
- import type { Branch } from '../../hooks/useFetchSafeBoxes';
2
-
3
1
  export interface SafeDepositRentalState {
4
2
  selectedRegion: string;
5
3
  selectedBranch: string;
6
4
  selectedCaseVolume: string;
7
5
  selectedBoxSize: string;
8
6
  days: number;
9
- branches: Branch[];
10
7
  }
11
8
 
12
9
  export type HandleChangeState = (state: Partial<SafeDepositRentalState>) => void;
@@ -1,4 +1,4 @@
1
- import type { Branch } from '../../hooks/useFetchSafeBoxes';
1
+ import type { Branch } from '../../hooks/useSafeBoxes';
2
2
 
3
3
  export const getCoordinates = (data?: Branch | Branch[]): number[][] => {
4
4
  if (Array.isArray(data)) {
@@ -4,6 +4,14 @@
4
4
  "items": {
5
5
  "icon": {
6
6
  "ui:field": "icon"
7
+ },
8
+ "button": {
9
+ "icon": {
10
+ "ui:field": "icon"
11
+ },
12
+ "iconRight": {
13
+ "ui:field": "icon"
14
+ }
7
15
  }
8
16
  }
9
17
  }
@@ -1,8 +1,8 @@
1
1
  import type { BlockVersion } from '../../model/BlockVersion';
2
+ import type { DescriptionProps, HeadlineCommonProps, LabelProps } from '../../model/HeadlineType';
2
3
  import type { IconProps } from '../../model/Picture';
3
4
  import type { SizeVersion } from '../../model/SizeVersion';
4
5
  import type { ButtonWithIconProps } from '../../ui-kit/Button/ButtonProps';
5
- import type { DescriptionProps, HeadlineCommonProps, LabelProps } from '../../model/HeadlineType';
6
6
 
7
7
  /**
8
8
  * @title Шаг
@@ -12,6 +12,13 @@ export type Step = DescriptionProps &
12
12
  IconProps & {
13
13
  /** @title Кнопка */
14
14
  button?: ButtonWithIconProps;
15
+ /**
16
+ * @title Буллиты
17
+ * @default true
18
+ */
19
+ isDotted?: boolean;
20
+ /** @title Список */
21
+ items?: string[];
15
22
  };
16
23
 
17
24
  /**
@@ -26,7 +33,7 @@ export type StepsBlockContent = HeadlineCommonProps & {
26
33
  /**
27
34
  * @title Шаги
28
35
  * @minItems 2
29
- * @maxItems 4
36
+ * @maxItems 5
30
37
  */
31
38
  steps?: Step[];
32
39
  /** @title Кнопка */
@@ -7,23 +7,26 @@ export type StyleType = {
7
7
  iconText: string;
8
8
  iconBackground: string;
9
9
  iconConnector: string;
10
+ dot: string;
10
11
  };
11
12
 
12
13
  export const STEPS_BLOCK_STYLE_MAPS: Record<BlockVersion, StyleType> = {
13
14
  primary: {
14
15
  background: 'bg-white',
15
16
  title: 'text-primary-text',
16
- description: 'text-secondary-text',
17
+ description: '!text-secondary-text text-l-light',
17
18
  iconText: 'text-secondary-text',
18
19
  iconBackground: 'bg-main-divider',
19
20
  iconConnector: 'bg-secondary-light',
21
+ dot: 'bg-secondary-text',
20
22
  },
21
23
  secondary: {
22
24
  background: 'bg-primary-main',
23
25
  title: 'text-white',
24
- description: 'text-white/80',
26
+ description: '!text-white/80 text-l-light',
25
27
  iconText: 'text-white',
26
28
  iconBackground: 'bg-white/30',
27
29
  iconConnector: 'bg-white',
30
+ dot: 'bg-white/80',
28
31
  },
29
32
  };
@@ -0,0 +1,26 @@
1
+ import { List } from '../../ui-kit/List/List';
2
+ import type { BlockVersion } from '../../model/BlockVersion';
3
+
4
+ export const renderItems = ({
5
+ items,
6
+ isDotted = true,
7
+ version = 'primary',
8
+ className = '',
9
+ }: {
10
+ items?: string[];
11
+ isDotted?: boolean;
12
+ version?: BlockVersion;
13
+ className?: string;
14
+ }) => {
15
+ const listVersion = version === 'primary' ? 'gray' : version;
16
+
17
+ return items ? (
18
+ <List
19
+ className={`mt-4 ${className}`}
20
+ version={listVersion}
21
+ items={items}
22
+ listItemSize="S"
23
+ isDotted={isDotted}
24
+ />
25
+ ) : null;
26
+ };
@@ -0,0 +1,63 @@
1
+ import { Button } from '../../ui-kit/Button/Button';
2
+ import type { BlockVersion } from '../../model/BlockVersion';
3
+ import type { HandlerDecorator, Router } from '../ContentPage/ContentPageContext';
4
+ import type { Step } from './StepsBlockContent';
5
+ import type { StyleType } from './StepsBlockStyleMaps';
6
+ import { renderItems } from './renderItems';
7
+ import { useLink } from '../../hooks/useLink';
8
+
9
+ export const renderStepContent =
10
+ ({
11
+ styleMap,
12
+ isMainButton,
13
+ version,
14
+ router,
15
+ handlerDecorator,
16
+ }: {
17
+ styleMap: StyleType;
18
+ isMainButton: boolean;
19
+ version: BlockVersion;
20
+ router: Router;
21
+ handlerDecorator?: HandlerDecorator;
22
+ }) =>
23
+ (step: Step, i: number, { length }: { length: number }) => {
24
+ const { label, description, button, items, isDotted } = step;
25
+
26
+ const additionalMarginClass = `${button?.text ? 'mb-8' : ''} ${step?.label ? 'mt-2' : 'mt-4'}`;
27
+ const widthContainer = length < 5 ? 'w-[276px]' : 'w-[210px]';
28
+
29
+ return (
30
+ <div
31
+ key={String(i)}
32
+ className={`flex flex-col items-center text-center relative
33
+ whitespace-pre-line overflow-hidden ${widthContainer}`}
34
+ >
35
+ {renderStepLabel(label)}
36
+ {renderStepDescription({
37
+ description,
38
+ className: `${styleMap.description} ${additionalMarginClass}`,
39
+ })}
40
+ {renderItems({ items, isDotted, version, className: styleMap.description })}
41
+ {button?.text && !isMainButton ? (
42
+ <Button
43
+ className="box-border py-3 h-12 w-full max-w-[240px] mt-auto"
44
+ {...useLink({ router, handlerDecorator }, button)}
45
+ version={version}
46
+ >
47
+ {button.text}
48
+ </Button>
49
+ ) : null}
50
+ </div>
51
+ );
52
+ };
53
+
54
+ const renderStepLabel = (label?: string) =>
55
+ label ? <div className="text-x6 m-0 mt-4">{label}</div> : null;
56
+
57
+ const renderStepDescription = ({
58
+ description,
59
+ className = '',
60
+ }: {
61
+ description?: string;
62
+ className?: string;
63
+ }) => (description ? <div className={className}>{description}</div> : null);
@@ -5,7 +5,6 @@ import type { ImageContent } from '../../ui-kit/Img/ImgProps';
5
5
  import { List } from '../../ui-kit/List/List';
6
6
  import type { ListProps } from '../../ui-kit/List/ListProps';
7
7
  import type { LabelDescriptionCell } from './TariffsTableContent';
8
- import { getButtonAriaLabel } from './utils/getButtonAriaLabel';
9
8
 
10
9
  export type EmbeddableCellDataType =
11
10
  | ButtonContent
@@ -16,17 +15,14 @@ export type EmbeddableCellDataType =
16
15
  const renderButtonsCellData = ({ buttons }: ButtonContent) =>
17
16
  buttons && buttons?.length ? (
18
17
  <div>
19
- {buttons.map(({ icon, rounded, ...buttonProps }, idx) => (
18
+ {buttons.map(({ rounded, appendLeft, ariaLabel, ...buttonProps }, idx) => (
20
19
  <Button
21
- className={`mt-3 ${idx > 0 && rounded ? 'ml-2.5' : ''} ${icon ? 'w-12 h-12' : ''}`}
20
+ className={`mt-3 ${idx > 0 && rounded ? 'ml-2.5' : ''} ${appendLeft ? 'w-12 h-12' : ''}`}
22
21
  key={String(idx)}
23
- ariaLabel={getButtonAriaLabel(icon)}
22
+ appendLeft={appendLeft}
24
23
  rounded={rounded}
25
- appendLeft={
26
- icon?.src || icon?.icon ? <Img image={icon} width="24px" height="24px" asSVG /> : null
27
- }
24
+ ariaLabel={ariaLabel}
28
25
  {...buttonProps}
29
- aria-label={icon}
30
26
  />
31
27
  ))}
32
28
  </div>
@@ -30,7 +30,7 @@ const renderCellInner =
30
30
  return (
31
31
  <div
32
32
  key={String(i)}
33
- className={cell?.tableCellType === 'Table' ? 'mx-0.5' : `first:pt-5 last:pb-5 pl-10`}
33
+ className={cell?.tableCellType === 'Table' ? 'ml-10' : `first:pt-5 last:pb-5 pl-10`}
34
34
  >
35
35
  {i > 0 ? <div className="h-5" /> : null}
36
36
  {renderCell(cell, context, { rowIdx, cellIdx, fieldIdx: i })}
@@ -1,6 +1,5 @@
1
1
  import { JSX } from '@redneckz/uni-jsx';
2
2
  import { UniBlockProps } from '../../model/ContentPageDef';
3
- import { Heading } from '../../ui-kit/Heading/Heading';
4
3
  import { Img } from '../../ui-kit/Img/Img';
5
4
  import { TableCarouselContainer } from '../ComparisonTable/TableCarouselContainer';
6
5
  import { COLUMN_WIDTH, DIVIDER_CLASSES, FIRST_CELL_CLASSES } from './constants';
@@ -34,9 +33,7 @@ export const TariffsTableRow = JSX<TariffsTableRowProps>(
34
33
  asSVG
35
34
  />
36
35
  ) : null}
37
- {header?.title ? (
38
- <Heading headingType={header?.headingType || 'h6'} as="h6" title={header?.title} />
39
- ) : null}
36
+ {header?.title ? <div className="text-m-light">{header?.title}</div> : null}
40
37
  </div>
41
38
  </div>
42
39
  {data?.length ? (
@@ -1,4 +1,5 @@
1
1
  import type { Picture } from '../../model/Picture';
2
+ import { Img } from '../../ui-kit/Img/Img';
2
3
  import type {
3
4
  InnerTableBlockDef,
4
5
  LabelDescriptionCellDef,
@@ -93,14 +94,14 @@ export const columns: TariffsTableColumn[] = [
93
94
  tableCellType: 'Buttons',
94
95
  buttons: [
95
96
  {
96
- icon: { icon: 'AppleIcon' },
97
+ appendLeft: <Img image={{ icon: 'AppleIcon' }} width="24" height="24" asSVG />,
97
98
  rounded: true,
98
99
  version: 'secondary',
99
100
  href: '/',
100
101
  target: '_blank',
101
102
  },
102
103
  {
103
- icon: { icon: 'PlayMarketIcon' },
104
+ appendLeft: <Img image={{ icon: 'PlayMarketIcon' }} width="24" height="24" asSVG />,
104
105
  rounded: true,
105
106
  version: 'secondary',
106
107
  href: '/',
@@ -1,5 +1,3 @@
1
1
  import type { Picture } from '../../../model/Picture';
2
- import { IconTitleMap } from '../../../icons/IconName';
3
2
 
4
- export const getButtonAriaLabel = (icon: Picture | undefined) =>
5
- icon?.alt || icon?.title || IconTitleMap[icon?.icon ? icon.icon : ''];
3
+ export const getButtonAriaLabel = (icon: Picture | undefined) => icon?.alt || icon?.title || '';
@@ -67,7 +67,7 @@ export const Tile = JSX<TileProps>((props) => {
67
67
  image={image?.src ? <Img className="mt-auto ml-7" image={image} /> : null}
68
68
  >
69
69
  {description ? (
70
- <Description className="max-w-[600px] text-xl-light mt-2" description={description} />
70
+ <Description className="max-w-[600px] text-xl-light mt-2.5" description={description} />
71
71
  ) : null}
72
72
  {children}
73
73
  {renderList(items, { version, isDotted, listItemSize })}
@@ -77,16 +77,14 @@ export const Tile = JSX<TileProps>((props) => {
77
77
  });
78
78
 
79
79
  function renderList(items, { version, isDotted, listItemSize }: ListProps) {
80
- const listVersion = version === 'primary' ? 'tile' : 'tile-white';
81
-
82
80
  return items?.length ? (
83
81
  <List
84
82
  items={items}
85
83
  isDotted={isDotted}
86
- className="mt-3"
84
+ className="mt-2.5"
87
85
  listItemSize={listItemSize}
88
86
  itemClassName="mb-1.5"
89
- version={listVersion}
87
+ version={version}
90
88
  />
91
89
  ) : null;
92
90
  }
@@ -0,0 +1,25 @@
1
+ import { useEffect } from '@redneckz/uni-jsx/lib/hooks';
2
+
3
+ interface Ref {
4
+ current: HTMLInputElement | null;
5
+ }
6
+
7
+ export function useOutsideClick(wrapperRef: Ref, setIsOpen: (_: boolean) => void) {
8
+ useEffect(() => {
9
+ function handleClickOutside(event: MouseEvent) {
10
+ if (
11
+ wrapperRef &&
12
+ wrapperRef.current &&
13
+ event.target instanceof HTMLElement &&
14
+ !wrapperRef.current.contains(event.target)
15
+ ) {
16
+ setIsOpen(false);
17
+ }
18
+ }
19
+ document.addEventListener('click', handleClickOutside);
20
+
21
+ return () => {
22
+ document.removeEventListener('click', handleClickOutside);
23
+ };
24
+ }, []);
25
+ }
@@ -25,20 +25,19 @@ export interface Branch {
25
25
  }
26
26
 
27
27
  const SAFEBOXES_URL = '/api/v1/safeboxes';
28
+ const EMPTY_VALUE = [];
28
29
 
29
- export function useFetchSafeBoxes(regionCode?: string) {
30
- const { data } = useAsyncData<{ data?: Branch[] }, any, string | null>(
30
+ export function useSafeBoxes(regionCode?: string): Branch[] {
31
+ const { data } = useAsyncData<Branch[], any, string | null>(
31
32
  regionCode ? `${SAFEBOXES_URL}?regionCode=${regionCode}` : null,
32
33
  fetchSafeBoxes,
33
34
  );
34
35
 
35
- return data || [];
36
+ return data || EMPTY_VALUE;
36
37
  }
37
38
 
38
- const fetchSafeBoxes = (url?: string) => {
39
- if (!url) {
40
- return {};
41
- }
39
+ const fetchSafeBoxes = async (url: string): Promise<Branch[]> => {
40
+ const result = await fetchJSON<Branch[]>(url, { method: 'GET' });
42
41
 
43
- return fetchJSON(url, { method: 'GET' });
42
+ return result || EMPTY_VALUE;
44
43
  };
@@ -2,9 +2,9 @@
2
2
  // Generated. Do not touch
3
3
  /* eslint-disable max-len, max-lines */
4
4
 
5
- export const IconInverseMap = {
6
- ActualBalanceIcon: false, AirPlaneIcon: false, AppleIcon: true, ArrowDownIcon: true, ArrowLeftIcon: true, ArrowUpIcon: true, AtmIcon: true, BankIcon: true, BuildingIcon: true, BurgerIcon: true, Calendar2Icon: true, CalendarCircleIcon: true, CalendarIcon: true, CalendarTickIcon: true, Car2Icon: true, CardIcon: true, CardPosIcon: true, CardTickIcon: true, CardWithGemIcon: false, CarIcon: false, ChartSquareIcon: true, CinemaIcon: false, ClockIcon: false, CloseIcon: true, ComfortableCompIcon: false, CreditCardsIcon: false, DiscountShapeIcon: true, DocDownloadIcon: true, DocIcon: true, DocIconMonoColor: true, DocsIcon: false, DocumentTextIcon: true, DollarIcon: false, DoneIcon: false, DoneSimpleIcon: true, EarthIcon: false, EmptyWalletChangeIcon: true, EmptyWalletIcon: true, EuroIcon: false, GeolocationIcon: true, GlassIcon: false, GlobalIcon: true, GpsIcon: true, GridIcon: true, InterestGrowthIcon: false, InterestIcon: true, JCBIcon: false, LogoIcon: true, LoupeIcon: true, MapMarkerClusterIcon: false, MapMarkerSingleIcon: false, MasterCardIcon: false, MinusIcon: true, MirIcon: false, MoneyIcon: true, MoneyInsuranceIcon: false, MoneysIcon: true, MonitorMobileIcon: true, NewDocIcon: false, OfficeIcon: false, OkIcon: true, PackA4Icon: false, PassSendIcon: false, PercentageRoundIcon: true, PercentageSquareIcon: true, PersonalCardIcon: true, PlayMarketIcon: true, PlusIcon: true, PowerIcon: false, Profile2UserIcon: true, ProfileIcon: true, PumpkinIcon: false, RoundRubleIcon: true, SafeIcon: true, ShieldTickIcon: true, SignDocsIcon: false, SmallClockIcon: true, SoundIcon: false, StrongBoxIcon: true, TelegramIcon: true, UnionPayIcon: false, UserSquareIcon: true, UserTickIcon: true, VisaIcon: false, VKIcon: true, WalletAdd2Icon: true, WalletAddIcon: true, WalletIcon: true, WalletWithMoneyIcon: true, WateringCanIcon: false
7
- }
5
+ export const IconsWithoutInversion = new Set([
6
+ 'ActualBalanceIcon', 'AirPlaneIcon', 'CardWithGemIcon', 'CarIcon', 'CinemaIcon', 'ClockIcon', 'ComfortableCompIcon', 'CreditCardsIcon', 'DocsIcon', 'DollarIcon', 'DoneIcon', 'EarthIcon', 'EuroIcon', 'GlassIcon', 'InterestGrowthIcon', 'JCBIcon', 'MapMarkerClusterIcon', 'MapMarkerSingleIcon', 'MasterCardIcon', 'MirIcon', 'MoneyInsuranceIcon', 'NewDocIcon', 'OfficeIcon', 'PackA4Icon', 'PassSendIcon', 'PowerIcon', 'PumpkinIcon', 'SignDocsIcon', 'SoundIcon', 'UnionPayIcon', 'VisaIcon', 'WateringCanIcon'
7
+ ]);
8
8
 
9
9
  export enum IconMap {
10
10
  ActualBalanceIcon = 'ActualBalanceIcon', AirPlaneIcon = 'AirPlaneIcon', AppleIcon = 'AppleIcon', ArrowDownIcon = 'ArrowDownIcon', ArrowLeftIcon = 'ArrowLeftIcon', ArrowUpIcon = 'ArrowUpIcon', AtmIcon = 'AtmIcon', BankIcon = 'BankIcon', BuildingIcon = 'BuildingIcon', BurgerIcon = 'BurgerIcon', Calendar2Icon = 'Calendar2Icon', CalendarCircleIcon = 'CalendarCircleIcon', CalendarIcon = 'CalendarIcon', CalendarTickIcon = 'CalendarTickIcon', Car2Icon = 'Car2Icon', CardIcon = 'CardIcon', CardPosIcon = 'CardPosIcon', CardTickIcon = 'CardTickIcon', CardWithGemIcon = 'CardWithGemIcon', CarIcon = 'CarIcon', ChartSquareIcon = 'ChartSquareIcon', CinemaIcon = 'CinemaIcon', ClockIcon = 'ClockIcon', CloseIcon = 'CloseIcon', ComfortableCompIcon = 'ComfortableCompIcon', CreditCardsIcon = 'CreditCardsIcon', DiscountShapeIcon = 'DiscountShapeIcon', DocDownloadIcon = 'DocDownloadIcon', DocIcon = 'DocIcon', DocIconMonoColor = 'DocIconMonoColor', DocsIcon = 'DocsIcon', DocumentTextIcon = 'DocumentTextIcon', DollarIcon = 'DollarIcon', DoneIcon = 'DoneIcon', DoneSimpleIcon = 'DoneSimpleIcon', EarthIcon = 'EarthIcon', EmptyWalletChangeIcon = 'EmptyWalletChangeIcon', EmptyWalletIcon = 'EmptyWalletIcon', EuroIcon = 'EuroIcon', GeolocationIcon = 'GeolocationIcon', GlassIcon = 'GlassIcon', GlobalIcon = 'GlobalIcon', GpsIcon = 'GpsIcon', GridIcon = 'GridIcon', InterestGrowthIcon = 'InterestGrowthIcon', InterestIcon = 'InterestIcon', JCBIcon = 'JCBIcon', LogoIcon = 'LogoIcon', LoupeIcon = 'LoupeIcon', MapMarkerClusterIcon = 'MapMarkerClusterIcon', MapMarkerSingleIcon = 'MapMarkerSingleIcon', MasterCardIcon = 'MasterCardIcon', MinusIcon = 'MinusIcon', MirIcon = 'MirIcon', MoneyIcon = 'MoneyIcon', MoneyInsuranceIcon = 'MoneyInsuranceIcon', MoneysIcon = 'MoneysIcon', MonitorMobileIcon = 'MonitorMobileIcon', NewDocIcon = 'NewDocIcon', OfficeIcon = 'OfficeIcon', OkIcon = 'OkIcon', PackA4Icon = 'PackA4Icon', PassSendIcon = 'PassSendIcon', PercentageRoundIcon = 'PercentageRoundIcon', PercentageSquareIcon = 'PercentageSquareIcon', PersonalCardIcon = 'PersonalCardIcon', PlayMarketIcon = 'PlayMarketIcon', PlusIcon = 'PlusIcon', PowerIcon = 'PowerIcon', Profile2UserIcon = 'Profile2UserIcon', ProfileIcon = 'ProfileIcon', PumpkinIcon = 'PumpkinIcon', RoundRubleIcon = 'RoundRubleIcon', SafeIcon = 'SafeIcon', ShieldTickIcon = 'ShieldTickIcon', SignDocsIcon = 'SignDocsIcon', SmallClockIcon = 'SmallClockIcon', SoundIcon = 'SoundIcon', StrongBoxIcon = 'StrongBoxIcon', TelegramIcon = 'TelegramIcon', UnionPayIcon = 'UnionPayIcon', UserSquareIcon = 'UserSquareIcon', UserTickIcon = 'UserTickIcon', VisaIcon = 'VisaIcon', VKIcon = 'VKIcon', WalletAdd2Icon = 'WalletAdd2Icon', WalletAddIcon = 'WalletAddIcon', WalletIcon = 'WalletIcon', WalletWithMoneyIcon = 'WalletWithMoneyIcon', WateringCanIcon = 'WateringCanIcon'
@@ -4,6 +4,8 @@ export const DEFAULT_SLOT_NAME = null;
4
4
 
5
5
  export type BlockAncestors = [keyof SlotsMap | typeof DEFAULT_SLOT_NAME, ...Slot[]];
6
6
 
7
+ export const DEFAULT_ANCESTORS: BlockAncestors = [DEFAULT_SLOT_NAME];
8
+
7
9
  interface BlockDecoratorProps<VNode> {
8
10
  blockClassName: string;
9
11
  block: BlockDef;
@@ -6,6 +6,9 @@ export type JSXBlock<BlockProps = Record<string, any>> = UNIComponent<
6
6
  BlockProps & UniBlockProps,
7
7
  any,
8
8
  VNode | VNode[]
9
- >;
9
+ > & {
10
+ childrenTypes?: string[];
11
+ renderChild?: (child: VNode, i: number) => VNode;
12
+ };
10
13
 
11
14
  export type BlocksRegistry<BlockProps = Record<string, any>> = Record<string, JSXBlock<BlockProps>>;
@@ -4,6 +4,12 @@
4
4
  */
5
5
  export type HeadlineVersion = 'XXL' | 'XL' | 'L' | 'M' | 'S';
6
6
 
7
+ /**
8
+ * @title Размер заголовка
9
+ * @enumNames ["Самый большой тонкий", "Самый большой", "Очень большой тонкий", "Очень большой", "Большой", "Средний", "Маленький"]
10
+ */
11
+ export type HeadlineSmallVersion = 'XL_L' | 'XL_R' | 'L_L' | 'L_R' | 'M' | 'S' | 'XS';
12
+
7
13
  export type TitleProps = {
8
14
  /** @title Заголовок */
9
15
  title?: string;
@@ -24,3 +30,7 @@ export type HeadlineCommonProps = TitleProps & DescriptionProps;
24
30
  export type HeadlineProps = HeadlineCommonProps & {
25
31
  headlineVersion?: HeadlineVersion;
26
32
  };
33
+
34
+ export type HeadlineSmallProps = HeadlineCommonProps & {
35
+ headlineSmallVersion?: HeadlineSmallVersion;
36
+ };
@@ -49,6 +49,7 @@ export interface ImgSource {
49
49
  alignment?: ImgAlignment;
50
50
  /** @title Иконка */
51
51
  icon?: IconName;
52
+ /** @title Версия иконки */
52
53
  iconVersion?: IconVersion;
53
54
  /** @title Картинка */
54
55
  src?: string;
@@ -3,7 +3,6 @@ import { useState } from 'react';
3
3
  import type { ContentPageContext } from '../components/ContentPage/ContentPageContext';
4
4
  import { projectSettings } from '../ProjectSettings';
5
5
  import wlc from '../wlc.json';
6
- import { IntersectionObserverTag } from './IntersectionObserverTag';
7
6
 
8
7
  const TEST_ORIGIN = 'http://localhost:5001';
9
8
 
@@ -35,7 +34,6 @@ export const context: ContentPageContext = {
35
34
  ev.preventDefault();
36
35
  console.log(ev.target, ev, targetContent);
37
36
  },
38
- IntersectionObserverTag,
39
37
  };
40
38
 
41
39
  export const mobileContext: ContentPageContext = {
@@ -26,16 +26,13 @@ export const BenefitItem = JSX<BenefitGeneralProps>((props) => {
26
26
 
27
27
  const isIconWhite = benefitsVersion === 'white' || version === 'secondary';
28
28
  const listItemAlign = description ? 'items-start' : 'items-center';
29
+ const iconVersion = getIconVersion(icon, isIconWhite);
29
30
 
30
31
  return (
31
32
  <div className={`flex gap-5 ${listItemAlign} ${className}`}>
32
33
  {icon ? (
33
34
  <div className={renderBenefitIconBgStyle(version, benefitsVersion)}>
34
- <Img
35
- className="w-6 h-6"
36
- image={{ ...icon, iconVersion: isIconWhite ? 'white' : 'normal' }}
37
- asSVG
38
- />
35
+ <Img className="w-6 h-6" image={{ ...icon, iconVersion }} asSVG />
39
36
  </div>
40
37
  ) : null}
41
38
  <div className="gap-0.5">
@@ -59,3 +56,6 @@ function renderBenefitIconBgStyle(version, benefitsVersion) {
59
56
 
60
57
  return `w-[50px] h-[50px] min-w-[50px] rounded-full p-2.5 box-border flex items-center justify-center ${bgColorStyle}`;
61
58
  }
59
+
60
+ const getIconVersion = (icon, isIconWhite) =>
61
+ icon?.iconVersion || isIconWhite ? 'white' : 'normal';
@@ -1,14 +1,12 @@
1
1
  import { JSX } from '@redneckz/uni-jsx';
2
2
  import { useEffect, useMemo, useRef, useState } from '@redneckz/uni-jsx/lib/hooks';
3
- import type { ContentPageContext } from '../components/ContentPage/ContentPageContext';
4
- import { AnchorClickScrollingEvent } from '../components/Tabs/Tabs';
3
+ import type { AnchorClickScrollingEvent } from '../components/Tabs/Tabs';
5
4
  import { EventBus } from '../EventBus/EventBus';
6
5
  import type { UniBlockProps } from '../model/ContentPageDef';
7
6
  import { changeHashOnObserve } from '../utils/changeHashOnObserve';
7
+ import { IntersectionObserverTag } from './IntersectionObserverTag';
8
8
 
9
9
  interface BlockWrapperProps extends UniBlockProps, Record<string, any> {
10
- context: ContentPageContext;
11
- className?: string;
12
10
  anchor?: string;
13
11
  tag?: keyof HTMLElementTagNameMap;
14
12
  }
@@ -19,17 +17,15 @@ const THRESHOLD_ARRAY_START_VALUE =
19
17
  (THRESHOLD_ACCURACY - THRESHOLD_ARRAY_LENGTH) / THRESHOLD_ACCURACY;
20
18
 
21
19
  export const BlockWrapper = JSX<BlockWrapperProps>(
22
- ({ anchor, className, context, children, tag = 'section', labels }) => {
20
+ ({ anchor, className, children, tag = 'section', labels }) => {
23
21
  const Tag: any = tag;
24
22
 
25
- const { IntersectionObserverTag } = context;
26
-
27
23
  const [shouldRenderBlock, setShouldRenderBlock] = useState(true);
28
24
  const anchorClickRef = useRef<AnchorClickScrollingEvent>({});
29
25
 
30
26
  const observerCallback = useMemo(
31
27
  () => changeHashOnObserve({ anchor, anchorClickRef }),
32
- [anchor, anchorClickRef],
28
+ [anchor],
33
29
  );
34
30
 
35
31
  useEffect(() => {
@@ -49,7 +45,7 @@ export const BlockWrapper = JSX<BlockWrapperProps>(
49
45
  anchorClickCleanup();
50
46
  tabCleanup();
51
47
  };
52
- }, [anchorClickRef]);
48
+ }, []);
53
49
 
54
50
  if (!shouldRenderBlock) {
55
51
  return null;
@@ -12,7 +12,7 @@ export type EmbeddableBlocksProps = {
12
12
  };
13
13
 
14
14
  export const renderBlocksList = ({ blocks, context, className = '' }: EmbeddableBlocksProps) =>
15
- blocks?.length ? blocks.map(renderBlock({ context, className })) : null;
15
+ blocks?.length ? blocks.map(renderBlock({ context, className })) : [];
16
16
 
17
17
  const renderBlock =
18
18
  ({ context, className }: UniBlockProps) =>
@@ -41,7 +41,7 @@ export const Button = JSX<ButtonWithIconProps>(
41
41
  }) => {
42
42
  // It isn't a valid HTML attribute. Must be excluded from "rest"
43
43
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
44
- const { asSVG, iconRight, appendRight, icon, ...buttonInnerRest } = rest;
44
+ const { appendRight, ...buttonInnerRest } = rest;
45
45
  const buttonInner = children ?? (
46
46
  <ButtonInner
47
47
  text={text}
@@ -1,5 +1,6 @@
1
1
  import { JSX } from '@redneckz/uni-jsx';
2
2
  import type { ButtonVersion } from '../../model/ButtonVersion';
3
+ import { iconStyleMap } from './buttonClassNameConstants';
3
4
  import type { ButtonWithIconProps } from './ButtonProps';
4
5
 
5
6
  interface ButtonInnerProps extends ButtonWithIconProps {
@@ -7,18 +8,18 @@ interface ButtonInnerProps extends ButtonWithIconProps {
7
8
  }
8
9
 
9
10
  export const ButtonInner = JSX<ButtonInnerProps>((props) => {
10
- const { text, aboveText, appendLeft, appendRight } = props;
11
+ const { text, aboveText, appendLeft, appendRight, version = 'primary' } = props;
11
12
 
12
13
  return (
13
14
  <div className={getButtonStyle(props)}>
14
- {appendLeft ? appendLeft : null}
15
+ {appendLeft ? <div className={iconStyleMap[version]}>{appendLeft}</div> : null}
15
16
  {isWithText(props) ? (
16
17
  <div>
17
18
  <div className="text-xs-light text-left">{aboveText}</div>
18
19
  <div className={`text-left ${aboveText ? 'text-s -mt-0.5' : 'text-l'}`}>{text}</div>
19
20
  </div>
20
21
  ) : null}
21
- {appendRight ? appendRight : null}
22
+ {appendRight ? <div className={iconStyleMap[version]}>{appendRight}</div> : null}
22
23
  </div>
23
24
  );
24
25
  });
@@ -1,6 +1,6 @@
1
1
  import type { ButtonVersion } from '../../model/ButtonVersion';
2
2
  import type { LinkProps } from '../../model/LinkProps';
3
- import type { IconProps, Picture } from '../../model/Picture';
3
+ import type { IconProps } from '../../model/Picture';
4
4
  import type { VNode } from '../../model/VNode';
5
5
 
6
6
  /**
@@ -29,18 +29,12 @@ export interface ButtonProps extends ButtonAdditionalProps, LinkProps {
29
29
  }
30
30
 
31
31
  export interface ButtonWithIconProps extends ButtonProps {
32
- /** @title Иконка слева */
33
- icon?: Picture;
34
- /** @title Иконка справа */
35
- iconRight?: Picture;
36
32
  /** @title Верхний текст */
37
33
  aboveText?: string;
38
34
  /** @hidden */
39
35
  appendLeft?: VNode;
40
36
  /** @hidden */
41
37
  appendRight?: VNode;
42
- /** @hidden */
43
- asSVG?: boolean;
44
38
  }
45
39
 
46
40
  export interface ButtonContent {