@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
@@ -3,45 +3,24 @@ exports.SafeDepositRentalForm = void 0;
3
3
  const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
4
  const uni_jsx_1 = require("@redneckz/uni-jsx");
5
5
  const core_1 = require("@redneckz/uni-jsx/lib/hooks/core");
6
- const useFetchSafeBoxes_1 = require("../../hooks/useFetchSafeBoxes");
7
6
  const SafeDepositRentalFields_1 = require("./SafeDepositRentalFields");
8
7
  const SafeDepositRentalTotal_1 = require("./SafeDepositRentalTotal");
9
8
  const utils_1 = require("./utils");
10
- const DEFAULT_DAYS = 26;
11
9
  exports.SafeDepositRentalForm = (0, uni_jsx_1.JSX)((props) => {
12
- const [safeDepositState, setStateDepositState] = (0, core_1.useState)({
13
- selectedRegion: '',
14
- selectedBranch: '',
15
- selectedCaseVolume: '',
16
- selectedBoxSize: '',
17
- days: DEFAULT_DAYS,
18
- branches: [],
19
- });
20
- const resultBranches = (0, useFetchSafeBoxes_1.useFetchSafeBoxes)(safeDepositState.selectedRegion);
21
- const handleChangeSafeDepositState = (state) => setStateDepositState((oldState) => ({ ...oldState, ...state }));
22
- (0, core_1.useEffect)(() => handleChangeSafeDepositState({
23
- selectedRegion: getInitialValueSelectedRegion(props.regions),
24
- }), [props.regions]);
10
+ const { regions, data, branches, onChange, onShowMapToggle } = props;
25
11
  (0, core_1.useEffect)(() => {
26
- if (Array.isArray(resultBranches) && resultBranches.length) {
27
- handleChangeSafeDepositState({ branches: resultBranches });
28
- props.setPoints((0, utils_1.getCoordinates)(resultBranches));
29
- }
30
- }, [resultBranches]);
31
- (0, core_1.useEffect)(() => {
32
- handleChangeSafeDepositState({
12
+ onChange({
33
13
  selectedBranch: '',
34
14
  selectedCaseVolume: '',
35
15
  selectedBoxSize: '',
36
16
  });
37
- }, [safeDepositState.selectedRegion]);
38
- const branch = (0, utils_1.getBranch)(safeDepositState.branches, safeDepositState.selectedBranch);
17
+ }, [data.selectedRegion, onChange]);
18
+ const branch = (0, utils_1.getBranch)(branches, data.selectedBranch);
39
19
  const caseVolumes = getCaseVolumes(branch?.safeBoxCaseVolumes);
40
- const safeBoxCases = getCaseVolume(branch?.safeBoxCaseVolumes, safeDepositState.selectedCaseVolume)?.safeBoxCases;
41
- const tariffs = getTariffs(safeBoxCases, safeDepositState.selectedBoxSize);
42
- return ((0, jsx_runtime_1.jsxs)("div", { className: "flex justify-between align-top mb-6", children: [(0, jsx_runtime_1.jsx)(SafeDepositRentalFields_1.SafeDepositRentalFields, { ...safeDepositState, ...props, caseVolumes: caseVolumes, safeBoxCases: safeBoxCases, onChange: handleChangeSafeDepositState }), (0, jsx_runtime_1.jsx)(SafeDepositRentalTotal_1.SafeDepositRentalTotal, { days: safeDepositState.days, tariffs: tariffs })] }));
20
+ const safeBoxCases = getCaseVolume(branch?.safeBoxCaseVolumes, data.selectedCaseVolume)?.safeBoxCases;
21
+ const tariffs = getTariffs(safeBoxCases, data.selectedBoxSize);
22
+ return ((0, jsx_runtime_1.jsxs)("div", { className: "flex justify-between align-top mb-6", children: [(0, jsx_runtime_1.jsx)(SafeDepositRentalFields_1.SafeDepositRentalFields, { ...data, regions: regions, onShowMapToggle: onShowMapToggle, branches: branches, caseVolumes: caseVolumes, safeBoxCases: safeBoxCases, onChange: onChange }), (0, jsx_runtime_1.jsx)(SafeDepositRentalTotal_1.SafeDepositRentalTotal, { days: data.days, tariffs: tariffs })] }));
43
23
  });
44
- const getInitialValueSelectedRegion = (regions) => regions?.length && regions[0]?.code ? regions[0].code : '';
45
24
  const getCaseVolumes = (safeBoxCaseVolumes) => safeBoxCaseVolumes?.length ? safeBoxCaseVolumes?.filter((_) => _?.safeBoxCases?.length) : [];
46
25
  const getCaseVolume = (caseVolumes, selectedCaseVolume) => caseVolumes?.find((_) => _.volume === selectedCaseVolume);
47
26
  const getTariffs = (safeBoxCases, selectedBoxSize) => safeBoxCases?.find((_) => _.safeBoxCasesSize === selectedBoxSize)?.tariffs;
@@ -1 +1 @@
1
- {"version":3,"file":"SafeDepositRentalForm.js","sourceRoot":"","sources":["../../../src/components/SafeDepositRental/SafeDepositRentalForm.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"SafeDepositRentalForm.js","sourceRoot":"","sources":["../../../src/components/SafeDepositRental/SafeDepositRentalForm.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AACxC,2DAA6D;AAE7D,uEAAoE;AACpE,qEAAkE;AAGlE,mCAAoC;AAUvB,QAAA,qBAAqB,GAAG,IAAA,aAAG,EAA6B,CAAC,KAAK,EAAE,EAAE;IAC7E,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,eAAe,EAAE,GAAG,KAAK,CAAC;IAErE,IAAA,gBAAS,EAAC,GAAG,EAAE;QACb,QAAQ,CAAC;YACP,cAAc,EAAE,EAAE;YAClB,kBAAkB,EAAE,EAAE;YACtB,eAAe,EAAE,EAAE;SACpB,CAAC,CAAC;IACL,CAAC,EAAE,CAAC,IAAI,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC,CAAC;IAEpC,MAAM,MAAM,GAAG,IAAA,iBAAS,EAAC,QAAQ,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;IACxD,MAAM,WAAW,GAAG,cAAc,CAAC,MAAM,EAAE,kBAAkB,CAAC,CAAC;IAE/D,MAAM,YAAY,GAAG,aAAa,CAChC,MAAM,EAAE,kBAAkB,EAC1B,IAAI,CAAC,kBAAkB,CACxB,EAAE,YAAY,CAAC;IAEhB,MAAM,OAAO,GAAG,UAAU,CAAC,YAAY,EAAE,IAAI,CAAC,eAAe,CAAC,CAAC;IAE/D,OAAO,CACL,iCAAK,SAAS,EAAC,qCAAqC,aAClD,uBAAC,iDAAuB,OAClB,IAAI,EACR,OAAO,EAAE,OAAO,EAChB,eAAe,EAAE,eAAe,EAChC,QAAQ,EAAE,QAAQ,EAClB,WAAW,EAAE,WAAW,EACxB,YAAY,EAAE,YAAY,EAC1B,QAAQ,EAAE,QAAQ,GAClB,EACF,uBAAC,+CAAsB,IAAC,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,OAAO,GAAI,IACzD,CACP,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,MAAM,cAAc,GAAG,CAAC,kBAAwC,EAAE,EAAE,CAClE,kBAAkB,EAAE,MAAM,CAAC,CAAC,CAAC,kBAAkB,EAAE,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,YAAY,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;AAE/F,MAAM,aAAa,GAAG,CAAC,WAAiC,EAAE,kBAA2B,EAAE,EAAE,CACvF,WAAW,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,KAAK,kBAAkB,CAAC,CAAC;AAE5D,MAAM,UAAU,GAAG,CAAC,YAA4B,EAAE,eAAwB,EAAE,EAAE,CAC5E,YAAY,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,gBAAgB,KAAK,eAAe,CAAC,EAAE,OAAO,CAAC"}
@@ -1,4 +1,4 @@
1
- import type { Tariff } from '../../hooks/useFetchSafeBoxes';
1
+ import type { Tariff } from '../../hooks/useSafeBoxes';
2
2
  export interface SafeDepositRentalTotalProps {
3
3
  days: number;
4
4
  tariffs?: Tariff[];
@@ -1,10 +1,8 @@
1
- import type { Branch } from '../../hooks/useFetchSafeBoxes';
2
1
  export interface SafeDepositRentalState {
3
2
  selectedRegion: string;
4
3
  selectedBranch: string;
5
4
  selectedCaseVolume: string;
6
5
  selectedBoxSize: string;
7
6
  days: number;
8
- branches: Branch[];
9
7
  }
10
8
  export declare type HandleChangeState = (state: Partial<SafeDepositRentalState>) => void;
@@ -1,3 +1,3 @@
1
- import type { Branch } from '../../hooks/useFetchSafeBoxes';
1
+ import type { Branch } from '../../hooks/useSafeBoxes';
2
2
  export declare const getCoordinates: (data?: Branch | Branch[]) => number[][];
3
3
  export declare const getBranch: (branches: Branch[], selectedBranch: string) => Branch | undefined;
@@ -1,14 +1,21 @@
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
  * @title Шаг
8
8
  */
9
9
  export declare type Step = DescriptionProps & LabelProps & IconProps & {
10
10
  /** @title Кнопка */
11
11
  button?: ButtonWithIconProps;
12
+ /**
13
+ * @title Буллиты
14
+ * @default true
15
+ */
16
+ isDotted?: boolean;
17
+ /** @title Список */
18
+ items?: string[];
12
19
  };
13
20
  /**
14
21
  * @title Блок шаги
@@ -22,7 +29,7 @@ export declare type StepsBlockContent = HeadlineCommonProps & {
22
29
  /**
23
30
  * @title Шаги
24
31
  * @minItems 2
25
- * @maxItems 4
32
+ * @maxItems 5
26
33
  */
27
34
  steps?: Step[];
28
35
  /** @title Кнопка */
@@ -6,5 +6,6 @@ export declare type StyleType = {
6
6
  iconText: string;
7
7
  iconBackground: string;
8
8
  iconConnector: string;
9
+ dot: string;
9
10
  };
10
11
  export declare const STEPS_BLOCK_STYLE_MAPS: Record<BlockVersion, StyleType>;
@@ -4,18 +4,20 @@ exports.STEPS_BLOCK_STYLE_MAPS = {
4
4
  primary: {
5
5
  background: 'bg-white',
6
6
  title: 'text-primary-text',
7
- description: 'text-secondary-text',
7
+ description: '!text-secondary-text text-l-light',
8
8
  iconText: 'text-secondary-text',
9
9
  iconBackground: 'bg-main-divider',
10
10
  iconConnector: 'bg-secondary-light',
11
+ dot: 'bg-secondary-text',
11
12
  },
12
13
  secondary: {
13
14
  background: 'bg-primary-main',
14
15
  title: 'text-white',
15
- description: 'text-white/80',
16
+ description: '!text-white/80 text-l-light',
16
17
  iconText: 'text-white',
17
18
  iconBackground: 'bg-white/30',
18
19
  iconConnector: 'bg-white',
20
+ dot: 'bg-white/80',
19
21
  },
20
22
  };
21
23
  //# sourceMappingURL=StepsBlockStyleMaps.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"StepsBlockStyleMaps.js","sourceRoot":"","sources":["../../../src/components/StepsBlock/StepsBlockStyleMaps.ts"],"names":[],"mappings":";;AAWa,QAAA,sBAAsB,GAAoC;IACrE,OAAO,EAAE;QACP,UAAU,EAAE,UAAU;QACtB,KAAK,EAAE,mBAAmB;QAC1B,WAAW,EAAE,qBAAqB;QAClC,QAAQ,EAAE,qBAAqB;QAC/B,cAAc,EAAE,iBAAiB;QACjC,aAAa,EAAE,oBAAoB;KACpC;IACD,SAAS,EAAE;QACT,UAAU,EAAE,iBAAiB;QAC7B,KAAK,EAAE,YAAY;QACnB,WAAW,EAAE,eAAe;QAC5B,QAAQ,EAAE,YAAY;QACtB,cAAc,EAAE,aAAa;QAC7B,aAAa,EAAE,UAAU;KAC1B;CACF,CAAC"}
1
+ {"version":3,"file":"StepsBlockStyleMaps.js","sourceRoot":"","sources":["../../../src/components/StepsBlock/StepsBlockStyleMaps.ts"],"names":[],"mappings":";;AAYa,QAAA,sBAAsB,GAAoC;IACrE,OAAO,EAAE;QACP,UAAU,EAAE,UAAU;QACtB,KAAK,EAAE,mBAAmB;QAC1B,WAAW,EAAE,mCAAmC;QAChD,QAAQ,EAAE,qBAAqB;QAC/B,cAAc,EAAE,iBAAiB;QACjC,aAAa,EAAE,oBAAoB;QACnC,GAAG,EAAE,mBAAmB;KACzB;IACD,SAAS,EAAE;QACT,UAAU,EAAE,iBAAiB;QAC7B,KAAK,EAAE,YAAY;QACnB,WAAW,EAAE,6BAA6B;QAC1C,QAAQ,EAAE,YAAY;QACtB,cAAc,EAAE,aAAa;QAC7B,aAAa,EAAE,UAAU;QACzB,GAAG,EAAE,aAAa;KACnB;CACF,CAAC"}
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import type { BlockVersion } from '../../model/BlockVersion';
3
+ export declare const renderItems: ({ items, isDotted, version, className, }: {
4
+ items?: string[] | undefined;
5
+ isDotted?: boolean | undefined;
6
+ version?: BlockVersion | undefined;
7
+ className?: string | undefined;
8
+ }) => JSX.Element | null;
@@ -0,0 +1,10 @@
1
+ Object.defineProperty(exports, "__esModule", { value: true });
2
+ exports.renderItems = void 0;
3
+ const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
+ const List_1 = require("../../ui-kit/List/List");
5
+ const renderItems = ({ items, isDotted = true, version = 'primary', className = '', }) => {
6
+ const listVersion = version === 'primary' ? 'gray' : version;
7
+ return items ? ((0, jsx_runtime_1.jsx)(List_1.List, { className: `mt-4 ${className}`, version: listVersion, items: items, listItemSize: "S", isDotted: isDotted })) : null;
8
+ };
9
+ exports.renderItems = renderItems;
10
+ //# sourceMappingURL=renderItems.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"renderItems.js","sourceRoot":"","sources":["../../../src/components/StepsBlock/renderItems.tsx"],"names":[],"mappings":";;;AAAA,iDAA8C;AAGvC,MAAM,WAAW,GAAG,CAAC,EAC1B,KAAK,EACL,QAAQ,GAAG,IAAI,EACf,OAAO,GAAG,SAAS,EACnB,SAAS,GAAG,EAAE,GAMf,EAAE,EAAE;IACH,MAAM,WAAW,GAAG,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC;IAE7D,OAAO,KAAK,CAAC,CAAC,CAAC,CACb,uBAAC,WAAI,IACH,SAAS,EAAE,QAAQ,SAAS,EAAE,EAC9B,OAAO,EAAE,WAAW,EACpB,KAAK,EAAE,KAAK,EACZ,YAAY,EAAC,GAAG,EAChB,QAAQ,EAAE,QAAQ,GAClB,CACH,CAAC,CAAC,CAAC,IAAI,CAAC;AACX,CAAC,CAAC;AAtBW,QAAA,WAAW,eAsBtB"}
@@ -0,0 +1,14 @@
1
+ /// <reference types="react" />
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
+ export declare const renderStepContent: ({ styleMap, isMainButton, version, router, handlerDecorator, }: {
7
+ styleMap: StyleType;
8
+ isMainButton: boolean;
9
+ version: BlockVersion;
10
+ router: Router;
11
+ handlerDecorator?: HandlerDecorator | undefined;
12
+ }) => (step: Step, i: number, { length }: {
13
+ length: number;
14
+ }) => JSX.Element;
@@ -0,0 +1,20 @@
1
+ Object.defineProperty(exports, "__esModule", { value: true });
2
+ exports.renderStepContent = void 0;
3
+ const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
+ const Button_1 = require("../../ui-kit/Button/Button");
5
+ const renderItems_1 = require("./renderItems");
6
+ const useLink_1 = require("../../hooks/useLink");
7
+ const renderStepContent = ({ styleMap, isMainButton, version, router, handlerDecorator, }) => (step, i, { length }) => {
8
+ const { label, description, button, items, isDotted } = step;
9
+ const additionalMarginClass = `${button?.text ? 'mb-8' : ''} ${step?.label ? 'mt-2' : 'mt-4'}`;
10
+ const widthContainer = length < 5 ? 'w-[276px]' : 'w-[210px]';
11
+ return ((0, jsx_runtime_1.jsxs)("div", { className: `flex flex-col items-center text-center relative
12
+ whitespace-pre-line overflow-hidden ${widthContainer}`, children: [renderStepLabel(label), renderStepDescription({
13
+ description,
14
+ className: `${styleMap.description} ${additionalMarginClass}`,
15
+ }), (0, renderItems_1.renderItems)({ items, isDotted, version, className: styleMap.description }), button?.text && !isMainButton ? ((0, jsx_runtime_1.jsx)(Button_1.Button, { className: "box-border py-3 h-12 w-full max-w-[240px] mt-auto", ...(0, useLink_1.useLink)({ router, handlerDecorator }, button), version: version, children: button.text })) : null] }, String(i)));
16
+ };
17
+ exports.renderStepContent = renderStepContent;
18
+ const renderStepLabel = (label) => label ? (0, jsx_runtime_1.jsx)("div", { className: "text-x6 m-0 mt-4", children: label }) : null;
19
+ const renderStepDescription = ({ description, className = '', }) => (description ? (0, jsx_runtime_1.jsx)("div", { className: className, children: description }) : null);
20
+ //# sourceMappingURL=renderStepContent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"renderStepContent.js","sourceRoot":"","sources":["../../../src/components/StepsBlock/renderStepContent.tsx"],"names":[],"mappings":";;;AAAA,uDAAoD;AAKpD,+CAA4C;AAC5C,iDAA8C;AAEvC,MAAM,iBAAiB,GAC5B,CAAC,EACC,QAAQ,EACR,YAAY,EACZ,OAAO,EACP,MAAM,EACN,gBAAgB,GAOjB,EAAE,EAAE,CACL,CAAC,IAAU,EAAE,CAAS,EAAE,EAAE,MAAM,EAAsB,EAAE,EAAE;IACxD,MAAM,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,GAAG,IAAI,CAAC;IAE7D,MAAM,qBAAqB,GAAG,GAAG,MAAM,EAAE,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,IAAI,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC/F,MAAM,cAAc,GAAG,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,WAAW,CAAC;IAE9D,OAAO,CACL,iCAEE,SAAS,EAAE;8CAC2B,cAAc,EAAE,aAErD,eAAe,CAAC,KAAK,CAAC,EACtB,qBAAqB,CAAC;gBACrB,WAAW;gBACX,SAAS,EAAE,GAAG,QAAQ,CAAC,WAAW,IAAI,qBAAqB,EAAE;aAC9D,CAAC,EACD,IAAA,yBAAW,EAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,OAAO,EAAE,SAAS,EAAE,QAAQ,CAAC,WAAW,EAAE,CAAC,EAC1E,MAAM,EAAE,IAAI,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAC/B,uBAAC,eAAM,IACL,SAAS,EAAC,mDAAmD,KACzD,IAAA,iBAAO,EAAC,EAAE,MAAM,EAAE,gBAAgB,EAAE,EAAE,MAAM,CAAC,EACjD,OAAO,EAAE,OAAO,YAEf,MAAM,CAAC,IAAI,GACL,CACV,CAAC,CAAC,CAAC,IAAI,KAlBH,MAAM,CAAC,CAAC,CAAC,CAmBV,CACP,CAAC;AACJ,CAAC,CAAC;AA3CS,QAAA,iBAAiB,qBA2C1B;AAEJ,MAAM,eAAe,GAAG,CAAC,KAAc,EAAE,EAAE,CACzC,KAAK,CAAC,CAAC,CAAC,gCAAK,SAAS,EAAC,kBAAkB,YAAE,KAAK,GAAO,CAAC,CAAC,CAAC,IAAI,CAAC;AAEjE,MAAM,qBAAqB,GAAG,CAAC,EAC7B,WAAW,EACX,SAAS,GAAG,EAAE,GAIf,EAAE,EAAE,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,gCAAK,SAAS,EAAE,SAAS,YAAG,WAAW,GAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC"}
@@ -4,8 +4,7 @@ const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
4
  const Button_1 = require("../../ui-kit/Button/Button");
5
5
  const Img_1 = require("../../ui-kit/Img/Img");
6
6
  const List_1 = require("../../ui-kit/List/List");
7
- const getButtonAriaLabel_1 = require("./utils/getButtonAriaLabel");
8
- const renderButtonsCellData = ({ buttons }) => buttons && buttons?.length ? ((0, jsx_runtime_1.jsx)("div", { children: buttons.map(({ icon, rounded, ...buttonProps }, idx) => ((0, jsx_runtime_1.jsx)(Button_1.Button, { className: `mt-3 ${idx > 0 && rounded ? 'ml-2.5' : ''} ${icon ? 'w-12 h-12' : ''}`, ariaLabel: (0, getButtonAriaLabel_1.getButtonAriaLabel)(icon), rounded: rounded, appendLeft: icon?.src || icon?.icon ? (0, jsx_runtime_1.jsx)(Img_1.Img, { image: icon, width: "24px", height: "24px", asSVG: true }) : null, ...buttonProps, "aria-label": icon }, String(idx)))) })) : null;
7
+ const renderButtonsCellData = ({ buttons }) => buttons && buttons?.length ? ((0, jsx_runtime_1.jsx)("div", { children: buttons.map(({ rounded, appendLeft, ariaLabel, ...buttonProps }, idx) => ((0, jsx_runtime_1.jsx)(Button_1.Button, { className: `mt-3 ${idx > 0 && rounded ? 'ml-2.5' : ''} ${appendLeft ? 'w-12 h-12' : ''}`, appendLeft: appendLeft, rounded: rounded, ariaLabel: ariaLabel, ...buttonProps }, String(idx)))) })) : null;
9
8
  const renderLabelDescriptionCellData = ({ label, description }) => {
10
9
  const labelClassName = `text-xl font-medium m-0 ${description ? 'mb-1' : ''}`;
11
10
  return ((0, jsx_runtime_1.jsxs)("div", { children: [label ? (0, jsx_runtime_1.jsx)("div", { className: labelClassName, children: label }) : null, description ? (0, jsx_runtime_1.jsx)("div", { className: "text-s text-secondary-text", children: description }) : null] }));
@@ -1 +1 @@
1
- {"version":3,"file":"EmbeddableCellData.js","sourceRoot":"","sources":["../../../src/components/TariffsTable/EmbeddableCellData.tsx"],"names":[],"mappings":";;;AAAA,uDAAoD;AAEpD,8CAA2C;AAE3C,iDAA8C;AAG9C,mEAAgE;AAQhE,MAAM,qBAAqB,GAAG,CAAC,EAAE,OAAO,EAAiB,EAAE,EAAE,CAC3D,OAAO,IAAI,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC,CAC3B,0CACG,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,GAAG,WAAW,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CACvD,uBAAC,eAAM,IACL,SAAS,EAAE,QAAQ,GAAG,GAAG,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,IAAI,IAAI,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,EAAE,EAElF,SAAS,EAAE,IAAA,uCAAkB,EAAC,IAAI,CAAC,EACnC,OAAO,EAAE,OAAO,EAChB,UAAU,EACR,IAAI,EAAE,GAAG,IAAI,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,uBAAC,SAAG,IAAC,KAAK,EAAE,IAAI,EAAE,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,EAAC,KAAK,SAAG,CAAC,CAAC,CAAC,IAAI,KAEpF,WAAW,gBACH,IAAI,IAPX,MAAM,CAAC,GAAG,CAAC,CAQhB,CACH,CAAC,GACE,CACP,CAAC,CAAC,CAAC,IAAI,CAAC;AAEX,MAAM,8BAA8B,GAAG,CAAC,EAAE,KAAK,EAAE,WAAW,EAAwB,EAAE,EAAE;IACtF,MAAM,cAAc,GAAG,2BAA2B,WAAW,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC;IAE9E,OAAO,CACL,4CACG,KAAK,CAAC,CAAC,CAAC,gCAAK,SAAS,EAAE,cAAc,YAAG,KAAK,GAAO,CAAC,CAAC,CAAC,IAAI,EAC5D,WAAW,CAAC,CAAC,CAAC,gCAAK,SAAS,EAAC,4BAA4B,YAAE,WAAW,GAAO,CAAC,CAAC,CAAC,IAAI,IACjF,CACP,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,iBAAiB,GAAG,CAAC,EAAE,KAAK,EAAgB,EAAE,EAAE,CACpD,KAAK,EAAE,GAAG,CAAC,CAAC,CAAC,uBAAC,SAAG,IAAC,KAAK,EAAE,EAAE,GAAG,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,GAAI,CAAC,CAAC,CAAC,IAAI,CAAC;AAErE,MAAM,kBAAkB,GAAG,CAAC,EAAE,QAAQ,EAAE,GAAG,IAAI,EAAa,EAAE,EAAE,CAAC,CAC/D,uBAAC,WAAI,IACH,SAAS,EAAC,kDAAkD,EAC5D,OAAO,EAAC,MAAM,EACd,QAAQ,EAAE,QAAQ,IAAI,IAAI,KACtB,IAAI,GACR,CACH,CAAC;AAEW,QAAA,kBAAkB,GAAG;IAChC,OAAO,EAAE,qBAAqB;IAC9B,GAAG,EAAE,iBAAiB;IACtB,IAAI,EAAE,kBAAkB;IACxB,gBAAgB,EAAE,8BAA8B;CACjD,CAAC"}
1
+ {"version":3,"file":"EmbeddableCellData.js","sourceRoot":"","sources":["../../../src/components/TariffsTable/EmbeddableCellData.tsx"],"names":[],"mappings":";;;AAAA,uDAAoD;AAEpD,8CAA2C;AAE3C,iDAA8C;AAU9C,MAAM,qBAAqB,GAAG,CAAC,EAAE,OAAO,EAAiB,EAAE,EAAE,CAC3D,OAAO,IAAI,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC,CAC3B,0CACG,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,WAAW,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CACxE,uBAAC,eAAM,IACL,SAAS,EAAE,QAAQ,GAAG,GAAG,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,IAAI,UAAU,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,EAAE,EAExF,UAAU,EAAE,UAAU,EACtB,OAAO,EAAE,OAAO,EAChB,SAAS,EAAE,SAAS,KAChB,WAAW,IAJV,MAAM,CAAC,GAAG,CAAC,CAKhB,CACH,CAAC,GACE,CACP,CAAC,CAAC,CAAC,IAAI,CAAC;AAEX,MAAM,8BAA8B,GAAG,CAAC,EAAE,KAAK,EAAE,WAAW,EAAwB,EAAE,EAAE;IACtF,MAAM,cAAc,GAAG,2BAA2B,WAAW,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC;IAE9E,OAAO,CACL,4CACG,KAAK,CAAC,CAAC,CAAC,gCAAK,SAAS,EAAE,cAAc,YAAG,KAAK,GAAO,CAAC,CAAC,CAAC,IAAI,EAC5D,WAAW,CAAC,CAAC,CAAC,gCAAK,SAAS,EAAC,4BAA4B,YAAE,WAAW,GAAO,CAAC,CAAC,CAAC,IAAI,IACjF,CACP,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,iBAAiB,GAAG,CAAC,EAAE,KAAK,EAAgB,EAAE,EAAE,CACpD,KAAK,EAAE,GAAG,CAAC,CAAC,CAAC,uBAAC,SAAG,IAAC,KAAK,EAAE,EAAE,GAAG,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,GAAI,CAAC,CAAC,CAAC,IAAI,CAAC;AAErE,MAAM,kBAAkB,GAAG,CAAC,EAAE,QAAQ,EAAE,GAAG,IAAI,EAAa,EAAE,EAAE,CAAC,CAC/D,uBAAC,WAAI,IACH,SAAS,EAAC,kDAAkD,EAC5D,OAAO,EAAC,MAAM,EACd,QAAQ,EAAE,QAAQ,IAAI,IAAI,KACtB,IAAI,GACR,CACH,CAAC;AAEW,QAAA,kBAAkB,GAAG;IAChC,OAAO,EAAE,qBAAqB;IAC9B,GAAG,EAAE,iBAAiB;IACtB,IAAI,EAAE,kBAAkB;IACxB,gBAAgB,EAAE,8BAA8B;CACjD,CAAC"}
@@ -8,7 +8,7 @@ exports.TariffsTableCell = (0, uni_jsx_1.JSX)(({ context, cells, isLastRow, rowI
8
8
  return ((0, jsx_runtime_1.jsx)("div", { className: cellWrapperClasses, role: "cell", children: cells.map(renderCellInner(rowIdx, context, cellIdx)) }));
9
9
  });
10
10
  const renderCellInner = (rowIdx, context, cellIdx) => (cell, i) => {
11
- return ((0, jsx_runtime_1.jsxs)("div", { className: cell?.tableCellType === 'Table' ? 'mx-0.5' : `first:pt-5 last:pb-5 pl-10`, children: [i > 0 ? (0, jsx_runtime_1.jsx)("div", { className: "h-5" }) : null, renderCell(cell, context, { rowIdx, cellIdx, fieldIdx: i })] }, String(i)));
11
+ return ((0, jsx_runtime_1.jsxs)("div", { className: cell?.tableCellType === 'Table' ? 'ml-10' : `first:pt-5 last:pb-5 pl-10`, children: [i > 0 ? (0, jsx_runtime_1.jsx)("div", { className: "h-5" }) : null, renderCell(cell, context, { rowIdx, cellIdx, fieldIdx: i })] }, String(i)));
12
12
  };
13
13
  const renderCell = (cell, context, indexes) => {
14
14
  if (!cell) {
@@ -1 +1 @@
1
- {"version":3,"file":"TariffsTableCell.js","sourceRoot":"","sources":["../../../src/components/TariffsTable/TariffsTableCell.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AAGxC,6DAA0D;AAU7C,QAAA,gBAAgB,GAAG,IAAA,aAAG,EACjC,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,EAAE,EAAE;IACjD,MAAM,kBAAkB,GAAG,yGACzB,SAAS,CAAC,CAAC,CAAC,yBAAyB,CAAC,CAAC,CAAC,EAC1C,EAAE,CAAC;IAEH,OAAO,CACL,gCAAK,SAAS,EAAE,kBAAkB,EAAE,IAAI,EAAC,MAAM,YAC5C,KAAK,CAAC,GAAG,CAAC,eAAe,CAAC,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC,GACjD,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,MAAM,eAAe,GACnB,CAAC,MAAc,EAAE,OAA2B,EAAE,OAAe,EAAE,EAAE,CAAC,CAAC,IAAa,EAAE,CAAS,EAAE,EAAE;IAC7F,OAAO,CACL,iCAEE,SAAS,EAAE,IAAI,EAAE,aAAa,KAAK,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,4BAA4B,aAEnF,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,gCAAK,SAAS,EAAC,KAAK,GAAG,CAAC,CAAC,CAAC,IAAI,EACtC,UAAU,CAAC,IAAI,EAAE,OAAO,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC,KAJvD,MAAM,CAAC,CAAC,CAAC,CAKV,CACP,CAAC;AACJ,CAAC,CAAC;AAEJ,MAAM,UAAU,GAAG,CACjB,IAAa,EACb,OAA2B,EAC3B,OAAmC,EACnC,EAAE;IACF,IAAI,CAAC,IAAI,EAAE;QACT,OAAO,IAAI,CAAC;KACb;IAED,MAAM,EAAE,aAAa,EAAE,IAAI,EAAE,GAAG,IAAI,EAAE,GAAG,IAAI,CAAC;IAE9C,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,IAAI,uCAAkB,CAAC,EAAE;QAC1C,OAAO,IAAI,CAAC;KACb;IAED,MAAM,mBAAmB,GAAG,uCAAkB,CAAC,IAAI,CAAC,CAAC;IAErD,OAAO,uBAAC,mBAAmB,IAAC,OAAO,EAAE,OAAO,KAAM,IAAI,KAAM,OAAO,GAAI,CAAC;AAC1E,CAAC,CAAC"}
1
+ {"version":3,"file":"TariffsTableCell.js","sourceRoot":"","sources":["../../../src/components/TariffsTable/TariffsTableCell.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AAGxC,6DAA0D;AAU7C,QAAA,gBAAgB,GAAG,IAAA,aAAG,EACjC,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,EAAE,EAAE;IACjD,MAAM,kBAAkB,GAAG,yGACzB,SAAS,CAAC,CAAC,CAAC,yBAAyB,CAAC,CAAC,CAAC,EAC1C,EAAE,CAAC;IAEH,OAAO,CACL,gCAAK,SAAS,EAAE,kBAAkB,EAAE,IAAI,EAAC,MAAM,YAC5C,KAAK,CAAC,GAAG,CAAC,eAAe,CAAC,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC,GACjD,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,MAAM,eAAe,GACnB,CAAC,MAAc,EAAE,OAA2B,EAAE,OAAe,EAAE,EAAE,CAAC,CAAC,IAAa,EAAE,CAAS,EAAE,EAAE;IAC7F,OAAO,CACL,iCAEE,SAAS,EAAE,IAAI,EAAE,aAAa,KAAK,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,4BAA4B,aAElF,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,gCAAK,SAAS,EAAC,KAAK,GAAG,CAAC,CAAC,CAAC,IAAI,EACtC,UAAU,CAAC,IAAI,EAAE,OAAO,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC,KAJvD,MAAM,CAAC,CAAC,CAAC,CAKV,CACP,CAAC;AACJ,CAAC,CAAC;AAEJ,MAAM,UAAU,GAAG,CACjB,IAAa,EACb,OAA2B,EAC3B,OAAmC,EACnC,EAAE;IACF,IAAI,CAAC,IAAI,EAAE;QACT,OAAO,IAAI,CAAC;KACb;IAED,MAAM,EAAE,aAAa,EAAE,IAAI,EAAE,GAAG,IAAI,EAAE,GAAG,IAAI,CAAC;IAE9C,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,IAAI,uCAAkB,CAAC,EAAE;QAC1C,OAAO,IAAI,CAAC;KACb;IAED,MAAM,mBAAmB,GAAG,uCAAkB,CAAC,IAAI,CAAC,CAAC;IAErD,OAAO,uBAAC,mBAAmB,IAAC,OAAO,EAAE,OAAO,KAAM,IAAI,KAAM,OAAO,GAAI,CAAC;AAC1E,CAAC,CAAC"}
@@ -2,13 +2,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
2
2
  exports.TariffsTableRow = void 0;
3
3
  const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
4
  const uni_jsx_1 = require("@redneckz/uni-jsx");
5
- const Heading_1 = require("../../ui-kit/Heading/Heading");
6
5
  const Img_1 = require("../../ui-kit/Img/Img");
7
6
  const TableCarouselContainer_1 = require("../ComparisonTable/TableCarouselContainer");
8
7
  const constants_1 = require("./constants");
9
8
  const TariffsTableCell_1 = require("./TariffsTableCell");
10
9
  const TariffsTableRowContainer_1 = require("./TariffsTableRowContainer");
11
10
  exports.TariffsTableRow = (0, uni_jsx_1.JSX)(({ row: { header, data }, activeCardIndex, isLastRow, context, rowIdx }) => {
12
- return ((0, jsx_runtime_1.jsxs)(TariffsTableRowContainer_1.TariffsTableRowContainer, { context: context, rowIdx: rowIdx, children: [(0, jsx_runtime_1.jsx)("div", { className: `text-s py-5 ${constants_1.FIRST_CELL_CLASSES} ${constants_1.DIVIDER_CLASSES} ${!isLastRow ? 'border-solid' : ''}`, children: (0, jsx_runtime_1.jsxs)("div", { className: "flex items-center text-primary-text", role: "cell", children: [header?.icon ? ((0, jsx_runtime_1.jsx)(Img_1.Img, { className: "mr-[14px] max-w-6 max-h-6", image: header.icon, width: "24px", height: "24px", asSVG: true })) : null, header?.title ? ((0, jsx_runtime_1.jsx)(Heading_1.Heading, { headingType: header?.headingType || 'h6', as: "h6", title: header?.title })) : null] }) }), data?.length ? ((0, jsx_runtime_1.jsx)(TableCarouselContainer_1.TableCarouselContainer, { activeCardIndex: activeCardIndex, columnWidth: constants_1.COLUMN_WIDTH, version: "tariff", children: data.map((cells, i) => ((0, jsx_runtime_1.jsx)(TariffsTableCell_1.TariffsTableCell, { cells: cells, isLastRow: isLastRow, rowIdx: rowIdx, cellIdx: i, context: context }, String(i)))) })) : null] }));
11
+ return ((0, jsx_runtime_1.jsxs)(TariffsTableRowContainer_1.TariffsTableRowContainer, { context: context, rowIdx: rowIdx, children: [(0, jsx_runtime_1.jsx)("div", { className: `text-s py-5 ${constants_1.FIRST_CELL_CLASSES} ${constants_1.DIVIDER_CLASSES} ${!isLastRow ? 'border-solid' : ''}`, children: (0, jsx_runtime_1.jsxs)("div", { className: "flex items-center text-primary-text", role: "cell", children: [header?.icon ? ((0, jsx_runtime_1.jsx)(Img_1.Img, { className: "mr-[14px] max-w-6 max-h-6", image: header.icon, width: "24px", height: "24px", asSVG: true })) : null, header?.title ? (0, jsx_runtime_1.jsx)("div", { className: "text-m-light", children: header?.title }) : null] }) }), data?.length ? ((0, jsx_runtime_1.jsx)(TableCarouselContainer_1.TableCarouselContainer, { activeCardIndex: activeCardIndex, columnWidth: constants_1.COLUMN_WIDTH, version: "tariff", children: data.map((cells, i) => ((0, jsx_runtime_1.jsx)(TariffsTableCell_1.TariffsTableCell, { cells: cells, isLastRow: isLastRow, rowIdx: rowIdx, cellIdx: i, context: context }, String(i)))) })) : null] }));
13
12
  });
14
13
  //# sourceMappingURL=TariffsTableRow.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"TariffsTableRow.js","sourceRoot":"","sources":["../../../src/components/TariffsTable/TariffsTableRow.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AAExC,0DAAuD;AACvD,8CAA2C;AAC3C,sFAAmF;AACnF,2CAAgF;AAChF,yDAAsD;AAEtD,yEAAsE;AASzD,QAAA,eAAe,GAAG,IAAA,aAAG,EAChC,CAAC,EAAE,GAAG,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,EAAE,eAAe,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,EAAE,EAAE,EAAE;IACzE,OAAO,CACL,wBAAC,mDAAwB,IAAC,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,aACxD,gCACE,SAAS,EAAE,eAAe,8BAAkB,IAAI,2BAAe,IAC7D,CAAC,SAAS,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,EAChC,EAAE,YAEF,iCAAK,SAAS,EAAC,qCAAqC,EAAC,IAAI,EAAC,MAAM,aAC7D,MAAM,EAAE,IAAI,CAAC,CAAC,CAAC,CACd,uBAAC,SAAG,IACF,SAAS,EAAC,2BAA2B,EACrC,KAAK,EAAE,MAAM,CAAC,IAAI,EAClB,KAAK,EAAC,MAAM,EACZ,MAAM,EAAC,MAAM,EACb,KAAK,SACL,CACH,CAAC,CAAC,CAAC,IAAI,EACP,MAAM,EAAE,KAAK,CAAC,CAAC,CAAC,CACf,uBAAC,iBAAO,IAAC,WAAW,EAAE,MAAM,EAAE,WAAW,IAAI,IAAI,EAAE,EAAE,EAAC,IAAI,EAAC,KAAK,EAAE,MAAM,EAAE,KAAK,GAAI,CACpF,CAAC,CAAC,CAAC,IAAI,IACJ,GACF,EACL,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CACd,uBAAC,+CAAsB,IACrB,eAAe,EAAE,eAAe,EAChC,WAAW,EAAE,wBAAY,EACzB,OAAO,EAAC,QAAQ,YAEf,IAAI,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC,CACtB,uBAAC,mCAAgB,IAEf,KAAK,EAAE,KAAK,EACZ,SAAS,EAAE,SAAS,EACpB,MAAM,EAAE,MAAM,EACd,OAAO,EAAE,CAAC,EACV,OAAO,EAAE,OAAO,IALX,MAAM,CAAC,CAAC,CAAC,CAMd,CACH,CAAC,GACqB,CAC1B,CAAC,CAAC,CAAC,IAAI,IACiB,CAC5B,CAAC;AACJ,CAAC,CACF,CAAC"}
1
+ {"version":3,"file":"TariffsTableRow.js","sourceRoot":"","sources":["../../../src/components/TariffsTable/TariffsTableRow.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AAExC,8CAA2C;AAC3C,sFAAmF;AACnF,2CAAgF;AAChF,yDAAsD;AAEtD,yEAAsE;AASzD,QAAA,eAAe,GAAG,IAAA,aAAG,EAChC,CAAC,EAAE,GAAG,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,EAAE,eAAe,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,EAAE,EAAE,EAAE;IACzE,OAAO,CACL,wBAAC,mDAAwB,IAAC,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,aACxD,gCACE,SAAS,EAAE,eAAe,8BAAkB,IAAI,2BAAe,IAC7D,CAAC,SAAS,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,EAChC,EAAE,YAEF,iCAAK,SAAS,EAAC,qCAAqC,EAAC,IAAI,EAAC,MAAM,aAC7D,MAAM,EAAE,IAAI,CAAC,CAAC,CAAC,CACd,uBAAC,SAAG,IACF,SAAS,EAAC,2BAA2B,EACrC,KAAK,EAAE,MAAM,CAAC,IAAI,EAClB,KAAK,EAAC,MAAM,EACZ,MAAM,EAAC,MAAM,EACb,KAAK,SACL,CACH,CAAC,CAAC,CAAC,IAAI,EACP,MAAM,EAAE,KAAK,CAAC,CAAC,CAAC,gCAAK,SAAS,EAAC,cAAc,YAAE,MAAM,EAAE,KAAK,GAAO,CAAC,CAAC,CAAC,IAAI,IACvE,GACF,EACL,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CACd,uBAAC,+CAAsB,IACrB,eAAe,EAAE,eAAe,EAChC,WAAW,EAAE,wBAAY,EACzB,OAAO,EAAC,QAAQ,YAEf,IAAI,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC,CACtB,uBAAC,mCAAgB,IAEf,KAAK,EAAE,KAAK,EACZ,SAAS,EAAE,SAAS,EACpB,MAAM,EAAE,MAAM,EACd,OAAO,EAAE,CAAC,EACV,OAAO,EAAE,OAAO,IALX,MAAM,CAAC,CAAC,CAAC,CAMd,CACH,CAAC,GACqB,CAC1B,CAAC,CAAC,CAAC,IAAI,IACiB,CAC5B,CAAC;AACJ,CAAC,CACF,CAAC"}
@@ -1,5 +1,7 @@
1
1
  Object.defineProperty(exports, "__esModule", { value: true });
2
2
  exports.TARIFFS_TABLE_INNER_TABLE_FIXTURE_EXAMPLE = exports.TARIFFS_TABLE_FIXTURE_EXAMPLE = exports.columnsTable = exports.columns = void 0;
3
+ const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
+ const Img_1 = require("../../ui-kit/Img/Img");
3
5
  const title = 'Заголовок';
4
6
  const description = 'Описание предоставляемого продукта';
5
7
  const image = {
@@ -77,14 +79,14 @@ exports.columns = [
77
79
  tableCellType: 'Buttons',
78
80
  buttons: [
79
81
  {
80
- icon: { icon: 'AppleIcon' },
82
+ appendLeft: (0, jsx_runtime_1.jsx)(Img_1.Img, { image: { icon: 'AppleIcon' }, width: "24", height: "24", asSVG: true }),
81
83
  rounded: true,
82
84
  version: 'secondary',
83
85
  href: '/',
84
86
  target: '_blank',
85
87
  },
86
88
  {
87
- icon: { icon: 'PlayMarketIcon' },
89
+ appendLeft: (0, jsx_runtime_1.jsx)(Img_1.Img, { image: { icon: 'PlayMarketIcon' }, width: "24", height: "24", asSVG: true }),
88
90
  rounded: true,
89
91
  version: 'secondary',
90
92
  href: '/',
@@ -1 +1 @@
1
- {"version":3,"file":"dataFixture.js","sourceRoot":"","sources":["../../../src/components/TariffsTable/dataFixture.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"dataFixture.js","sourceRoot":"","sources":["../../../src/components/TariffsTable/dataFixture.tsx"],"names":[],"mappings":"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"}
@@ -1,2 +1,2 @@
1
1
  import type { Picture } from '../../../model/Picture';
2
- export declare const getButtonAriaLabel: (icon: Picture | undefined) => any;
2
+ export declare const getButtonAriaLabel: (icon: Picture | undefined) => string;
@@ -1,6 +1,5 @@
1
1
  Object.defineProperty(exports, "__esModule", { value: true });
2
2
  exports.getButtonAriaLabel = void 0;
3
- const IconName_1 = require("../../../icons/IconName");
4
- const getButtonAriaLabel = (icon) => icon?.alt || icon?.title || IconName_1.IconTitleMap[icon?.icon ? icon.icon : ''];
3
+ const getButtonAriaLabel = (icon) => icon?.alt || icon?.title || '';
5
4
  exports.getButtonAriaLabel = getButtonAriaLabel;
6
5
  //# sourceMappingURL=getButtonAriaLabel.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"getButtonAriaLabel.js","sourceRoot":"","sources":["../../../../src/components/TariffsTable/utils/getButtonAriaLabel.ts"],"names":[],"mappings":";;AACA,sDAAuD;AAEhD,MAAM,kBAAkB,GAAG,CAAC,IAAyB,EAAE,EAAE,CAC9D,IAAI,EAAE,GAAG,IAAI,IAAI,EAAE,KAAK,IAAI,uBAAY,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;AAD3D,QAAA,kBAAkB,sBACyC"}
1
+ {"version":3,"file":"getButtonAriaLabel.js","sourceRoot":"","sources":["../../../../src/components/TariffsTable/utils/getButtonAriaLabel.ts"],"names":[],"mappings":";;AAEO,MAAM,kBAAkB,GAAG,CAAC,IAAyB,EAAE,EAAE,CAAC,IAAI,EAAE,GAAG,IAAI,IAAI,EAAE,KAAK,IAAI,EAAE,CAAC;AAAnF,QAAA,kBAAkB,sBAAiE"}
@@ -15,10 +15,9 @@ const getTileRightPadding_1 = require("../BaseTile/getTileRightPadding");
15
15
  exports.Tile = (0, uni_jsx_1.JSX)((props) => {
16
16
  const { context, title, headingType = 'h3', description, items, children, buttons, image, isDotted = true, listItemSize = 'M', className = '', version = 'primary', ...rest } = props;
17
17
  const headingClassName = version === 'primary' ? 'text-primary-text' : '';
18
- return ((0, jsx_runtime_1.jsx)(BlockWrapper_1.BlockWrapper, { context: context, className: `overflow-hidden font-sans p-9 pr-3 box-border ${className} ${BlockVersion_1.VersionStyleMap[version]} ${(0, getTileRightPadding_1.getTileRightPadding)(className)} ${(0, getTileMinHeight_1.getTileMinHeight)(className)} `, ...rest, children: (0, jsx_runtime_1.jsxs)(BaseTile_1.BaseTile, { context: context, title: title ? ((0, jsx_runtime_1.jsx)(Heading_1.Heading, { headingType: headingType, as: "h2", title: title, className: `whitespace-pre-wrap max-w-[600px] ${headingClassName}` })) : null, buttons: buttons?.length ? ((0, jsx_runtime_1.jsx)(ButtonSection_1.ButtonSection, { context: context, buttons: buttons.map((button) => ({ ...button, className: 'w-[158px]' })), className: "flex mt-8 gap-3" })) : null, image: image?.src ? (0, jsx_runtime_1.jsx)(Img_1.Img, { className: "mt-auto ml-7", image: image }) : null, children: [description ? ((0, jsx_runtime_1.jsx)(Description_1.Description, { className: "max-w-[600px] text-xl-light mt-2", description: description })) : null, children, renderList(items, { version, isDotted, listItemSize })] }) }));
18
+ return ((0, jsx_runtime_1.jsx)(BlockWrapper_1.BlockWrapper, { context: context, className: `overflow-hidden font-sans p-9 pr-3 box-border ${className} ${BlockVersion_1.VersionStyleMap[version]} ${(0, getTileRightPadding_1.getTileRightPadding)(className)} ${(0, getTileMinHeight_1.getTileMinHeight)(className)} `, ...rest, children: (0, jsx_runtime_1.jsxs)(BaseTile_1.BaseTile, { context: context, title: title ? ((0, jsx_runtime_1.jsx)(Heading_1.Heading, { headingType: headingType, as: "h2", title: title, className: `whitespace-pre-wrap max-w-[600px] ${headingClassName}` })) : null, buttons: buttons?.length ? ((0, jsx_runtime_1.jsx)(ButtonSection_1.ButtonSection, { context: context, buttons: buttons.map((button) => ({ ...button, className: 'w-[158px]' })), className: "flex mt-8 gap-3" })) : null, image: image?.src ? (0, jsx_runtime_1.jsx)(Img_1.Img, { className: "mt-auto ml-7", image: image }) : null, children: [description ? ((0, jsx_runtime_1.jsx)(Description_1.Description, { className: "max-w-[600px] text-xl-light mt-2.5", description: description })) : null, children, renderList(items, { version, isDotted, listItemSize })] }) }));
19
19
  });
20
20
  function renderList(items, { version, isDotted, listItemSize }) {
21
- const listVersion = version === 'primary' ? 'tile' : 'tile-white';
22
- return items?.length ? ((0, jsx_runtime_1.jsx)(List_1.List, { items: items, isDotted: isDotted, className: "mt-3", listItemSize: listItemSize, itemClassName: "mb-1.5", version: listVersion })) : null;
21
+ return items?.length ? ((0, jsx_runtime_1.jsx)(List_1.List, { items: items, isDotted: isDotted, className: "mt-2.5", listItemSize: listItemSize, itemClassName: "mb-1.5", version: version })) : null;
23
22
  }
24
23
  //# sourceMappingURL=Tile.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Tile.js","sourceRoot":"","sources":["../../../src/components/Tile/Tile.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AACxC,2DAA2D;AAE3D,4DAAyD;AACzD,qEAAkE;AAClE,sEAAmE;AACnE,0DAAuD;AACvD,8CAA2C;AAC3C,iDAA8C;AAE9C,mDAAgD;AAChD,mEAAgE;AAChE,yEAAsE;AAOzD,QAAA,IAAI,GAAG,IAAA,aAAG,EAAY,CAAC,KAAK,EAAE,EAAE;IAC3C,MAAM,EACJ,OAAO,EACP,KAAK,EACL,WAAW,GAAG,IAAI,EAClB,WAAW,EACX,KAAK,EACL,QAAQ,EACR,OAAO,EACP,KAAK,EACL,QAAQ,GAAG,IAAI,EACf,YAAY,GAAG,GAAG,EAClB,SAAS,GAAG,EAAE,EACd,OAAO,GAAG,SAAS,EACnB,GAAG,IAAI,EACR,GAAG,KAAK,CAAC;IACV,MAAM,gBAAgB,GAAG,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC,mBAAmB,CAAC,CAAC,CAAC,EAAE,CAAC;IAE1E,OAAO,CACL,uBAAC,2BAAY,IACX,OAAO,EAAE,OAAO,EAChB,SAAS,EAAE,iDAAiD,SAAS,IACnE,8BAAe,CAAC,OAAO,CACzB,IAAI,IAAA,yCAAmB,EAAC,SAAS,CAAC,IAAI,IAAA,mCAAgB,EAAC,SAAS,CAAC,GAAG,KAChE,IAAI,YAER,wBAAC,mBAAQ,IACP,OAAO,EAAE,OAAO,EAChB,KAAK,EACH,KAAK,CAAC,CAAC,CAAC,CACN,uBAAC,iBAAO,IACN,WAAW,EAAE,WAAW,EACxB,EAAE,EAAC,IAAI,EACP,KAAK,EAAE,KAAK,EACZ,SAAS,EAAE,qCAAqC,gBAAgB,EAAE,GAClE,CACH,CAAC,CAAC,CAAC,IAAI,EAEV,OAAO,EACL,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC,CAChB,uBAAC,6BAAa,IACZ,OAAO,EAAE,OAAO,EAChB,OAAO,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,MAAM,EAAE,SAAS,EAAE,WAAW,EAAE,CAAC,CAAC,EACzE,SAAS,EAAC,iBAAiB,GAC3B,CACH,CAAC,CAAC,CAAC,IAAI,EAEV,KAAK,EAAE,KAAK,EAAE,GAAG,CAAC,CAAC,CAAC,uBAAC,SAAG,IAAC,SAAS,EAAC,cAAc,EAAC,KAAK,EAAE,KAAK,GAAI,CAAC,CAAC,CAAC,IAAI,aAExE,WAAW,CAAC,CAAC,CAAC,CACb,uBAAC,yBAAW,IAAC,SAAS,EAAC,kCAAkC,EAAC,WAAW,EAAE,WAAW,GAAI,CACvF,CAAC,CAAC,CAAC,IAAI,EACP,QAAQ,EACR,UAAU,CAAC,KAAK,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,CAAC,IAC9C,GACE,CAChB,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,SAAS,UAAU,CAAC,KAAK,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAa;IACvE,MAAM,WAAW,GAAG,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,YAAY,CAAC;IAElE,OAAO,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,CACrB,uBAAC,WAAI,IACH,KAAK,EAAE,KAAK,EACZ,QAAQ,EAAE,QAAQ,EAClB,SAAS,EAAC,MAAM,EAChB,YAAY,EAAE,YAAY,EAC1B,aAAa,EAAC,QAAQ,EACtB,OAAO,EAAE,WAAW,GACpB,CACH,CAAC,CAAC,CAAC,IAAI,CAAC;AACX,CAAC"}
1
+ {"version":3,"file":"Tile.js","sourceRoot":"","sources":["../../../src/components/Tile/Tile.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AACxC,2DAA2D;AAE3D,4DAAyD;AACzD,qEAAkE;AAClE,sEAAmE;AACnE,0DAAuD;AACvD,8CAA2C;AAC3C,iDAA8C;AAE9C,mDAAgD;AAChD,mEAAgE;AAChE,yEAAsE;AAOzD,QAAA,IAAI,GAAG,IAAA,aAAG,EAAY,CAAC,KAAK,EAAE,EAAE;IAC3C,MAAM,EACJ,OAAO,EACP,KAAK,EACL,WAAW,GAAG,IAAI,EAClB,WAAW,EACX,KAAK,EACL,QAAQ,EACR,OAAO,EACP,KAAK,EACL,QAAQ,GAAG,IAAI,EACf,YAAY,GAAG,GAAG,EAClB,SAAS,GAAG,EAAE,EACd,OAAO,GAAG,SAAS,EACnB,GAAG,IAAI,EACR,GAAG,KAAK,CAAC;IACV,MAAM,gBAAgB,GAAG,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC,mBAAmB,CAAC,CAAC,CAAC,EAAE,CAAC;IAE1E,OAAO,CACL,uBAAC,2BAAY,IACX,OAAO,EAAE,OAAO,EAChB,SAAS,EAAE,iDAAiD,SAAS,IACnE,8BAAe,CAAC,OAAO,CACzB,IAAI,IAAA,yCAAmB,EAAC,SAAS,CAAC,IAAI,IAAA,mCAAgB,EAAC,SAAS,CAAC,GAAG,KAChE,IAAI,YAER,wBAAC,mBAAQ,IACP,OAAO,EAAE,OAAO,EAChB,KAAK,EACH,KAAK,CAAC,CAAC,CAAC,CACN,uBAAC,iBAAO,IACN,WAAW,EAAE,WAAW,EACxB,EAAE,EAAC,IAAI,EACP,KAAK,EAAE,KAAK,EACZ,SAAS,EAAE,qCAAqC,gBAAgB,EAAE,GAClE,CACH,CAAC,CAAC,CAAC,IAAI,EAEV,OAAO,EACL,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC,CAChB,uBAAC,6BAAa,IACZ,OAAO,EAAE,OAAO,EAChB,OAAO,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,MAAM,EAAE,SAAS,EAAE,WAAW,EAAE,CAAC,CAAC,EACzE,SAAS,EAAC,iBAAiB,GAC3B,CACH,CAAC,CAAC,CAAC,IAAI,EAEV,KAAK,EAAE,KAAK,EAAE,GAAG,CAAC,CAAC,CAAC,uBAAC,SAAG,IAAC,SAAS,EAAC,cAAc,EAAC,KAAK,EAAE,KAAK,GAAI,CAAC,CAAC,CAAC,IAAI,aAExE,WAAW,CAAC,CAAC,CAAC,CACb,uBAAC,yBAAW,IAAC,SAAS,EAAC,oCAAoC,EAAC,WAAW,EAAE,WAAW,GAAI,CACzF,CAAC,CAAC,CAAC,IAAI,EACP,QAAQ,EACR,UAAU,CAAC,KAAK,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,CAAC,IAC9C,GACE,CAChB,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,SAAS,UAAU,CAAC,KAAK,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAa;IACvE,OAAO,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,CACrB,uBAAC,WAAI,IACH,KAAK,EAAE,KAAK,EACZ,QAAQ,EAAE,QAAQ,EAClB,SAAS,EAAC,QAAQ,EAClB,YAAY,EAAE,YAAY,EAC1B,aAAa,EAAC,QAAQ,EACtB,OAAO,EAAE,OAAO,GAChB,CACH,CAAC,CAAC,CAAC,IAAI,CAAC;AACX,CAAC"}
@@ -0,0 +1,5 @@
1
+ interface Ref {
2
+ current: HTMLInputElement | null;
3
+ }
4
+ export declare function useOutsideClick(wrapperRef: Ref, setIsOpen: (_: boolean) => void): void;
5
+ export {};
@@ -0,0 +1,21 @@
1
+ Object.defineProperty(exports, "__esModule", { value: true });
2
+ exports.useOutsideClick = void 0;
3
+ const hooks_1 = require("@redneckz/uni-jsx/lib/hooks");
4
+ function useOutsideClick(wrapperRef, setIsOpen) {
5
+ (0, hooks_1.useEffect)(() => {
6
+ function handleClickOutside(event) {
7
+ if (wrapperRef &&
8
+ wrapperRef.current &&
9
+ event.target instanceof HTMLElement &&
10
+ !wrapperRef.current.contains(event.target)) {
11
+ setIsOpen(false);
12
+ }
13
+ }
14
+ document.addEventListener('click', handleClickOutside);
15
+ return () => {
16
+ document.removeEventListener('click', handleClickOutside);
17
+ };
18
+ }, []);
19
+ }
20
+ exports.useOutsideClick = useOutsideClick;
21
+ //# sourceMappingURL=useOutsideClick.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useOutsideClick.js","sourceRoot":"","sources":["../../src/hooks/useOutsideClick.ts"],"names":[],"mappings":";;AAAA,uDAAwD;AAMxD,SAAgB,eAAe,CAAC,UAAe,EAAE,SAA+B;IAC9E,IAAA,iBAAS,EAAC,GAAG,EAAE;QACb,SAAS,kBAAkB,CAAC,KAAiB;YAC3C,IACE,UAAU;gBACV,UAAU,CAAC,OAAO;gBAClB,KAAK,CAAC,MAAM,YAAY,WAAW;gBACnC,CAAC,UAAU,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,EAC1C;gBACA,SAAS,CAAC,KAAK,CAAC,CAAC;aAClB;QACH,CAAC;QACD,QAAQ,CAAC,gBAAgB,CAAC,OAAO,EAAE,kBAAkB,CAAC,CAAC;QAEvD,OAAO,GAAG,EAAE;YACV,QAAQ,CAAC,mBAAmB,CAAC,OAAO,EAAE,kBAAkB,CAAC,CAAC;QAC5D,CAAC,CAAC;IACJ,CAAC,EAAE,EAAE,CAAC,CAAC;AACT,CAAC;AAlBD,0CAkBC"}
@@ -0,0 +1,20 @@
1
+ export interface Tariff {
2
+ tariffType?: string;
3
+ tariffValue?: number;
4
+ }
5
+ export interface SafeBoxCase {
6
+ safeBoxCasesSize?: string;
7
+ tariffs?: Tariff[];
8
+ }
9
+ export interface SafeBoxCaseVolume {
10
+ volume?: string;
11
+ safeBoxCases?: SafeBoxCase[];
12
+ }
13
+ export interface Branch {
14
+ branchCode?: string;
15
+ address?: string;
16
+ gpsLatitude?: number;
17
+ gpsLongitude?: number;
18
+ safeBoxCaseVolumes?: SafeBoxCaseVolume[];
19
+ }
20
+ export declare function useSafeBoxes(regionCode?: string): Branch[];
@@ -1,17 +1,16 @@
1
1
  Object.defineProperty(exports, "__esModule", { value: true });
2
- exports.useFetchSafeBoxes = void 0;
2
+ exports.useSafeBoxes = void 0;
3
3
  const useAsyncData_1 = require("@redneckz/uni-jsx/lib/hooks/useAsyncData");
4
4
  const fetchJSON_1 = require("../utils/fetchJSON");
5
5
  const SAFEBOXES_URL = '/api/v1/safeboxes';
6
- function useFetchSafeBoxes(regionCode) {
6
+ const EMPTY_VALUE = [];
7
+ function useSafeBoxes(regionCode) {
7
8
  const { data } = (0, useAsyncData_1.useAsyncData)(regionCode ? `${SAFEBOXES_URL}?regionCode=${regionCode}` : null, fetchSafeBoxes);
8
- return data || [];
9
+ return data || EMPTY_VALUE;
9
10
  }
10
- exports.useFetchSafeBoxes = useFetchSafeBoxes;
11
- const fetchSafeBoxes = (url) => {
12
- if (!url) {
13
- return {};
14
- }
15
- return (0, fetchJSON_1.fetchJSON)(url, { method: 'GET' });
11
+ exports.useSafeBoxes = useSafeBoxes;
12
+ const fetchSafeBoxes = async (url) => {
13
+ const result = await (0, fetchJSON_1.fetchJSON)(url, { method: 'GET' });
14
+ return result || EMPTY_VALUE;
16
15
  };
17
- //# sourceMappingURL=useFetchSafeBoxes.js.map
16
+ //# sourceMappingURL=useSafeBoxes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useSafeBoxes.js","sourceRoot":"","sources":["../../src/hooks/useSafeBoxes.ts"],"names":[],"mappings":";;AAAA,2EAAwE;AACxE,kDAA+C;AAyB/C,MAAM,aAAa,GAAG,mBAAmB,CAAC;AAC1C,MAAM,WAAW,GAAG,EAAE,CAAC;AAEvB,SAAgB,YAAY,CAAC,UAAmB;IAC9C,MAAM,EAAE,IAAI,EAAE,GAAG,IAAA,2BAAY,EAC3B,UAAU,CAAC,CAAC,CAAC,GAAG,aAAa,eAAe,UAAU,EAAE,CAAC,CAAC,CAAC,IAAI,EAC/D,cAAc,CACf,CAAC;IAEF,OAAO,IAAI,IAAI,WAAW,CAAC;AAC7B,CAAC;AAPD,oCAOC;AAED,MAAM,cAAc,GAAG,KAAK,EAAE,GAAW,EAAqB,EAAE;IAC9D,MAAM,MAAM,GAAG,MAAM,IAAA,qBAAS,EAAW,GAAG,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,CAAC;IAEjE,OAAO,MAAM,IAAI,WAAW,CAAC;AAC/B,CAAC,CAAC"}
@@ -1,95 +1,4 @@
1
- export declare const IconInverseMap: {
2
- ActualBalanceIcon: boolean;
3
- AirPlaneIcon: boolean;
4
- AppleIcon: boolean;
5
- ArrowDownIcon: boolean;
6
- ArrowLeftIcon: boolean;
7
- ArrowUpIcon: boolean;
8
- AtmIcon: boolean;
9
- BankIcon: boolean;
10
- BuildingIcon: boolean;
11
- BurgerIcon: boolean;
12
- Calendar2Icon: boolean;
13
- CalendarCircleIcon: boolean;
14
- CalendarIcon: boolean;
15
- CalendarTickIcon: boolean;
16
- Car2Icon: boolean;
17
- CardIcon: boolean;
18
- CardPosIcon: boolean;
19
- CardTickIcon: boolean;
20
- CardWithGemIcon: boolean;
21
- CarIcon: boolean;
22
- ChartSquareIcon: boolean;
23
- CinemaIcon: boolean;
24
- ClockIcon: boolean;
25
- CloseIcon: boolean;
26
- ComfortableCompIcon: boolean;
27
- CreditCardsIcon: boolean;
28
- DiscountShapeIcon: boolean;
29
- DocDownloadIcon: boolean;
30
- DocIcon: boolean;
31
- DocIconMonoColor: boolean;
32
- DocsIcon: boolean;
33
- DocumentTextIcon: boolean;
34
- DollarIcon: boolean;
35
- DoneIcon: boolean;
36
- DoneSimpleIcon: boolean;
37
- EarthIcon: boolean;
38
- EmptyWalletChangeIcon: boolean;
39
- EmptyWalletIcon: boolean;
40
- EuroIcon: boolean;
41
- GeolocationIcon: boolean;
42
- GlassIcon: boolean;
43
- GlobalIcon: boolean;
44
- GpsIcon: boolean;
45
- GridIcon: boolean;
46
- InterestGrowthIcon: boolean;
47
- InterestIcon: boolean;
48
- JCBIcon: boolean;
49
- LogoIcon: boolean;
50
- LoupeIcon: boolean;
51
- MapMarkerClusterIcon: boolean;
52
- MapMarkerSingleIcon: boolean;
53
- MasterCardIcon: boolean;
54
- MinusIcon: boolean;
55
- MirIcon: boolean;
56
- MoneyIcon: boolean;
57
- MoneyInsuranceIcon: boolean;
58
- MoneysIcon: boolean;
59
- MonitorMobileIcon: boolean;
60
- NewDocIcon: boolean;
61
- OfficeIcon: boolean;
62
- OkIcon: boolean;
63
- PackA4Icon: boolean;
64
- PassSendIcon: boolean;
65
- PercentageRoundIcon: boolean;
66
- PercentageSquareIcon: boolean;
67
- PersonalCardIcon: boolean;
68
- PlayMarketIcon: boolean;
69
- PlusIcon: boolean;
70
- PowerIcon: boolean;
71
- Profile2UserIcon: boolean;
72
- ProfileIcon: boolean;
73
- PumpkinIcon: boolean;
74
- RoundRubleIcon: boolean;
75
- SafeIcon: boolean;
76
- ShieldTickIcon: boolean;
77
- SignDocsIcon: boolean;
78
- SmallClockIcon: boolean;
79
- SoundIcon: boolean;
80
- StrongBoxIcon: boolean;
81
- TelegramIcon: boolean;
82
- UnionPayIcon: boolean;
83
- UserSquareIcon: boolean;
84
- UserTickIcon: boolean;
85
- VisaIcon: boolean;
86
- VKIcon: boolean;
87
- WalletAdd2Icon: boolean;
88
- WalletAddIcon: boolean;
89
- WalletIcon: boolean;
90
- WalletWithMoneyIcon: boolean;
91
- WateringCanIcon: boolean;
92
- };
1
+ export declare const IconsWithoutInversion: Set<string>;
93
2
  export declare enum IconMap {
94
3
  ActualBalanceIcon = "ActualBalanceIcon",
95
4
  AirPlaneIcon = "AirPlaneIcon",