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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1888) hide show
  1. package/bundle/EventBus/EventBus.d.ts +10 -0
  2. package/bundle/EventBus/EventMap.d.ts +7 -0
  3. package/bundle/ProjectSettings.d.ts +24 -0
  4. package/bundle/api/DaDataAPI.d.ts +15 -0
  5. package/bundle/api/LikeAPI.d.ts +9 -0
  6. package/bundle/blocks.schema.json +1 -1
  7. package/bundle/bundle.umd.js +457 -596
  8. package/bundle/bundle.umd.min.js +1 -1
  9. package/bundle/components/Accordion/Accordion.d.ts +5 -0
  10. package/bundle/components/Accordion/Accordion.mobile.d.ts +5 -0
  11. package/bundle/components/Accordion/AccordionContent.d.ts +45 -0
  12. package/bundle/components/Accordion/AccordionItem.d.ts +2 -0
  13. package/bundle/components/Accordion/AccordionItem.mobile.d.ts +2 -0
  14. package/bundle/components/Accordion/AccordionItemProps.d.ts +5 -0
  15. package/bundle/components/Accordion/AccordionItemsList.d.ts +1 -0
  16. package/bundle/components/BaseTile/BaseTile.d.ts +5 -0
  17. package/bundle/components/BaseTile/BaseTileProps.d.ts +15 -0
  18. package/bundle/components/BaseTile/getTileHeadingType.d.ts +1 -0
  19. package/bundle/components/BaseTile/getTileMinHeight.d.ts +1 -0
  20. package/bundle/components/BaseTile/getTileRightPadding.d.ts +1 -0
  21. package/bundle/components/BenefitsBlock/BenefitsBlock.d.ts +5 -0
  22. package/bundle/components/BenefitsBlock/BenefitsBlockContent.d.ts +52 -0
  23. package/bundle/components/Blocks.d.ts +37 -0
  24. package/bundle/components/Blocks.mobile.d.ts +17 -0
  25. package/bundle/components/Bonus/Bonus.d.ts +5 -0
  26. package/bundle/components/Bonus/BonusContent.d.ts +45 -0
  27. package/bundle/components/BonusBenefitsBlock/BonusBenefitsBlock.d.ts +5 -0
  28. package/bundle/components/BonusBenefitsBlock/BonusBenefitsBlockContent.d.ts +15 -0
  29. package/bundle/components/BonusBenefitsBlock/getElementsColsValue.d.ts +1 -0
  30. package/bundle/components/Calculator/BonusCalculatorForm.d.ts +5 -0
  31. package/bundle/components/Calculator/Calculator.d.ts +5 -0
  32. package/bundle/components/Calculator/CalculatorContent.d.ts +129 -0
  33. package/bundle/components/Calculator/CalculatorValueBlock.d.ts +8 -0
  34. package/bundle/components/Calculator/CreditCalculatorForm.d.ts +7 -0
  35. package/bundle/components/Calculator/DepositCalculatorForm.d.ts +5 -0
  36. package/bundle/components/Calculator/EmbeddableCalcBlocks.d.ts +9 -0
  37. package/bundle/components/Calculator/Rate.d.ts +7 -0
  38. package/bundle/components/Calculator/constants.d.ts +16 -0
  39. package/bundle/components/Calculator/getBonus.d.ts +2 -0
  40. package/bundle/components/Calculator/getCreditRate.d.ts +7 -0
  41. package/bundle/components/Calculator/getDefaultMonths.d.ts +1 -0
  42. package/bundle/components/Calculator/getDefaultSum.d.ts +1 -0
  43. package/bundle/components/Calculator/getMonthlyPayment.d.ts +6 -0
  44. package/bundle/components/Calculator/renderButtonSection.d.ts +2 -0
  45. package/bundle/components/Calculator/renderCalculatorBlock.d.ts +3 -0
  46. package/bundle/components/Calculator/renderFootnote.d.ts +2 -0
  47. package/bundle/components/Calculator/renderInitialFeeInput.d.ts +6 -0
  48. package/bundle/components/Calculator/renderMonthsInput.d.ts +8 -0
  49. package/bundle/components/Calculator/renderPaymentTypeSelector.d.ts +6 -0
  50. package/bundle/components/Calculator/renderProposal.d.ts +2 -0
  51. package/bundle/components/Calculator/renderProposalMortgage.d.ts +8 -0
  52. package/bundle/components/Calculator/renderRealEstateValue.d.ts +6 -0
  53. package/bundle/components/Calculator/renderWantedSumInput.d.ts +11 -0
  54. package/bundle/components/Calculator/useBonusCalculatorParams.d.ts +36 -0
  55. package/bundle/components/Calculator/useCalculatorParams.d.ts +1 -0
  56. package/bundle/components/Calculator/useCreditCalculatorParams.d.ts +27 -0
  57. package/bundle/components/CardTransfer/CardTransfer.d.ts +5 -0
  58. package/bundle/components/CardTransfer/CardTransferContent.d.ts +10 -0
  59. package/bundle/components/Catalog/Catalog.d.ts +5 -0
  60. package/bundle/components/Catalog/CatalogCard.d.ts +7 -0
  61. package/bundle/components/Catalog/CatalogContent.d.ts +25 -0
  62. package/bundle/components/ComparisonTable/ComparisonTable.d.ts +5 -0
  63. package/bundle/components/ComparisonTable/ComparisonTable.mobile.d.ts +5 -0
  64. package/bundle/components/ComparisonTable/ComparisonTableBody.d.ts +12 -0
  65. package/bundle/components/ComparisonTable/ComparisonTableColumnHeaders.d.ts +10 -0
  66. package/bundle/components/ComparisonTable/ComparisonTableContent.d.ts +50 -0
  67. package/bundle/components/ComparisonTable/ComparisonTableRows.d.ts +13 -0
  68. package/bundle/components/ComparisonTable/HeaderCell.d.ts +10 -0
  69. package/bundle/components/ComparisonTable/HeaderCell.mobile.d.ts +11 -0
  70. package/bundle/components/ComparisonTable/TableCarouselContainer.d.ts +7 -0
  71. package/bundle/components/ComparisonTable/TableCell.d.ts +9 -0
  72. package/bundle/components/ComparisonTable/TableCell.mobile.d.ts +9 -0
  73. package/bundle/components/ComparisonTable/TableColumn.d.ts +15 -0
  74. package/bundle/components/ComparisonTable/TableRow.d.ts +14 -0
  75. package/bundle/components/ComparisonTable/TableRowContainer.d.ts +1 -0
  76. package/bundle/components/ComparisonTable/constants.d.ts +6 -0
  77. package/bundle/components/ContentPage/ContentPage.d.ts +10 -0
  78. package/bundle/components/ContentPage/ContentPageContext.d.ts +17 -0
  79. package/bundle/components/ContentPage/ContentPageHead.d.ts +7 -0
  80. package/bundle/components/ContentPage/computeAPIFallback.d.ts +5 -0
  81. package/bundle/components/ContentPage/filterBlocks.d.ts +12 -0
  82. package/bundle/components/ContentPage/filterBlocks.mobile.d.ts +12 -0
  83. package/bundle/components/ContentPage/normalizeBlock.d.ts +11 -0
  84. package/bundle/components/ContentPage/normalizeBlock.mobile.d.ts +2 -0
  85. package/bundle/components/ContentPage/normalizePage.d.ts +3 -0
  86. package/bundle/components/ContentPage/renderBlock.d.ts +13 -0
  87. package/bundle/components/ErrorBlock/ErrorBlock.d.ts +5 -0
  88. package/bundle/components/ErrorBlock/ErrorBlockContent.d.ts +48 -0
  89. package/bundle/components/ExchangeRateTile/CurrencyProps.d.ts +5 -0
  90. package/bundle/components/ExchangeRateTile/CurrencyTable.d.ts +7 -0
  91. package/bundle/components/ExchangeRateTile/CurrentLocation.d.ts +7 -0
  92. package/bundle/components/ExchangeRateTile/ExchangeCurrencyCalculator.d.ts +21 -0
  93. package/bundle/components/ExchangeRateTile/ExchangeRateTile.d.ts +5 -0
  94. package/bundle/components/ExchangeRateTile/ExchangeRateTileContent.d.ts +8 -0
  95. package/bundle/components/ExchangeRateTile/calculateResult.d.ts +2 -0
  96. package/bundle/components/ExchangeRateTile/callbackCurrencySelect.d.ts +8 -0
  97. package/bundle/components/ExchangeRateTile/formatCurrency.d.ts +1 -0
  98. package/bundle/components/ExchangeRateTile/renderInput.d.ts +13 -0
  99. package/bundle/components/Footer/Contacts.d.ts +7 -0
  100. package/bundle/components/Footer/Footer.d.ts +5 -0
  101. package/bundle/components/Footer/Footer.mobile.d.ts +5 -0
  102. package/bundle/components/Footer/FooterContent.d.ts +44 -0
  103. package/bundle/components/Footer/FooterLink.d.ts +5 -0
  104. package/bundle/components/Footer/HorizontalNavigation.d.ts +6 -0
  105. package/bundle/components/Footer/HorizontalNavigation.mobile.d.ts +6 -0
  106. package/bundle/components/Footer/HorizontalNavigationLink.d.ts +8 -0
  107. package/bundle/components/Footer/MediaButton.d.ts +7 -0
  108. package/bundle/components/Footer/Sitemap.d.ts +8 -0
  109. package/bundle/components/Footer/SocialMedia.d.ts +8 -0
  110. package/bundle/components/Footer/SocialMedia.mobile.d.ts +8 -0
  111. package/bundle/components/Footer/TextInformation.d.ts +2 -0
  112. package/bundle/components/Footer/TextInformation.mobile.d.ts +2 -0
  113. package/bundle/components/Footer/TextInformationLink.d.ts +8 -0
  114. package/bundle/components/Gallery/Gallery.d.ts +2 -0
  115. package/bundle/components/Gallery/Gallery.mobile.d.ts +2 -0
  116. package/bundle/components/Gallery/GalleryCardInner.d.ts +2 -0
  117. package/bundle/components/Gallery/GalleryContainer.d.ts +13 -0
  118. package/bundle/components/Gallery/GalleryContent.d.ts +64 -0
  119. package/bundle/components/Gallery/GalleryInner.d.ts +7 -0
  120. package/bundle/components/Gallery/GalleryProps.d.ts +4 -0
  121. package/bundle/components/Gallery/constants.d.ts +4 -0
  122. package/bundle/components/GracePeriod/GracePeriod.d.ts +5 -0
  123. package/bundle/components/GracePeriod/GracePeriodContent.d.ts +32 -0
  124. package/bundle/components/Header/DropdownMenu.d.ts +14 -0
  125. package/bundle/components/Header/Header.d.ts +5 -0
  126. package/bundle/components/Header/Header.fallback.d.ts +2 -0
  127. package/bundle/components/Header/Header.mobile.d.ts +5 -0
  128. package/bundle/components/Header/HeaderBurger.d.ts +11 -0
  129. package/bundle/components/Header/HeaderContent.d.ts +41 -0
  130. package/bundle/components/Header/HeaderSecondaryMenu.d.ts +10 -0
  131. package/bundle/components/Header/HeaderSecondaryMenuButton.d.ts +6 -0
  132. package/bundle/components/Header/HeaderSubMenu.d.ts +9 -0
  133. package/bundle/components/Header/HeaderTop.d.ts +6 -0
  134. package/bundle/components/Headline/Headline.d.ts +5 -0
  135. package/bundle/components/Headline/Headline.mobile.d.ts +5 -0
  136. package/bundle/components/Headline/HeadlineContent.d.ts +15 -0
  137. package/bundle/components/Headline/constants.d.ts +20 -0
  138. package/bundle/components/InsuranceAmountBlock/InsuranceAmountBlock.d.ts +5 -0
  139. package/bundle/components/InsuranceAmountBlock/InsuranceAmountBlockContent.d.ts +30 -0
  140. package/bundle/components/InsuranceAmountBlock/InsuranceAmountBlockInner.d.ts +7 -0
  141. package/bundle/components/InvestmentInfo/InvestmentInfo.d.ts +5 -0
  142. package/bundle/components/InvestmentInfo/InvestmentInfoContent.d.ts +49 -0
  143. package/bundle/components/LikeControl/LikeControl.d.ts +2 -0
  144. package/bundle/components/LinkDocs/LinkDocs.d.ts +5 -0
  145. package/bundle/components/LinkDocs/LinkDocs.mobile.d.ts +5 -0
  146. package/bundle/components/LinkDocs/LinkDocsContent.d.ts +43 -0
  147. package/bundle/components/LinkDocs/LinkDocsHorizontalList.d.ts +6 -0
  148. package/bundle/components/LinkDocs/LinkDocsList.d.ts +9 -0
  149. package/bundle/components/LinkDocs/LinkDocsListItem.d.ts +2 -0
  150. package/bundle/components/LinkDocs/LinkDocsListItem.mobile.d.ts +2 -0
  151. package/bundle/components/LinkDocs/LinkDocsListItemBase.d.ts +13 -0
  152. package/bundle/components/LinkDocs/LinkDocsVerticalList.d.ts +8 -0
  153. package/bundle/components/LinkDocs/linkDocsContentExample.d.ts +2 -0
  154. package/bundle/components/LinkList/LinkList.d.ts +5 -0
  155. package/bundle/components/LinkList/LinkListContent.d.ts +8 -0
  156. package/bundle/components/LinkList/linkListContentExample.d.ts +2 -0
  157. package/bundle/components/MiniGallery/MiniGallery.d.ts +5 -0
  158. package/bundle/components/MiniGallery/MiniGalleryContent.d.ts +12 -0
  159. package/bundle/components/MobileAppTile/MobileAppTile.d.ts +5 -0
  160. package/bundle/components/MobileAppTile/MobileAppTile.mobile.d.ts +5 -0
  161. package/bundle/components/MobileAppTile/MobileAppTileContent.d.ts +31 -0
  162. package/bundle/components/OfficeServicesBlock/OfficeServicesBlock.d.ts +5 -0
  163. package/bundle/components/OfficeServicesBlock/OfficeServicesBlockContent.d.ts +10 -0
  164. package/bundle/components/OtherProducts/OtherProducts.d.ts +5 -0
  165. package/bundle/components/OtherProducts/OtherProductsContent.d.ts +25 -0
  166. package/bundle/components/OtherProducts/OtherProductsItem.d.ts +6 -0
  167. package/bundle/components/PictureText/PictureText.d.ts +5 -0
  168. package/bundle/components/PictureText/PictureTextContent.d.ts +34 -0
  169. package/bundle/components/Placeholder/Placeholder.d.ts +6 -0
  170. package/bundle/components/Placeholder/PlaceholderContent.d.ts +5 -0
  171. package/bundle/components/ProductBlock/ProductBlock.d.ts +5 -0
  172. package/bundle/components/ProductBlock/ProductBlock.mobile.d.ts +5 -0
  173. package/bundle/components/ProductBlock/ProductBlockContent.d.ts +54 -0
  174. package/bundle/components/ProductBlock/ProductBlockInner.d.ts +4 -0
  175. package/bundle/components/ProductBlock/ProductBlockInner.mobile.d.ts +4 -0
  176. package/bundle/components/ProductBlock/renderBackwardButton.d.ts +4 -0
  177. package/bundle/components/ProductBlock/renderBenefit.d.ts +5 -0
  178. package/bundle/components/ProductGallery/ProductGallery.d.ts +5 -0
  179. package/bundle/components/ProductGallery/ProductGallery.mobile.d.ts +5 -0
  180. package/bundle/components/ProductGallery/ProductGalleryBlock.d.ts +8 -0
  181. package/bundle/components/ProductGallery/ProductGalleryContent.d.ts +29 -0
  182. package/bundle/components/ProductTile/ProductTile.d.ts +5 -0
  183. package/bundle/components/ProductTile/ProductTileContent.d.ts +33 -0
  184. package/bundle/components/PromoTile/PromoTile.d.ts +5 -0
  185. package/bundle/components/PromoTile/PromoTileContent.d.ts +12 -0
  186. package/bundle/components/Recommendation/Recommendation.d.ts +5 -0
  187. package/bundle/components/Recommendation/RecommendationCard.d.ts +7 -0
  188. package/bundle/components/Recommendation/RecommendationContent.d.ts +43 -0
  189. package/bundle/components/SafeDepositRental/RegionsAndBranches.d.ts +12 -0
  190. package/bundle/components/SafeDepositRental/RenderRadioButtons.d.ts +2 -0
  191. package/bundle/components/SafeDepositRental/RentalPeriod.d.ts +6 -0
  192. package/bundle/components/SafeDepositRental/SafeBoxCases.d.ts +11 -0
  193. package/bundle/components/SafeDepositRental/SafeDepositRental.d.ts +5 -0
  194. package/bundle/components/SafeDepositRental/SafeDepositRentalContent.d.ts +9 -0
  195. package/bundle/components/SafeDepositRental/SafeDepositRentalFields.d.ts +12 -0
  196. package/bundle/components/SafeDepositRental/SafeDepositRentalForm.d.ts +11 -0
  197. package/bundle/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +6 -0
  198. package/bundle/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +8 -0
  199. package/bundle/components/SafeDepositRental/WrapperSelect.d.ts +11 -0
  200. package/bundle/components/SafeDepositRental/YandexMap.d.ts +5 -0
  201. package/bundle/components/SafeDepositRental/renderClusterer.d.ts +2 -0
  202. package/bundle/components/SafeDepositRental/useGetRegions.d.ts +6 -0
  203. package/bundle/components/SafeDepositRental/useYandexMaps.d.ts +2 -0
  204. package/bundle/components/SafeDepositRental/utils.d.ts +3 -0
  205. package/bundle/components/StepsBlock/StepsBlock.d.ts +5 -0
  206. package/bundle/components/StepsBlock/StepsBlock.mobile.d.ts +5 -0
  207. package/bundle/components/StepsBlock/StepsBlockContent.d.ts +43 -0
  208. package/bundle/components/StepsBlock/StepsBlockStyleMaps.d.ts +11 -0
  209. package/bundle/components/StepsBlock/renderItems.d.ts +8 -0
  210. package/bundle/components/StepsBlock/renderStepContent.d.ts +14 -0
  211. package/bundle/components/Tabs/Tabs.d.ts +13 -0
  212. package/bundle/components/Tabs/TabsContent.d.ts +36 -0
  213. package/bundle/components/Tabs/renderGroupTab.d.ts +4 -0
  214. package/bundle/components/Tabs/renderLinkTab.d.ts +9 -0
  215. package/bundle/components/Tabs/renderTab.d.ts +12 -0
  216. package/bundle/components/Tabs/tabItemClasses.d.ts +6 -0
  217. package/bundle/components/TariffsTable/EmbeddableCellData.d.ts +14 -0
  218. package/bundle/components/TariffsTable/EmbeddableCellData.mobile.d.ts +12 -0
  219. package/bundle/components/TariffsTable/TableTileHeader.d.ts +2 -0
  220. package/bundle/components/TariffsTable/TariffsTable.d.ts +5 -0
  221. package/bundle/components/TariffsTable/TariffsTable.mobile.d.ts +5 -0
  222. package/bundle/components/TariffsTable/TariffsTableCell.d.ts +9 -0
  223. package/bundle/components/TariffsTable/TariffsTableContent.d.ts +95 -0
  224. package/bundle/components/TariffsTable/TariffsTableHorizontal.d.ts +6 -0
  225. package/bundle/components/TariffsTable/TariffsTableRow.d.ts +9 -0
  226. package/bundle/components/TariffsTable/TariffsTableRowContainer.d.ts +7 -0
  227. package/bundle/components/TariffsTable/TariffsTableTileCell.d.ts +8 -0
  228. package/bundle/components/TariffsTable/TariffsTableVertical.d.ts +6 -0
  229. package/bundle/components/TariffsTable/constants.d.ts +4 -0
  230. package/bundle/components/TariffsTable/dataFixture.d.ts +5 -0
  231. package/bundle/components/TariffsTable/utils/getButtonAriaLabel.d.ts +2 -0
  232. package/bundle/components/TextBlock/TextBlock.d.ts +5 -0
  233. package/bundle/components/TextBlock/TextBlock.mobile.d.ts +5 -0
  234. package/bundle/components/TextBlock/TextBlockContent.d.ts +22 -0
  235. package/bundle/components/Tile/Tile.d.ts +6 -0
  236. package/bundle/components/Tile/TileContent.d.ts +34 -0
  237. package/bundle/content-page-repository/ContentPageRepository.d.ts +11 -0
  238. package/bundle/content-page-repository/TransformationOptions.d.ts +4 -0
  239. package/bundle/content-page-repository/index.d.ts +2 -0
  240. package/bundle/content-page-repository/mapJSON.d.ts +1 -0
  241. package/bundle/content-page-repository/transformContentPage.d.ts +3 -0
  242. package/bundle/content-page-repository/transformImg.d.ts +11 -0
  243. package/bundle/content-page-repository/transformMarkdown.d.ts +1 -0
  244. package/bundle/content-page-repository/transformPicture.d.ts +3 -0
  245. package/bundle/content-page-repository/transformSrc.d.ts +3 -0
  246. package/bundle/hooks/useExchangeRates.d.ts +2 -0
  247. package/bundle/hooks/useExternalNS.d.ts +2 -0
  248. package/bundle/hooks/useGeolocation.d.ts +1 -0
  249. package/bundle/hooks/useLikeService.d.ts +5 -0
  250. package/bundle/hooks/useLink.d.ts +18 -0
  251. package/bundle/hooks/useOutsideClick.d.ts +5 -0
  252. package/{mobile/dist/hooks/useFetchSafeBoxes.d.ts → bundle/hooks/useSafeBoxes.d.ts} +1 -3
  253. package/bundle/hooks/useSearch.d.ts +4 -0
  254. package/bundle/hooks/useTableArrowScrollControl.d.ts +7 -0
  255. package/bundle/hooks/useTariffsInnerTableData.d.ts +1 -0
  256. package/bundle/icons/IconName.d.ts +194 -0
  257. package/bundle/index.d.ts +9 -0
  258. package/bundle/model/AlignType.d.ts +9 -0
  259. package/bundle/model/BgColorVersion.d.ts +8 -0
  260. package/bundle/model/BlockDecorator.d.ts +15 -0
  261. package/bundle/model/BlockVersion.d.ts +11 -0
  262. package/bundle/model/BlocksRegistry.d.ts +8 -0
  263. package/bundle/model/ButtonVersion.d.ts +6 -0
  264. package/bundle/model/ContentPageDef.d.ts +52 -0
  265. package/bundle/model/EmptyOptionType.d.ts +4 -0
  266. package/bundle/model/Fallback.d.ts +5 -0
  267. package/bundle/model/Footnote.d.ts +4 -0
  268. package/bundle/model/GalleryVersion.d.ts +1 -0
  269. package/bundle/model/HeadlineType.d.ts +29 -0
  270. package/bundle/model/IconVersion.d.ts +9 -0
  271. package/bundle/model/ImageSize.d.ts +6 -0
  272. package/bundle/model/InputTypes.d.ts +1 -0
  273. package/bundle/model/LinkProps.d.ts +24 -0
  274. package/bundle/model/ListOrientation.d.ts +8 -0
  275. package/bundle/model/Picture.d.ts +59 -0
  276. package/bundle/model/ProductColorVersion.d.ts +4 -0
  277. package/bundle/model/SitemapProps.d.ts +24 -0
  278. package/bundle/model/SizeVersion.d.ts +8 -0
  279. package/bundle/model/TableVersion.d.ts +1 -0
  280. package/bundle/model/VNode.d.ts +1 -0
  281. package/bundle/react/setup-fixture.d.ts +4 -0
  282. package/bundle/services/sitemap/SitemapProps.d.ts +24 -0
  283. package/bundle/services/sitemap/checkIsHrefSameOrigin.d.ts +4 -0
  284. package/bundle/services/sitemap/findActiveSubItem.d.ts +3 -0
  285. package/bundle/services/sitemap/isHrefActive.d.ts +4 -0
  286. package/bundle/services/sitemap/isSubItemActive.d.ts +3 -0
  287. package/bundle/services/sitemap/isTopItemActive.d.ts +3 -0
  288. package/bundle/services/sitemap/mergeTopItems.d.ts +2 -0
  289. package/bundle/services/sitemap/useSitemap.d.ts +3 -0
  290. package/bundle/ui-kit/BenefitItem/BenefitItem.d.ts +4 -0
  291. package/bundle/ui-kit/BenefitItem/BenefitItemProps.d.ts +20 -0
  292. package/bundle/ui-kit/BlockWrapper.d.ts +7 -0
  293. package/bundle/ui-kit/BlocksList/BlocksListProps.d.ts +96 -0
  294. package/bundle/ui-kit/BlocksList/EmbeddableBlocks.d.ts +12 -0
  295. package/bundle/ui-kit/BlocksList/EmbeddableBlocks.mobile.d.ts +8 -0
  296. package/bundle/ui-kit/BlocksList/renderBlocksList.d.ts +9 -0
  297. package/bundle/ui-kit/Breadcrumb.d.ts +6 -0
  298. package/bundle/ui-kit/Button/ArrowButton.d.ts +2 -0
  299. package/bundle/ui-kit/Button/Button.d.ts +2 -0
  300. package/bundle/ui-kit/Button/Button.mobile.d.ts +2 -0
  301. package/bundle/ui-kit/Button/ButtonInner.d.ts +7 -0
  302. package/bundle/ui-kit/Button/ButtonProps.d.ts +54 -0
  303. package/bundle/ui-kit/Button/ButtonSection.d.ts +5 -0
  304. package/bundle/ui-kit/Button/GetButtonClassParams.d.ts +6 -0
  305. package/bundle/ui-kit/Button/LikeButton.d.ts +6 -0
  306. package/bundle/ui-kit/Button/buttonClassNameConstants.d.ts +5 -0
  307. package/bundle/ui-kit/Button/getDisabledButtonClasses.d.ts +2 -0
  308. package/bundle/ui-kit/Button/getRegularButtonClasses.d.ts +2 -0
  309. package/bundle/ui-kit/Button/renderArrows.d.ts +9 -0
  310. package/bundle/ui-kit/Checkbox/Checkbox.d.ts +2 -0
  311. package/bundle/ui-kit/Checkbox/CheckboxProps.d.ts +7 -0
  312. package/bundle/ui-kit/CurrencyInput/CurrencyInput.d.ts +2 -0
  313. package/bundle/ui-kit/CurrencyInput/CurrencyInputProps.d.ts +5 -0
  314. package/bundle/ui-kit/CurrencyInput/adjustValue .d.ts +3 -0
  315. package/bundle/ui-kit/Description/Description.d.ts +5 -0
  316. package/bundle/ui-kit/Foldable/DefaultFoldButton.d.ts +14 -0
  317. package/bundle/ui-kit/Foldable/Foldable.d.ts +9 -0
  318. package/bundle/ui-kit/Foldable/FoldablePartProps.d.ts +4 -0
  319. package/bundle/ui-kit/Foldable/FoldableSection.d.ts +5 -0
  320. package/bundle/ui-kit/HeaderItem/HeaderItem.d.ts +2 -0
  321. package/bundle/ui-kit/HeaderItem/HeaderItem.mobile.d.ts +3 -0
  322. package/bundle/ui-kit/Heading/Heading.d.ts +2 -0
  323. package/bundle/ui-kit/Heading/Heading.mobile.d.ts +2 -0
  324. package/bundle/ui-kit/Heading/HeadingProps.d.ts +23 -0
  325. package/bundle/ui-kit/Icon/Icon.d.ts +2 -0
  326. package/bundle/ui-kit/Icon/IconProps.d.ts +21 -0
  327. package/bundle/ui-kit/Img/Img.d.ts +1 -0
  328. package/bundle/ui-kit/Img/Img.mobile.d.ts +2 -0
  329. package/bundle/ui-kit/Img/ImgAsPicture.d.ts +4 -0
  330. package/bundle/ui-kit/Img/ImgInner.d.ts +2 -0
  331. package/bundle/ui-kit/Img/ImgProps.d.ts +11 -0
  332. package/bundle/ui-kit/Img/getIconVersion.d.ts +1 -0
  333. package/bundle/ui-kit/InnerTable/InnerTable.d.ts +5 -0
  334. package/bundle/ui-kit/InnerTable/InnerTableBody.d.ts +7 -0
  335. package/bundle/ui-kit/InnerTable/InnerTableBodyItem.d.ts +6 -0
  336. package/bundle/ui-kit/InnerTable/InnerTableButton.d.ts +6 -0
  337. package/bundle/ui-kit/InnerTable/InnerTableHeader.d.ts +7 -0
  338. package/bundle/ui-kit/InnerTable/InnerTableProps.d.ts +24 -0
  339. package/bundle/ui-kit/Input/Input.d.ts +2 -0
  340. package/bundle/ui-kit/Input/InputProps.d.ts +16 -0
  341. package/bundle/ui-kit/InputRange/InputRange.d.ts +2 -0
  342. package/bundle/ui-kit/InputRange/InputRangeProps.d.ts +11 -0
  343. package/bundle/ui-kit/IntersectionObserverTag.d.ts +11 -0
  344. package/bundle/ui-kit/List/List.d.ts +2 -0
  345. package/bundle/ui-kit/List/ListContent.d.ts +4 -0
  346. package/bundle/ui-kit/List/ListItem.d.ts +12 -0
  347. package/bundle/ui-kit/List/ListProps.d.ts +26 -0
  348. package/bundle/ui-kit/Logo/Logo.d.ts +13 -0
  349. package/bundle/ui-kit/Logo/Logo.mobile.d.ts +8 -0
  350. package/bundle/ui-kit/Radio/Radio.d.ts +2 -0
  351. package/bundle/ui-kit/Radio/RadioProps.d.ts +9 -0
  352. package/bundle/ui-kit/RadioButtonGroup/RadioButtonGroup.d.ts +12 -0
  353. package/bundle/ui-kit/SVG.d.ts +19 -0
  354. package/bundle/ui-kit/SearchBar/SearchBar.d.ts +2 -0
  355. package/bundle/ui-kit/SearchBar/SearchBar.mobile.d.ts +2 -0
  356. package/bundle/ui-kit/SearchBar/SearchBarInner.d.ts +5 -0
  357. package/bundle/ui-kit/Select/Select.d.ts +14 -0
  358. package/bundle/ui-kit/SwipeListControl/SwipeListControl.d.ts +2 -0
  359. package/bundle/ui-kit/SwipeListControl/SwipeListControlDots.d.ts +6 -0
  360. package/bundle/ui-kit/SwipeListControl/SwipeListControlItem.d.ts +9 -0
  361. package/bundle/ui-kit/SwipeListControl/SwipeListControlList.d.ts +10 -0
  362. package/bundle/ui-kit/SwipeListControl/SwipeListControlProps.d.ts +18 -0
  363. package/bundle/ui-kit/SwipeListControl/constants.d.ts +2 -0
  364. package/bundle/ui-kit/SwipeListControl/utils/getContainerStyle.d.ts +1 -0
  365. package/bundle/ui-kit/SwipeListControl/utils/getIndexParts.d.ts +4 -0
  366. package/bundle/ui-kit/SwipeListControl/utils/getScrollPoints.d.ts +8 -0
  367. package/bundle/ui-kit/TableArrowScrollControl/TableArrowScrollControl.d.ts +2 -0
  368. package/bundle/ui-kit/TableArrowScrollControl/TableArrowScrollControlProps.d.ts +7 -0
  369. package/bundle/ui-kit/TopItem/TopItem.d.ts +14 -0
  370. package/bundle/utils/addSpacesBetweenNumbers.d.ts +1 -0
  371. package/bundle/utils/adjustHref.d.ts +4 -0
  372. package/bundle/utils/assertUnreachable.d.ts +1 -0
  373. package/bundle/utils/changeHashOnObserve.d.ts +9 -0
  374. package/bundle/utils/checkIsIconRenderable.d.ts +2 -0
  375. package/bundle/utils/clamp.d.ts +1 -0
  376. package/bundle/utils/fetchJSON.d.ts +2 -0
  377. package/bundle/utils/getColSpan.d.ts +1 -0
  378. package/bundle/utils/getCurrentDate.d.ts +1 -0
  379. package/bundle/utils/getGeolocation.d.ts +1 -0
  380. package/bundle/utils/getSanitizedValue.d.ts +1 -0
  381. package/bundle/utils/isPictureSizeEmpty.d.ts +2 -0
  382. package/bundle/utils/joinList.d.ts +1 -0
  383. package/bundle/utils/maxBy.d.ts +2 -0
  384. package/bundle/utils/roundTo.d.ts +1 -0
  385. package/bundle/utils/style2className.d.ts +1 -0
  386. package/bundle/utils/tableFunc.d.ts +2 -0
  387. package/bundle/utils/url.d.ts +5 -0
  388. package/bundle/utils/withoutMobilePath.d.ts +2 -0
  389. package/dist/components/Accordion/Accordion.js +3 -1
  390. package/dist/components/Accordion/Accordion.js.map +1 -1
  391. package/dist/components/Accordion/Accordion.mobile.js +5 -2
  392. package/dist/components/Accordion/Accordion.mobile.js.map +1 -1
  393. package/dist/components/Accordion/AccordionContent.d.ts +9 -7
  394. package/dist/components/Accordion/AccordionItem.d.ts +1 -4
  395. package/dist/components/Accordion/AccordionItem.js +5 -11
  396. package/dist/components/Accordion/AccordionItem.js.map +1 -1
  397. package/dist/components/Accordion/AccordionItem.mobile.d.ts +1 -4
  398. package/dist/components/Accordion/AccordionItem.mobile.js +7 -8
  399. package/dist/components/Accordion/AccordionItem.mobile.js.map +1 -1
  400. package/dist/components/Accordion/AccordionItemProps.d.ts +5 -0
  401. package/dist/components/Accordion/AccordionItemProps.js +2 -0
  402. package/dist/components/Accordion/AccordionItemProps.js.map +1 -0
  403. package/dist/components/Accordion/AccordionItemsList.d.ts +1 -0
  404. package/dist/components/Accordion/AccordionItemsList.js +6 -0
  405. package/dist/components/Accordion/AccordionItemsList.js.map +1 -0
  406. package/dist/components/BenefitsBlock/BenefitsBlock.js +1 -1
  407. package/dist/components/BenefitsBlock/BenefitsBlock.js.map +1 -1
  408. package/dist/components/Blocks.d.ts +1 -0
  409. package/dist/components/Blocks.js +2 -0
  410. package/dist/components/Blocks.js.map +1 -1
  411. package/dist/components/Blocks.mobile.d.ts +0 -1
  412. package/dist/components/Blocks.mobile.js +0 -2
  413. package/dist/components/Blocks.mobile.js.map +1 -1
  414. package/dist/components/Calculator/CalculatorContent.d.ts +1 -1
  415. package/dist/components/CardTransfer/CardTransfer.js +3 -2
  416. package/dist/components/CardTransfer/CardTransfer.js.map +1 -1
  417. package/dist/components/Catalog/Catalog.js +1 -1
  418. package/dist/components/Catalog/Catalog.js.map +1 -1
  419. package/dist/components/Catalog/CatalogCard.js +1 -23
  420. package/dist/components/Catalog/CatalogCard.js.map +1 -1
  421. package/dist/components/ComparisonTable/ComparisonTable.js +1 -1
  422. package/dist/components/ComparisonTable/ComparisonTable.js.map +1 -1
  423. package/dist/components/ComparisonTable/ComparisonTable.mobile.js +13 -48
  424. package/dist/components/ComparisonTable/ComparisonTable.mobile.js.map +1 -1
  425. package/dist/components/ComparisonTable/TableCell.d.ts +1 -1
  426. package/dist/components/ComparisonTable/TableCell.js.map +1 -1
  427. package/dist/components/ComparisonTable/TableColumn.d.ts +5 -8
  428. package/dist/components/ComparisonTable/TableColumn.js +2 -8
  429. package/dist/components/ComparisonTable/TableColumn.js.map +1 -1
  430. package/dist/components/ContentPage/ContentPageContext.d.ts +0 -11
  431. package/dist/components/ContentPage/filterBlocks.js +1 -2
  432. package/dist/components/ContentPage/filterBlocks.js.map +1 -1
  433. package/dist/components/ContentPage/filterBlocks.mobile.js +1 -3
  434. package/dist/components/ContentPage/filterBlocks.mobile.js.map +1 -1
  435. package/dist/components/ContentPage/renderBlock.js +1 -1
  436. package/dist/components/ContentPage/renderBlock.js.map +1 -1
  437. package/dist/components/ErrorBlock/ErrorBlock.js +1 -1
  438. package/dist/components/ErrorBlock/ErrorBlock.js.map +1 -1
  439. package/dist/components/ExchangeRateTile/renderInput.js +1 -1
  440. package/dist/components/ExchangeRateTile/renderInput.js.map +1 -1
  441. package/dist/components/Footer/Contacts.js +1 -1
  442. package/dist/components/Footer/Contacts.js.map +1 -1
  443. package/dist/components/Footer/Footer.mobile.js +8 -7
  444. package/dist/components/Footer/Footer.mobile.js.map +1 -1
  445. package/dist/components/Footer/FooterContent.d.ts +5 -9
  446. package/dist/components/Gallery/Gallery.mobile.js +7 -3
  447. package/dist/components/Gallery/Gallery.mobile.js.map +1 -1
  448. package/dist/components/Gallery/GalleryCardInner.js +14 -17
  449. package/dist/components/Gallery/GalleryCardInner.js.map +1 -1
  450. package/dist/components/Gallery/GalleryContainer.js +2 -2
  451. package/dist/components/Gallery/GalleryContainer.js.map +1 -1
  452. package/dist/components/Gallery/GalleryContent.d.ts +11 -3
  453. package/dist/components/Header/Header.mobile.js +5 -5
  454. package/dist/components/Header/Header.mobile.js.map +1 -1
  455. package/dist/components/Header/HeaderSubMenu.js +3 -2
  456. package/dist/components/Header/HeaderSubMenu.js.map +1 -1
  457. package/dist/components/Headline/constants.d.ts +2 -1
  458. package/dist/components/Headline/constants.js +10 -1
  459. package/dist/components/Headline/constants.js.map +1 -1
  460. package/dist/components/InvestmentInfo/InvestmentInfo.d.ts +5 -0
  461. package/dist/components/InvestmentInfo/InvestmentInfo.js +49 -0
  462. package/dist/components/InvestmentInfo/InvestmentInfo.js.map +1 -0
  463. package/dist/components/InvestmentInfo/InvestmentInfoContent.d.ts +49 -0
  464. package/dist/components/InvestmentInfo/InvestmentInfoContent.js +2 -0
  465. package/dist/components/InvestmentInfo/InvestmentInfoContent.js.map +1 -0
  466. package/dist/components/MiniGallery/MiniGalleryContent.d.ts +1 -0
  467. package/dist/components/MobileAppTile/MobileAppTile.js +1 -1
  468. package/dist/components/MobileAppTile/MobileAppTile.js.map +1 -1
  469. package/dist/components/OtherProducts/OtherProductsItem.js +5 -5
  470. package/dist/components/OtherProducts/OtherProductsItem.js.map +1 -1
  471. package/dist/components/ProductGallery/ProductGallery.js +2 -2
  472. package/dist/components/ProductGallery/ProductGallery.js.map +1 -1
  473. package/dist/components/ProductTile/ProductTile.js +1 -1
  474. package/dist/components/ProductTile/ProductTile.js.map +1 -1
  475. package/dist/components/Recommendation/RecommendationContent.d.ts +5 -0
  476. package/dist/components/SafeDepositRental/RegionsAndBranches.d.ts +1 -1
  477. package/dist/components/SafeDepositRental/SafeBoxCases.d.ts +1 -1
  478. package/dist/components/SafeDepositRental/SafeDepositRental.d.ts +1 -1
  479. package/dist/components/SafeDepositRental/SafeDepositRental.js +17 -3
  480. package/dist/components/SafeDepositRental/SafeDepositRental.js.map +1 -1
  481. package/dist/components/SafeDepositRental/SafeDepositRentalFields.d.ts +7 -4
  482. package/dist/components/SafeDepositRental/SafeDepositRentalFields.js +3 -5
  483. package/dist/components/SafeDepositRental/SafeDepositRentalFields.js.map +1 -1
  484. package/dist/components/SafeDepositRental/SafeDepositRentalForm.d.ts +7 -3
  485. package/dist/components/SafeDepositRental/SafeDepositRentalForm.js +7 -28
  486. package/dist/components/SafeDepositRental/SafeDepositRentalForm.js.map +1 -1
  487. package/dist/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +1 -1
  488. package/dist/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +0 -2
  489. package/dist/components/SafeDepositRental/utils.d.ts +1 -1
  490. package/dist/components/StepsBlock/StepsBlock.js +5 -6
  491. package/dist/components/StepsBlock/StepsBlock.js.map +1 -1
  492. package/dist/components/StepsBlock/StepsBlockContent.d.ts +9 -2
  493. package/dist/components/StepsBlock/StepsBlockStyleMaps.d.ts +1 -0
  494. package/dist/components/StepsBlock/StepsBlockStyleMaps.js +4 -2
  495. package/dist/components/StepsBlock/StepsBlockStyleMaps.js.map +1 -1
  496. package/dist/components/StepsBlock/renderItems.d.ts +8 -0
  497. package/dist/components/StepsBlock/renderItems.js +10 -0
  498. package/dist/components/StepsBlock/renderItems.js.map +1 -0
  499. package/dist/components/StepsBlock/renderStepContent.d.ts +14 -0
  500. package/dist/components/StepsBlock/renderStepContent.js +20 -0
  501. package/dist/components/StepsBlock/renderStepContent.js.map +1 -0
  502. package/dist/components/TariffsTable/EmbeddableCellData.js +4 -5
  503. package/dist/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  504. package/dist/components/TariffsTable/EmbeddableCellData.mobile.js +1 -2
  505. package/dist/components/TariffsTable/EmbeddableCellData.mobile.js.map +1 -1
  506. package/dist/components/TariffsTable/TariffsTable.js +11 -2
  507. package/dist/components/TariffsTable/TariffsTable.js.map +1 -1
  508. package/dist/components/TariffsTable/TariffsTableCell.js +1 -1
  509. package/dist/components/TariffsTable/TariffsTableCell.js.map +1 -1
  510. package/dist/components/TariffsTable/TariffsTableRow.js +1 -2
  511. package/dist/components/TariffsTable/TariffsTableRow.js.map +1 -1
  512. package/dist/components/TariffsTable/dataFixture.js +4 -2
  513. package/dist/components/TariffsTable/dataFixture.js.map +1 -1
  514. package/dist/components/TariffsTable/utils/getButtonAriaLabel.d.ts +1 -1
  515. package/dist/components/TariffsTable/utils/getButtonAriaLabel.js +1 -2
  516. package/dist/components/TariffsTable/utils/getButtonAriaLabel.js.map +1 -1
  517. package/dist/components/Tile/Tile.js +2 -3
  518. package/dist/components/Tile/Tile.js.map +1 -1
  519. package/dist/hooks/useOutsideClick.d.ts +5 -0
  520. package/dist/hooks/useOutsideClick.js +21 -0
  521. package/dist/hooks/useOutsideClick.js.map +1 -0
  522. package/dist/hooks/{useFetchSafeBoxes.d.ts → useSafeBoxes.d.ts} +1 -3
  523. package/{mobile/dist/hooks/useFetchSafeBoxes.js → dist/hooks/useSafeBoxes.js} +9 -10
  524. package/dist/hooks/useSafeBoxes.js.map +1 -0
  525. package/dist/icons/IconName.d.ts +1 -92
  526. package/dist/icons/IconName.js +4 -4
  527. package/dist/icons/IconName.js.map +1 -1
  528. package/dist/model/BlockDecorator.d.ts +1 -0
  529. package/dist/model/BlockDecorator.js +2 -1
  530. package/dist/model/BlockDecorator.js.map +1 -1
  531. package/dist/model/BlocksRegistry.d.ts +4 -1
  532. package/dist/model/HeadlineType.d.ts +8 -0
  533. package/dist/model/Picture.d.ts +1 -0
  534. package/dist/react/setup-fixture.js +0 -2
  535. package/dist/react/setup-fixture.js.map +1 -1
  536. package/dist/ui-kit/BenefitItem/BenefitItem.js +3 -1
  537. package/dist/ui-kit/BenefitItem/BenefitItem.js.map +1 -1
  538. package/dist/ui-kit/BlockWrapper.d.ts +0 -3
  539. package/dist/ui-kit/BlockWrapper.js +5 -5
  540. package/dist/ui-kit/BlockWrapper.js.map +1 -1
  541. package/dist/ui-kit/BlocksList/renderBlocksList.d.ts +1 -1
  542. package/dist/ui-kit/BlocksList/renderBlocksList.js +1 -1
  543. package/dist/ui-kit/BlocksList/renderBlocksList.js.map +1 -1
  544. package/dist/ui-kit/Button/Button.js +6 -10
  545. package/dist/ui-kit/Button/Button.js.map +1 -1
  546. package/dist/ui-kit/Button/Button.mobile.js +1 -1
  547. package/dist/ui-kit/Button/Button.mobile.js.map +1 -1
  548. package/dist/ui-kit/Button/ButtonInner.js +3 -2
  549. package/dist/ui-kit/Button/ButtonInner.js.map +1 -1
  550. package/dist/ui-kit/Button/ButtonProps.d.ts +1 -7
  551. package/dist/ui-kit/Button/ButtonSection.js +5 -10
  552. package/dist/ui-kit/Button/ButtonSection.js.map +1 -1
  553. package/dist/ui-kit/Button/buttonClassNameConstants.d.ts +1 -0
  554. package/dist/ui-kit/Button/buttonClassNameConstants.js +7 -1
  555. package/dist/ui-kit/Button/buttonClassNameConstants.js.map +1 -1
  556. package/dist/ui-kit/CurrencyInput/CurrencyInput.js +7 -1
  557. package/dist/ui-kit/CurrencyInput/CurrencyInput.js.map +1 -1
  558. package/dist/ui-kit/CurrencyInput/adjustValue .d.ts +2 -0
  559. package/dist/ui-kit/CurrencyInput/adjustValue .js +11 -2
  560. package/dist/ui-kit/CurrencyInput/adjustValue .js.map +1 -1
  561. package/dist/ui-kit/Foldable/DefaultFoldButton.d.ts +14 -0
  562. package/dist/ui-kit/Foldable/DefaultFoldButton.js +16 -0
  563. package/dist/ui-kit/Foldable/DefaultFoldButton.js.map +1 -0
  564. package/dist/ui-kit/Foldable/Foldable.d.ts +5 -18
  565. package/dist/ui-kit/Foldable/Foldable.js +9 -17
  566. package/dist/ui-kit/Foldable/Foldable.js.map +1 -1
  567. package/dist/ui-kit/Foldable/FoldablePartProps.d.ts +4 -0
  568. package/dist/ui-kit/Foldable/FoldablePartProps.js +2 -0
  569. package/dist/ui-kit/Foldable/FoldablePartProps.js.map +1 -0
  570. package/dist/ui-kit/Foldable/FoldableSection.d.ts +5 -0
  571. package/dist/ui-kit/Foldable/FoldableSection.js +17 -0
  572. package/dist/ui-kit/Foldable/FoldableSection.js.map +1 -0
  573. package/dist/ui-kit/Icon/Icon.js +4 -5
  574. package/dist/ui-kit/Icon/Icon.js.map +1 -1
  575. package/dist/ui-kit/Icon/IconProps.d.ts +0 -1
  576. package/dist/ui-kit/Img/Img.d.ts +1 -2
  577. package/dist/ui-kit/Img/Img.js +2 -6
  578. package/dist/ui-kit/Img/Img.js.map +1 -1
  579. package/dist/ui-kit/Img/Img.mobile.js +1 -3
  580. package/dist/ui-kit/Img/Img.mobile.js.map +1 -1
  581. package/dist/ui-kit/InnerTable/InnerTableBody.js +1 -1
  582. package/dist/ui-kit/InnerTable/InnerTableBody.js.map +1 -1
  583. package/dist/ui-kit/InnerTable/InnerTableBodyItem.js +6 -2
  584. package/dist/ui-kit/InnerTable/InnerTableBodyItem.js.map +1 -1
  585. package/dist/ui-kit/InnerTable/InnerTableButton.js +1 -1
  586. package/dist/ui-kit/InnerTable/InnerTableButton.js.map +1 -1
  587. package/dist/ui-kit/InnerTable/InnerTableHeader.js +1 -1
  588. package/dist/ui-kit/InnerTable/InnerTableHeader.js.map +1 -1
  589. package/dist/ui-kit/Input/Input.js +12 -3
  590. package/dist/ui-kit/Input/Input.js.map +1 -1
  591. package/dist/ui-kit/Input/InputProps.d.ts +2 -0
  592. package/dist/ui-kit/InputRange/InputRange.js +2 -2
  593. package/dist/ui-kit/InputRange/InputRange.js.map +1 -1
  594. package/dist/ui-kit/IntersectionObserverTag.d.ts +11 -0
  595. package/dist/ui-kit/IntersectionObserverTag.js +22 -0
  596. package/dist/ui-kit/IntersectionObserverTag.js.map +1 -0
  597. package/dist/ui-kit/List/List.js +13 -8
  598. package/dist/ui-kit/List/List.js.map +1 -1
  599. package/dist/ui-kit/List/ListItem.d.ts +2 -2
  600. package/dist/ui-kit/List/ListItem.js +8 -23
  601. package/dist/ui-kit/List/ListItem.js.map +1 -1
  602. package/dist/ui-kit/List/ListProps.d.ts +5 -3
  603. package/dist/ui-kit/Radio/Radio.js +1 -1
  604. package/dist/ui-kit/Radio/Radio.js.map +1 -1
  605. package/dist/ui-kit/Select/Select.js +4 -1
  606. package/dist/ui-kit/Select/Select.js.map +1 -1
  607. package/dist/utils/getSanitizedValue.d.ts +1 -0
  608. package/dist/utils/getSanitizedValue.js +5 -0
  609. package/dist/utils/getSanitizedValue.js.map +1 -0
  610. package/lib/common.css +1 -1
  611. package/lib/components/Accordion/Accordion.js +3 -1
  612. package/lib/components/Accordion/Accordion.js.map +1 -1
  613. package/lib/components/Accordion/Accordion.mobile.js +5 -2
  614. package/lib/components/Accordion/Accordion.mobile.js.map +1 -1
  615. package/lib/components/Accordion/AccordionContent.d.ts +9 -7
  616. package/lib/components/Accordion/AccordionItem.d.ts +1 -4
  617. package/lib/components/Accordion/AccordionItem.js +5 -11
  618. package/lib/components/Accordion/AccordionItem.js.map +1 -1
  619. package/lib/components/Accordion/AccordionItem.mobile.d.ts +1 -4
  620. package/lib/components/Accordion/AccordionItem.mobile.js +7 -8
  621. package/lib/components/Accordion/AccordionItem.mobile.js.map +1 -1
  622. package/lib/components/Accordion/AccordionItemProps.d.ts +5 -0
  623. package/lib/components/Accordion/AccordionItemProps.js +2 -0
  624. package/lib/components/Accordion/AccordionItemProps.js.map +1 -0
  625. package/lib/components/Accordion/AccordionItemsList.d.ts +1 -0
  626. package/lib/components/Accordion/AccordionItemsList.js +4 -0
  627. package/lib/components/Accordion/AccordionItemsList.js.map +1 -0
  628. package/lib/components/BenefitsBlock/BenefitsBlock.js +1 -1
  629. package/lib/components/BenefitsBlock/BenefitsBlock.js.map +1 -1
  630. package/lib/components/Blocks.d.ts +1 -0
  631. package/lib/components/Blocks.js +2 -0
  632. package/lib/components/Blocks.js.map +1 -1
  633. package/lib/components/Blocks.mobile.d.ts +0 -1
  634. package/lib/components/Blocks.mobile.js +0 -2
  635. package/lib/components/Blocks.mobile.js.map +1 -1
  636. package/lib/components/Calculator/CalculatorContent.d.ts +1 -1
  637. package/lib/components/CardTransfer/CardTransfer.js +3 -2
  638. package/lib/components/CardTransfer/CardTransfer.js.map +1 -1
  639. package/lib/components/Catalog/Catalog.js +1 -1
  640. package/lib/components/Catalog/Catalog.js.map +1 -1
  641. package/lib/components/Catalog/CatalogCard.js +1 -23
  642. package/lib/components/Catalog/CatalogCard.js.map +1 -1
  643. package/lib/components/ComparisonTable/ComparisonTable.js +1 -1
  644. package/lib/components/ComparisonTable/ComparisonTable.js.map +1 -1
  645. package/lib/components/ComparisonTable/ComparisonTable.mobile.js +14 -49
  646. package/lib/components/ComparisonTable/ComparisonTable.mobile.js.map +1 -1
  647. package/lib/components/ComparisonTable/TableCell.d.ts +1 -1
  648. package/lib/components/ComparisonTable/TableCell.js.map +1 -1
  649. package/lib/components/ComparisonTable/TableColumn.d.ts +5 -8
  650. package/lib/components/ComparisonTable/TableColumn.js +2 -8
  651. package/lib/components/ComparisonTable/TableColumn.js.map +1 -1
  652. package/lib/components/ContentPage/ContentPageContext.d.ts +0 -11
  653. package/lib/components/ContentPage/filterBlocks.js +1 -2
  654. package/lib/components/ContentPage/filterBlocks.js.map +1 -1
  655. package/lib/components/ContentPage/filterBlocks.mobile.js +1 -3
  656. package/lib/components/ContentPage/filterBlocks.mobile.js.map +1 -1
  657. package/lib/components/ContentPage/renderBlock.js +2 -2
  658. package/lib/components/ContentPage/renderBlock.js.map +1 -1
  659. package/lib/components/ErrorBlock/ErrorBlock.js +1 -1
  660. package/lib/components/ErrorBlock/ErrorBlock.js.map +1 -1
  661. package/lib/components/ExchangeRateTile/renderInput.js +1 -1
  662. package/lib/components/ExchangeRateTile/renderInput.js.map +1 -1
  663. package/lib/components/Footer/Contacts.js +1 -1
  664. package/lib/components/Footer/Contacts.js.map +1 -1
  665. package/lib/components/Footer/Footer.mobile.js +8 -7
  666. package/lib/components/Footer/Footer.mobile.js.map +1 -1
  667. package/lib/components/Footer/FooterContent.d.ts +5 -9
  668. package/lib/components/Gallery/Gallery.mobile.js +7 -3
  669. package/lib/components/Gallery/Gallery.mobile.js.map +1 -1
  670. package/lib/components/Gallery/GalleryCardInner.js +15 -18
  671. package/lib/components/Gallery/GalleryCardInner.js.map +1 -1
  672. package/lib/components/Gallery/GalleryContainer.js +2 -2
  673. package/lib/components/Gallery/GalleryContainer.js.map +1 -1
  674. package/lib/components/Gallery/GalleryContent.d.ts +11 -3
  675. package/lib/components/Header/Header.mobile.js +5 -5
  676. package/lib/components/Header/Header.mobile.js.map +1 -1
  677. package/lib/components/Header/HeaderSubMenu.js +2 -1
  678. package/lib/components/Header/HeaderSubMenu.js.map +1 -1
  679. package/lib/components/Headline/constants.d.ts +2 -1
  680. package/lib/components/Headline/constants.js +9 -0
  681. package/lib/components/Headline/constants.js.map +1 -1
  682. package/lib/components/InvestmentInfo/InvestmentInfo.d.ts +5 -0
  683. package/lib/components/InvestmentInfo/InvestmentInfo.fixture.d.ts +7 -0
  684. package/lib/components/InvestmentInfo/InvestmentInfo.js +47 -0
  685. package/lib/components/InvestmentInfo/InvestmentInfo.js.map +1 -0
  686. package/lib/components/InvestmentInfo/InvestmentInfoContent.d.ts +49 -0
  687. package/lib/components/InvestmentInfo/InvestmentInfoContent.js +2 -0
  688. package/lib/components/InvestmentInfo/InvestmentInfoContent.js.map +1 -0
  689. package/lib/components/MiniGallery/MiniGallery.fixture.d.ts +1 -0
  690. package/lib/components/MiniGallery/MiniGalleryContent.d.ts +1 -0
  691. package/lib/components/MobileAppTile/MobileAppTile.js +1 -1
  692. package/lib/components/MobileAppTile/MobileAppTile.js.map +1 -1
  693. package/lib/components/OtherProducts/OtherProductsItem.js +5 -5
  694. package/lib/components/OtherProducts/OtherProductsItem.js.map +1 -1
  695. package/lib/components/ProductGallery/ProductGallery.js +2 -2
  696. package/lib/components/ProductGallery/ProductGallery.js.map +1 -1
  697. package/lib/components/ProductTile/ProductTile.js +1 -1
  698. package/lib/components/ProductTile/ProductTile.js.map +1 -1
  699. package/lib/components/Recommendation/RecommendationContent.d.ts +5 -0
  700. package/lib/components/SafeDepositRental/RegionsAndBranches.d.ts +1 -1
  701. package/lib/components/SafeDepositRental/SafeBoxCases.d.ts +1 -1
  702. package/lib/components/SafeDepositRental/SafeDepositRental.d.ts +1 -1
  703. package/lib/components/SafeDepositRental/SafeDepositRental.js +18 -4
  704. package/lib/components/SafeDepositRental/SafeDepositRental.js.map +1 -1
  705. package/lib/components/SafeDepositRental/SafeDepositRentalFields.d.ts +7 -4
  706. package/lib/components/SafeDepositRental/SafeDepositRentalFields.js +3 -5
  707. package/lib/components/SafeDepositRental/SafeDepositRentalFields.js.map +1 -1
  708. package/lib/components/SafeDepositRental/SafeDepositRentalForm.d.ts +7 -3
  709. package/lib/components/SafeDepositRental/SafeDepositRentalForm.js +9 -30
  710. package/lib/components/SafeDepositRental/SafeDepositRentalForm.js.map +1 -1
  711. package/lib/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +1 -1
  712. package/lib/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +0 -2
  713. package/lib/components/SafeDepositRental/utils.d.ts +1 -1
  714. package/lib/components/StepsBlock/StepsBlock.fixture.d.ts +2 -0
  715. package/lib/components/StepsBlock/StepsBlock.js +5 -6
  716. package/lib/components/StepsBlock/StepsBlock.js.map +1 -1
  717. package/lib/components/StepsBlock/StepsBlockContent.d.ts +9 -2
  718. package/lib/components/StepsBlock/StepsBlockStyleMaps.d.ts +1 -0
  719. package/lib/components/StepsBlock/StepsBlockStyleMaps.js +4 -2
  720. package/lib/components/StepsBlock/StepsBlockStyleMaps.js.map +1 -1
  721. package/lib/components/StepsBlock/renderItems.d.ts +8 -0
  722. package/lib/components/StepsBlock/renderItems.js +7 -0
  723. package/lib/components/StepsBlock/renderItems.js.map +1 -0
  724. package/lib/components/StepsBlock/renderStepContent.d.ts +14 -0
  725. package/lib/components/StepsBlock/renderStepContent.js +17 -0
  726. package/lib/components/StepsBlock/renderStepContent.js.map +1 -0
  727. package/lib/components/TariffsTable/EmbeddableCellData.js +4 -5
  728. package/lib/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  729. package/lib/components/TariffsTable/EmbeddableCellData.mobile.js +1 -2
  730. package/lib/components/TariffsTable/EmbeddableCellData.mobile.js.map +1 -1
  731. package/lib/components/TariffsTable/TariffsTable.js +11 -2
  732. package/lib/components/TariffsTable/TariffsTable.js.map +1 -1
  733. package/lib/components/TariffsTable/TariffsTableCell.js +1 -1
  734. package/lib/components/TariffsTable/TariffsTableCell.js.map +1 -1
  735. package/lib/components/TariffsTable/TariffsTableRow.js +1 -2
  736. package/lib/components/TariffsTable/TariffsTableRow.js.map +1 -1
  737. package/lib/components/TariffsTable/dataFixture.js +4 -2
  738. package/lib/components/TariffsTable/dataFixture.js.map +1 -1
  739. package/lib/components/TariffsTable/utils/getButtonAriaLabel.d.ts +1 -1
  740. package/lib/components/TariffsTable/utils/getButtonAriaLabel.js +1 -2
  741. package/lib/components/TariffsTable/utils/getButtonAriaLabel.js.map +1 -1
  742. package/lib/components/Tile/Tile.js +2 -3
  743. package/lib/components/Tile/Tile.js.map +1 -1
  744. package/lib/hooks/useOutsideClick.d.ts +5 -0
  745. package/lib/hooks/useOutsideClick.js +18 -0
  746. package/lib/hooks/useOutsideClick.js.map +1 -0
  747. package/lib/hooks/{useFetchSafeBoxes.d.ts → useSafeBoxes.d.ts} +1 -3
  748. package/lib/hooks/{useFetchSafeBoxes.js → useSafeBoxes.js} +7 -8
  749. package/lib/hooks/useSafeBoxes.js.map +1 -0
  750. package/lib/icons/IconName.d.ts +1 -92
  751. package/lib/icons/IconName.js +3 -3
  752. package/lib/icons/IconName.js.map +1 -1
  753. package/lib/model/BlockDecorator.d.ts +1 -0
  754. package/lib/model/BlockDecorator.js +1 -0
  755. package/lib/model/BlockDecorator.js.map +1 -1
  756. package/lib/model/BlocksRegistry.d.ts +4 -1
  757. package/lib/model/HeadlineType.d.ts +8 -0
  758. package/lib/model/Picture.d.ts +1 -0
  759. package/lib/react/setup-fixture.js +0 -2
  760. package/lib/react/setup-fixture.js.map +1 -1
  761. package/lib/ui-kit/BenefitItem/BenefitItem.js +3 -1
  762. package/lib/ui-kit/BenefitItem/BenefitItem.js.map +1 -1
  763. package/lib/ui-kit/BlockWrapper.d.ts +0 -3
  764. package/lib/ui-kit/BlockWrapper.js +4 -4
  765. package/lib/ui-kit/BlockWrapper.js.map +1 -1
  766. package/lib/ui-kit/BlocksList/renderBlocksList.d.ts +1 -1
  767. package/lib/ui-kit/BlocksList/renderBlocksList.js +1 -1
  768. package/lib/ui-kit/BlocksList/renderBlocksList.js.map +1 -1
  769. package/lib/ui-kit/Button/Button.js +6 -10
  770. package/lib/ui-kit/Button/Button.js.map +1 -1
  771. package/lib/ui-kit/Button/Button.mobile.js +1 -1
  772. package/lib/ui-kit/Button/Button.mobile.js.map +1 -1
  773. package/lib/ui-kit/Button/ButtonInner.js +3 -2
  774. package/lib/ui-kit/Button/ButtonInner.js.map +1 -1
  775. package/lib/ui-kit/Button/ButtonProps.d.ts +1 -7
  776. package/lib/ui-kit/Button/ButtonSection.js +5 -10
  777. package/lib/ui-kit/Button/ButtonSection.js.map +1 -1
  778. package/lib/ui-kit/Button/buttonClassNameConstants.d.ts +1 -0
  779. package/lib/ui-kit/Button/buttonClassNameConstants.js +6 -0
  780. package/lib/ui-kit/Button/buttonClassNameConstants.js.map +1 -1
  781. package/lib/ui-kit/CurrencyInput/CurrencyInput.js +8 -2
  782. package/lib/ui-kit/CurrencyInput/CurrencyInput.js.map +1 -1
  783. package/lib/ui-kit/CurrencyInput/adjustValue .d.ts +2 -0
  784. package/lib/ui-kit/CurrencyInput/adjustValue .js +9 -2
  785. package/lib/ui-kit/CurrencyInput/adjustValue .js.map +1 -1
  786. package/lib/ui-kit/Foldable/DefaultFoldButton.d.ts +14 -0
  787. package/lib/ui-kit/Foldable/DefaultFoldButton.js +13 -0
  788. package/lib/ui-kit/Foldable/DefaultFoldButton.js.map +1 -0
  789. package/lib/ui-kit/Foldable/Foldable.d.ts +5 -18
  790. package/lib/ui-kit/Foldable/Foldable.js +10 -18
  791. package/lib/ui-kit/Foldable/Foldable.js.map +1 -1
  792. package/lib/ui-kit/Foldable/FoldablePartProps.d.ts +4 -0
  793. package/lib/ui-kit/Foldable/FoldablePartProps.js +2 -0
  794. package/lib/ui-kit/Foldable/FoldablePartProps.js.map +1 -0
  795. package/lib/ui-kit/Foldable/FoldableSection.d.ts +5 -0
  796. package/lib/ui-kit/Foldable/FoldableSection.js +15 -0
  797. package/lib/ui-kit/Foldable/FoldableSection.js.map +1 -0
  798. package/lib/ui-kit/Icon/Icon.js +4 -5
  799. package/lib/ui-kit/Icon/Icon.js.map +1 -1
  800. package/lib/ui-kit/Icon/IconProps.d.ts +0 -1
  801. package/lib/ui-kit/Img/Img.d.ts +1 -2
  802. package/lib/ui-kit/Img/Img.js +1 -6
  803. package/lib/ui-kit/Img/Img.js.map +1 -1
  804. package/lib/ui-kit/Img/Img.mobile.js +1 -3
  805. package/lib/ui-kit/Img/Img.mobile.js.map +1 -1
  806. package/lib/ui-kit/InnerTable/InnerTableBody.js +1 -1
  807. package/lib/ui-kit/InnerTable/InnerTableBody.js.map +1 -1
  808. package/lib/ui-kit/InnerTable/InnerTableBodyItem.js +6 -2
  809. package/lib/ui-kit/InnerTable/InnerTableBodyItem.js.map +1 -1
  810. package/lib/ui-kit/InnerTable/InnerTableButton.js +1 -1
  811. package/lib/ui-kit/InnerTable/InnerTableButton.js.map +1 -1
  812. package/lib/ui-kit/InnerTable/InnerTableHeader.js +1 -1
  813. package/lib/ui-kit/InnerTable/InnerTableHeader.js.map +1 -1
  814. package/lib/ui-kit/Input/Input.js +12 -3
  815. package/lib/ui-kit/Input/Input.js.map +1 -1
  816. package/lib/ui-kit/Input/InputProps.d.ts +2 -0
  817. package/lib/ui-kit/InputRange/InputRange.js +2 -2
  818. package/lib/ui-kit/InputRange/InputRange.js.map +1 -1
  819. package/lib/ui-kit/IntersectionObserverTag.d.ts +11 -0
  820. package/lib/ui-kit/IntersectionObserverTag.js +20 -0
  821. package/lib/ui-kit/IntersectionObserverTag.js.map +1 -0
  822. package/lib/ui-kit/List/List.fixture.d.ts +0 -4
  823. package/lib/ui-kit/List/List.js +13 -8
  824. package/lib/ui-kit/List/List.js.map +1 -1
  825. package/lib/ui-kit/List/ListItem.d.ts +2 -2
  826. package/lib/ui-kit/List/ListItem.js +7 -21
  827. package/lib/ui-kit/List/ListItem.js.map +1 -1
  828. package/lib/ui-kit/List/ListProps.d.ts +5 -3
  829. package/lib/ui-kit/Radio/Radio.js +1 -1
  830. package/lib/ui-kit/Radio/Radio.js.map +1 -1
  831. package/lib/ui-kit/Select/Select.js +5 -2
  832. package/lib/ui-kit/Select/Select.js.map +1 -1
  833. package/lib/utils/getSanitizedValue.d.ts +1 -0
  834. package/lib/utils/getSanitizedValue.js +2 -0
  835. package/lib/utils/getSanitizedValue.js.map +1 -0
  836. package/mobile/bundle/EventBus/EventBus.d.ts +10 -0
  837. package/mobile/bundle/EventBus/EventMap.d.ts +7 -0
  838. package/mobile/bundle/ProjectSettings.d.ts +24 -0
  839. package/mobile/bundle/api/DaDataAPI.d.ts +15 -0
  840. package/mobile/bundle/api/LikeAPI.d.ts +9 -0
  841. package/mobile/bundle/bundle.umd.js +157 -625
  842. package/mobile/bundle/bundle.umd.min.js +1 -1
  843. package/mobile/bundle/components/Accordion/Accordion.d.ts +5 -0
  844. package/mobile/bundle/components/Accordion/AccordionContent.d.ts +45 -0
  845. package/mobile/bundle/components/Accordion/AccordionItem.d.ts +2 -0
  846. package/mobile/bundle/components/Accordion/AccordionItemProps.d.ts +5 -0
  847. package/mobile/bundle/components/Accordion/AccordionItemsList.d.ts +1 -0
  848. package/mobile/bundle/components/BaseTile/BaseTile.d.ts +5 -0
  849. package/mobile/bundle/components/BaseTile/BaseTileProps.d.ts +15 -0
  850. package/mobile/bundle/components/BaseTile/getTileHeadingType.d.ts +1 -0
  851. package/mobile/bundle/components/BaseTile/getTileMinHeight.d.ts +1 -0
  852. package/mobile/bundle/components/BaseTile/getTileRightPadding.d.ts +1 -0
  853. package/mobile/bundle/components/BenefitsBlock/BenefitsBlock.d.ts +5 -0
  854. package/mobile/bundle/components/BenefitsBlock/BenefitsBlockContent.d.ts +52 -0
  855. package/mobile/bundle/components/Blocks.d.ts +17 -0
  856. package/mobile/bundle/components/Bonus/Bonus.d.ts +5 -0
  857. package/mobile/bundle/components/Bonus/BonusContent.d.ts +45 -0
  858. package/mobile/bundle/components/BonusBenefitsBlock/BonusBenefitsBlock.d.ts +5 -0
  859. package/mobile/bundle/components/BonusBenefitsBlock/BonusBenefitsBlockContent.d.ts +15 -0
  860. package/mobile/bundle/components/BonusBenefitsBlock/getElementsColsValue.d.ts +1 -0
  861. package/mobile/bundle/components/Calculator/BonusCalculatorForm.d.ts +5 -0
  862. package/mobile/bundle/components/Calculator/Calculator.d.ts +5 -0
  863. package/mobile/bundle/components/Calculator/CalculatorContent.d.ts +129 -0
  864. package/mobile/bundle/components/Calculator/CalculatorValueBlock.d.ts +8 -0
  865. package/mobile/bundle/components/Calculator/CreditCalculatorForm.d.ts +7 -0
  866. package/mobile/bundle/components/Calculator/DepositCalculatorForm.d.ts +5 -0
  867. package/mobile/bundle/components/Calculator/EmbeddableCalcBlocks.d.ts +9 -0
  868. package/mobile/bundle/components/Calculator/Rate.d.ts +7 -0
  869. package/mobile/bundle/components/Calculator/constants.d.ts +16 -0
  870. package/mobile/bundle/components/Calculator/getBonus.d.ts +2 -0
  871. package/mobile/bundle/components/Calculator/getCreditRate.d.ts +7 -0
  872. package/mobile/bundle/components/Calculator/getDefaultMonths.d.ts +1 -0
  873. package/mobile/bundle/components/Calculator/getDefaultSum.d.ts +1 -0
  874. package/mobile/bundle/components/Calculator/getMonthlyPayment.d.ts +6 -0
  875. package/mobile/bundle/components/Calculator/renderButtonSection.d.ts +2 -0
  876. package/mobile/bundle/components/Calculator/renderCalculatorBlock.d.ts +3 -0
  877. package/mobile/bundle/components/Calculator/renderFootnote.d.ts +2 -0
  878. package/mobile/bundle/components/Calculator/renderInitialFeeInput.d.ts +6 -0
  879. package/mobile/bundle/components/Calculator/renderMonthsInput.d.ts +8 -0
  880. package/mobile/bundle/components/Calculator/renderPaymentTypeSelector.d.ts +6 -0
  881. package/mobile/bundle/components/Calculator/renderProposal.d.ts +2 -0
  882. package/mobile/bundle/components/Calculator/renderProposalMortgage.d.ts +8 -0
  883. package/mobile/bundle/components/Calculator/renderRealEstateValue.d.ts +6 -0
  884. package/mobile/bundle/components/Calculator/renderWantedSumInput.d.ts +11 -0
  885. package/mobile/bundle/components/Calculator/useBonusCalculatorParams.d.ts +36 -0
  886. package/mobile/bundle/components/Calculator/useCalculatorParams.d.ts +1 -0
  887. package/mobile/bundle/components/Calculator/useCreditCalculatorParams.d.ts +27 -0
  888. package/mobile/bundle/components/CardTransfer/CardTransfer.d.ts +5 -0
  889. package/mobile/bundle/components/CardTransfer/CardTransferContent.d.ts +10 -0
  890. package/mobile/bundle/components/Catalog/Catalog.d.ts +5 -0
  891. package/mobile/bundle/components/Catalog/CatalogCard.d.ts +7 -0
  892. package/mobile/bundle/components/Catalog/CatalogContent.d.ts +25 -0
  893. package/mobile/bundle/components/ComparisonTable/ComparisonTable.d.ts +5 -0
  894. package/mobile/bundle/components/ComparisonTable/ComparisonTableBody.d.ts +12 -0
  895. package/mobile/bundle/components/ComparisonTable/ComparisonTableColumnHeaders.d.ts +10 -0
  896. package/mobile/bundle/components/ComparisonTable/ComparisonTableContent.d.ts +50 -0
  897. package/mobile/bundle/components/ComparisonTable/ComparisonTableRows.d.ts +13 -0
  898. package/mobile/bundle/components/ComparisonTable/HeaderCell.d.ts +11 -0
  899. package/mobile/bundle/components/ComparisonTable/TableCarouselContainer.d.ts +7 -0
  900. package/mobile/bundle/components/ComparisonTable/TableCell.d.ts +9 -0
  901. package/mobile/bundle/components/ComparisonTable/TableColumn.d.ts +15 -0
  902. package/mobile/bundle/components/ComparisonTable/TableRow.d.ts +14 -0
  903. package/mobile/bundle/components/ComparisonTable/TableRowContainer.d.ts +1 -0
  904. package/mobile/bundle/components/ComparisonTable/constants.d.ts +6 -0
  905. package/mobile/bundle/components/ContentPage/ContentPage.d.ts +10 -0
  906. package/mobile/bundle/components/ContentPage/ContentPageContext.d.ts +17 -0
  907. package/mobile/bundle/components/ContentPage/ContentPageHead.d.ts +7 -0
  908. package/mobile/bundle/components/ContentPage/computeAPIFallback.d.ts +5 -0
  909. package/mobile/bundle/components/ContentPage/filterBlocks.d.ts +3 -0
  910. package/mobile/bundle/components/ContentPage/normalizeBlock.d.ts +2 -0
  911. package/mobile/bundle/components/ContentPage/normalizePage.d.ts +3 -0
  912. package/mobile/bundle/components/ContentPage/renderBlock.d.ts +13 -0
  913. package/mobile/bundle/components/ErrorBlock/ErrorBlock.d.ts +5 -0
  914. package/mobile/bundle/components/ErrorBlock/ErrorBlockContent.d.ts +48 -0
  915. package/mobile/bundle/components/ExchangeRateTile/CurrencyProps.d.ts +5 -0
  916. package/mobile/bundle/components/ExchangeRateTile/CurrencyTable.d.ts +7 -0
  917. package/mobile/bundle/components/ExchangeRateTile/CurrentLocation.d.ts +7 -0
  918. package/mobile/bundle/components/ExchangeRateTile/ExchangeCurrencyCalculator.d.ts +21 -0
  919. package/mobile/bundle/components/ExchangeRateTile/ExchangeRateTile.d.ts +5 -0
  920. package/mobile/bundle/components/ExchangeRateTile/ExchangeRateTileContent.d.ts +8 -0
  921. package/mobile/bundle/components/ExchangeRateTile/calculateResult.d.ts +2 -0
  922. package/mobile/bundle/components/ExchangeRateTile/callbackCurrencySelect.d.ts +8 -0
  923. package/mobile/bundle/components/ExchangeRateTile/formatCurrency.d.ts +1 -0
  924. package/mobile/bundle/components/ExchangeRateTile/renderInput.d.ts +13 -0
  925. package/mobile/bundle/components/Footer/Contacts.d.ts +7 -0
  926. package/mobile/bundle/components/Footer/Footer.d.ts +5 -0
  927. package/mobile/bundle/components/Footer/FooterContent.d.ts +44 -0
  928. package/mobile/bundle/components/Footer/FooterLink.d.ts +5 -0
  929. package/mobile/bundle/components/Footer/HorizontalNavigation.d.ts +6 -0
  930. package/mobile/bundle/components/Footer/HorizontalNavigationLink.d.ts +8 -0
  931. package/mobile/bundle/components/Footer/MediaButton.d.ts +7 -0
  932. package/mobile/bundle/components/Footer/Sitemap.d.ts +8 -0
  933. package/mobile/bundle/components/Footer/SocialMedia.d.ts +8 -0
  934. package/mobile/bundle/components/Footer/TextInformation.d.ts +2 -0
  935. package/mobile/bundle/components/Footer/TextInformationLink.d.ts +8 -0
  936. package/mobile/bundle/components/Gallery/Gallery.d.ts +2 -0
  937. package/mobile/bundle/components/Gallery/GalleryCardInner.d.ts +2 -0
  938. package/mobile/bundle/components/Gallery/GalleryContainer.d.ts +13 -0
  939. package/mobile/bundle/components/Gallery/GalleryContent.d.ts +64 -0
  940. package/mobile/bundle/components/Gallery/GalleryInner.d.ts +7 -0
  941. package/mobile/bundle/components/Gallery/GalleryProps.d.ts +4 -0
  942. package/mobile/bundle/components/Gallery/constants.d.ts +4 -0
  943. package/mobile/bundle/components/GracePeriod/GracePeriod.d.ts +5 -0
  944. package/mobile/bundle/components/GracePeriod/GracePeriodContent.d.ts +32 -0
  945. package/mobile/bundle/components/Header/DropdownMenu.d.ts +14 -0
  946. package/mobile/bundle/components/Header/Header.d.ts +5 -0
  947. package/mobile/bundle/components/Header/Header.fallback.d.ts +2 -0
  948. package/mobile/bundle/components/Header/HeaderBurger.d.ts +11 -0
  949. package/mobile/bundle/components/Header/HeaderContent.d.ts +41 -0
  950. package/mobile/bundle/components/Header/HeaderSecondaryMenu.d.ts +10 -0
  951. package/mobile/bundle/components/Header/HeaderSecondaryMenuButton.d.ts +6 -0
  952. package/mobile/bundle/components/Header/HeaderSubMenu.d.ts +9 -0
  953. package/mobile/bundle/components/Header/HeaderTop.d.ts +6 -0
  954. package/mobile/bundle/components/Headline/Headline.d.ts +5 -0
  955. package/mobile/bundle/components/Headline/HeadlineContent.d.ts +15 -0
  956. package/mobile/bundle/components/Headline/constants.d.ts +20 -0
  957. package/mobile/bundle/components/InsuranceAmountBlock/InsuranceAmountBlock.d.ts +5 -0
  958. package/mobile/bundle/components/InsuranceAmountBlock/InsuranceAmountBlockContent.d.ts +30 -0
  959. package/mobile/bundle/components/InsuranceAmountBlock/InsuranceAmountBlockInner.d.ts +7 -0
  960. package/mobile/bundle/components/InvestmentInfo/InvestmentInfo.d.ts +5 -0
  961. package/mobile/bundle/components/InvestmentInfo/InvestmentInfoContent.d.ts +49 -0
  962. package/mobile/bundle/components/LikeControl/LikeControl.d.ts +2 -0
  963. package/mobile/bundle/components/LinkDocs/LinkDocs.d.ts +5 -0
  964. package/mobile/bundle/components/LinkDocs/LinkDocsContent.d.ts +43 -0
  965. package/mobile/bundle/components/LinkDocs/LinkDocsHorizontalList.d.ts +6 -0
  966. package/mobile/bundle/components/LinkDocs/LinkDocsList.d.ts +9 -0
  967. package/mobile/bundle/components/LinkDocs/LinkDocsListItem.d.ts +2 -0
  968. package/mobile/bundle/components/LinkDocs/LinkDocsListItemBase.d.ts +13 -0
  969. package/mobile/bundle/components/LinkDocs/LinkDocsVerticalList.d.ts +8 -0
  970. package/mobile/bundle/components/LinkDocs/linkDocsContentExample.d.ts +2 -0
  971. package/mobile/bundle/components/LinkList/LinkList.d.ts +5 -0
  972. package/mobile/bundle/components/LinkList/LinkListContent.d.ts +8 -0
  973. package/mobile/bundle/components/LinkList/linkListContentExample.d.ts +2 -0
  974. package/mobile/bundle/components/MiniGallery/MiniGallery.d.ts +5 -0
  975. package/mobile/bundle/components/MiniGallery/MiniGalleryContent.d.ts +12 -0
  976. package/mobile/bundle/components/MobileAppTile/MobileAppTile.d.ts +5 -0
  977. package/mobile/bundle/components/MobileAppTile/MobileAppTileContent.d.ts +31 -0
  978. package/mobile/bundle/components/OfficeServicesBlock/OfficeServicesBlock.d.ts +5 -0
  979. package/mobile/bundle/components/OfficeServicesBlock/OfficeServicesBlockContent.d.ts +10 -0
  980. package/mobile/bundle/components/OtherProducts/OtherProducts.d.ts +5 -0
  981. package/mobile/bundle/components/OtherProducts/OtherProductsContent.d.ts +25 -0
  982. package/mobile/bundle/components/OtherProducts/OtherProductsItem.d.ts +6 -0
  983. package/mobile/bundle/components/PictureText/PictureText.d.ts +5 -0
  984. package/mobile/bundle/components/PictureText/PictureTextContent.d.ts +34 -0
  985. package/mobile/bundle/components/Placeholder/Placeholder.d.ts +6 -0
  986. package/mobile/bundle/components/Placeholder/PlaceholderContent.d.ts +5 -0
  987. package/mobile/bundle/components/ProductBlock/ProductBlock.d.ts +5 -0
  988. package/mobile/bundle/components/ProductBlock/ProductBlockContent.d.ts +54 -0
  989. package/mobile/bundle/components/ProductBlock/ProductBlockInner.d.ts +4 -0
  990. package/mobile/bundle/components/ProductBlock/renderBackwardButton.d.ts +4 -0
  991. package/mobile/bundle/components/ProductBlock/renderBenefit.d.ts +5 -0
  992. package/mobile/bundle/components/ProductGallery/ProductGallery.d.ts +5 -0
  993. package/mobile/bundle/components/ProductGallery/ProductGalleryBlock.d.ts +8 -0
  994. package/mobile/bundle/components/ProductGallery/ProductGalleryContent.d.ts +29 -0
  995. package/mobile/bundle/components/ProductTile/ProductTile.d.ts +5 -0
  996. package/mobile/bundle/components/ProductTile/ProductTileContent.d.ts +33 -0
  997. package/mobile/bundle/components/PromoTile/PromoTile.d.ts +5 -0
  998. package/mobile/bundle/components/PromoTile/PromoTileContent.d.ts +12 -0
  999. package/mobile/bundle/components/Recommendation/Recommendation.d.ts +5 -0
  1000. package/mobile/bundle/components/Recommendation/RecommendationCard.d.ts +7 -0
  1001. package/mobile/bundle/components/Recommendation/RecommendationContent.d.ts +43 -0
  1002. package/mobile/bundle/components/SafeDepositRental/RegionsAndBranches.d.ts +12 -0
  1003. package/mobile/bundle/components/SafeDepositRental/RenderRadioButtons.d.ts +2 -0
  1004. package/mobile/bundle/components/SafeDepositRental/RentalPeriod.d.ts +6 -0
  1005. package/mobile/bundle/components/SafeDepositRental/SafeBoxCases.d.ts +11 -0
  1006. package/mobile/bundle/components/SafeDepositRental/SafeDepositRental.d.ts +5 -0
  1007. package/mobile/bundle/components/SafeDepositRental/SafeDepositRentalContent.d.ts +9 -0
  1008. package/mobile/bundle/components/SafeDepositRental/SafeDepositRentalFields.d.ts +12 -0
  1009. package/mobile/bundle/components/SafeDepositRental/SafeDepositRentalForm.d.ts +11 -0
  1010. package/mobile/bundle/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +6 -0
  1011. package/mobile/bundle/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +8 -0
  1012. package/mobile/bundle/components/SafeDepositRental/WrapperSelect.d.ts +11 -0
  1013. package/mobile/bundle/components/SafeDepositRental/YandexMap.d.ts +5 -0
  1014. package/mobile/bundle/components/SafeDepositRental/renderClusterer.d.ts +2 -0
  1015. package/mobile/bundle/components/SafeDepositRental/useGetRegions.d.ts +6 -0
  1016. package/mobile/bundle/components/SafeDepositRental/useYandexMaps.d.ts +2 -0
  1017. package/mobile/bundle/components/SafeDepositRental/utils.d.ts +3 -0
  1018. package/mobile/bundle/components/StepsBlock/StepsBlock.d.ts +5 -0
  1019. package/mobile/bundle/components/StepsBlock/StepsBlockContent.d.ts +43 -0
  1020. package/mobile/bundle/components/StepsBlock/StepsBlockStyleMaps.d.ts +11 -0
  1021. package/mobile/bundle/components/StepsBlock/renderItems.d.ts +8 -0
  1022. package/mobile/bundle/components/StepsBlock/renderStepContent.d.ts +14 -0
  1023. package/mobile/bundle/components/Tabs/Tabs.d.ts +13 -0
  1024. package/mobile/bundle/components/Tabs/TabsContent.d.ts +36 -0
  1025. package/mobile/bundle/components/Tabs/renderGroupTab.d.ts +4 -0
  1026. package/mobile/bundle/components/Tabs/renderLinkTab.d.ts +9 -0
  1027. package/mobile/bundle/components/Tabs/renderTab.d.ts +12 -0
  1028. package/mobile/bundle/components/Tabs/tabItemClasses.d.ts +6 -0
  1029. package/mobile/bundle/components/TariffsTable/EmbeddableCellData.d.ts +12 -0
  1030. package/mobile/bundle/components/TariffsTable/TableTileHeader.d.ts +2 -0
  1031. package/mobile/bundle/components/TariffsTable/TariffsTable.d.ts +5 -0
  1032. package/mobile/bundle/components/TariffsTable/TariffsTableCell.d.ts +9 -0
  1033. package/mobile/bundle/components/TariffsTable/TariffsTableContent.d.ts +95 -0
  1034. package/mobile/bundle/components/TariffsTable/TariffsTableHorizontal.d.ts +6 -0
  1035. package/mobile/bundle/components/TariffsTable/TariffsTableRow.d.ts +9 -0
  1036. package/mobile/bundle/components/TariffsTable/TariffsTableRowContainer.d.ts +7 -0
  1037. package/mobile/bundle/components/TariffsTable/TariffsTableTileCell.d.ts +8 -0
  1038. package/mobile/bundle/components/TariffsTable/TariffsTableVertical.d.ts +6 -0
  1039. package/mobile/bundle/components/TariffsTable/constants.d.ts +4 -0
  1040. package/mobile/bundle/components/TariffsTable/dataFixture.d.ts +5 -0
  1041. package/mobile/bundle/components/TariffsTable/utils/getButtonAriaLabel.d.ts +2 -0
  1042. package/mobile/bundle/components/TextBlock/TextBlock.d.ts +5 -0
  1043. package/mobile/bundle/components/TextBlock/TextBlockContent.d.ts +22 -0
  1044. package/mobile/bundle/components/Tile/Tile.d.ts +6 -0
  1045. package/mobile/bundle/components/Tile/TileContent.d.ts +34 -0
  1046. package/mobile/bundle/content-page-repository/ContentPageRepository.d.ts +11 -0
  1047. package/mobile/bundle/content-page-repository/TransformationOptions.d.ts +4 -0
  1048. package/mobile/bundle/content-page-repository/index.d.ts +2 -0
  1049. package/mobile/bundle/content-page-repository/mapJSON.d.ts +1 -0
  1050. package/mobile/bundle/content-page-repository/transformContentPage.d.ts +3 -0
  1051. package/mobile/bundle/content-page-repository/transformImg.d.ts +11 -0
  1052. package/mobile/bundle/content-page-repository/transformMarkdown.d.ts +1 -0
  1053. package/mobile/bundle/content-page-repository/transformPicture.d.ts +3 -0
  1054. package/mobile/bundle/content-page-repository/transformSrc.d.ts +3 -0
  1055. package/mobile/bundle/hooks/useExchangeRates.d.ts +2 -0
  1056. package/mobile/bundle/hooks/useExternalNS.d.ts +2 -0
  1057. package/mobile/bundle/hooks/useGeolocation.d.ts +1 -0
  1058. package/mobile/bundle/hooks/useLikeService.d.ts +5 -0
  1059. package/mobile/bundle/hooks/useLink.d.ts +18 -0
  1060. package/mobile/bundle/hooks/useOutsideClick.d.ts +5 -0
  1061. package/mobile/{lib/hooks/useFetchSafeBoxes.d.ts → bundle/hooks/useSafeBoxes.d.ts} +1 -3
  1062. package/mobile/bundle/hooks/useSearch.d.ts +4 -0
  1063. package/mobile/bundle/hooks/useTableArrowScrollControl.d.ts +7 -0
  1064. package/mobile/bundle/hooks/useTariffsInnerTableData.d.ts +1 -0
  1065. package/mobile/bundle/icons/IconName.d.ts +194 -0
  1066. package/mobile/bundle/index.d.ts +9 -0
  1067. package/mobile/bundle/model/AlignType.d.ts +9 -0
  1068. package/mobile/bundle/model/BgColorVersion.d.ts +8 -0
  1069. package/mobile/bundle/model/BlockDecorator.d.ts +15 -0
  1070. package/mobile/bundle/model/BlockVersion.d.ts +11 -0
  1071. package/mobile/bundle/model/BlocksRegistry.d.ts +8 -0
  1072. package/mobile/bundle/model/ButtonVersion.d.ts +6 -0
  1073. package/mobile/bundle/model/ContentPageDef.d.ts +52 -0
  1074. package/mobile/bundle/model/EmptyOptionType.d.ts +4 -0
  1075. package/mobile/bundle/model/Fallback.d.ts +5 -0
  1076. package/mobile/bundle/model/Footnote.d.ts +4 -0
  1077. package/mobile/bundle/model/GalleryVersion.d.ts +1 -0
  1078. package/mobile/bundle/model/HeadlineType.d.ts +29 -0
  1079. package/mobile/bundle/model/IconVersion.d.ts +9 -0
  1080. package/mobile/bundle/model/ImageSize.d.ts +6 -0
  1081. package/mobile/bundle/model/InputTypes.d.ts +1 -0
  1082. package/mobile/bundle/model/LinkProps.d.ts +24 -0
  1083. package/mobile/bundle/model/ListOrientation.d.ts +8 -0
  1084. package/mobile/bundle/model/Picture.d.ts +59 -0
  1085. package/mobile/bundle/model/ProductColorVersion.d.ts +4 -0
  1086. package/mobile/bundle/model/SitemapProps.d.ts +24 -0
  1087. package/mobile/bundle/model/SizeVersion.d.ts +8 -0
  1088. package/mobile/bundle/model/TableVersion.d.ts +1 -0
  1089. package/mobile/bundle/model/VNode.d.ts +1 -0
  1090. package/mobile/bundle/react/setup-fixture.d.ts +4 -0
  1091. package/mobile/bundle/services/sitemap/SitemapProps.d.ts +24 -0
  1092. package/mobile/bundle/services/sitemap/checkIsHrefSameOrigin.d.ts +4 -0
  1093. package/mobile/bundle/services/sitemap/findActiveSubItem.d.ts +3 -0
  1094. package/mobile/bundle/services/sitemap/isHrefActive.d.ts +4 -0
  1095. package/mobile/bundle/services/sitemap/isSubItemActive.d.ts +3 -0
  1096. package/mobile/bundle/services/sitemap/isTopItemActive.d.ts +3 -0
  1097. package/mobile/bundle/services/sitemap/mergeTopItems.d.ts +2 -0
  1098. package/mobile/bundle/services/sitemap/useSitemap.d.ts +3 -0
  1099. package/mobile/bundle/ui-kit/BenefitItem/BenefitItem.d.ts +4 -0
  1100. package/mobile/bundle/ui-kit/BenefitItem/BenefitItemProps.d.ts +20 -0
  1101. package/mobile/bundle/ui-kit/BlockWrapper.d.ts +7 -0
  1102. package/mobile/bundle/ui-kit/BlocksList/BlocksListProps.d.ts +96 -0
  1103. package/mobile/bundle/ui-kit/BlocksList/EmbeddableBlocks.d.ts +8 -0
  1104. package/mobile/bundle/ui-kit/BlocksList/renderBlocksList.d.ts +9 -0
  1105. package/mobile/bundle/ui-kit/Breadcrumb.d.ts +6 -0
  1106. package/mobile/bundle/ui-kit/Button/ArrowButton.d.ts +2 -0
  1107. package/mobile/bundle/ui-kit/Button/Button.d.ts +2 -0
  1108. package/mobile/bundle/ui-kit/Button/ButtonInner.d.ts +7 -0
  1109. package/mobile/bundle/ui-kit/Button/ButtonProps.d.ts +54 -0
  1110. package/mobile/bundle/ui-kit/Button/ButtonSection.d.ts +5 -0
  1111. package/mobile/bundle/ui-kit/Button/GetButtonClassParams.d.ts +6 -0
  1112. package/mobile/bundle/ui-kit/Button/LikeButton.d.ts +6 -0
  1113. package/mobile/bundle/ui-kit/Button/buttonClassNameConstants.d.ts +5 -0
  1114. package/mobile/bundle/ui-kit/Button/getDisabledButtonClasses.d.ts +2 -0
  1115. package/mobile/bundle/ui-kit/Button/getRegularButtonClasses.d.ts +2 -0
  1116. package/mobile/bundle/ui-kit/Button/renderArrows.d.ts +9 -0
  1117. package/mobile/bundle/ui-kit/Checkbox/Checkbox.d.ts +2 -0
  1118. package/mobile/bundle/ui-kit/Checkbox/CheckboxProps.d.ts +7 -0
  1119. package/mobile/bundle/ui-kit/CurrencyInput/CurrencyInput.d.ts +2 -0
  1120. package/mobile/bundle/ui-kit/CurrencyInput/CurrencyInputProps.d.ts +5 -0
  1121. package/mobile/bundle/ui-kit/CurrencyInput/adjustValue .d.ts +3 -0
  1122. package/mobile/bundle/ui-kit/Description/Description.d.ts +5 -0
  1123. package/mobile/bundle/ui-kit/Foldable/DefaultFoldButton.d.ts +14 -0
  1124. package/mobile/bundle/ui-kit/Foldable/Foldable.d.ts +9 -0
  1125. package/mobile/bundle/ui-kit/Foldable/FoldablePartProps.d.ts +4 -0
  1126. package/mobile/bundle/ui-kit/Foldable/FoldableSection.d.ts +5 -0
  1127. package/mobile/bundle/ui-kit/HeaderItem/HeaderItem.d.ts +3 -0
  1128. package/mobile/bundle/ui-kit/Heading/Heading.d.ts +2 -0
  1129. package/mobile/bundle/ui-kit/Heading/HeadingProps.d.ts +23 -0
  1130. package/mobile/bundle/ui-kit/Icon/Icon.d.ts +2 -0
  1131. package/mobile/bundle/ui-kit/Icon/IconProps.d.ts +21 -0
  1132. package/mobile/bundle/ui-kit/Img/Img.d.ts +2 -0
  1133. package/mobile/bundle/ui-kit/Img/ImgAsPicture.d.ts +4 -0
  1134. package/mobile/bundle/ui-kit/Img/ImgInner.d.ts +2 -0
  1135. package/mobile/bundle/ui-kit/Img/ImgProps.d.ts +11 -0
  1136. package/mobile/bundle/ui-kit/Img/getIconVersion.d.ts +1 -0
  1137. package/mobile/bundle/ui-kit/InnerTable/InnerTable.d.ts +5 -0
  1138. package/mobile/bundle/ui-kit/InnerTable/InnerTableBody.d.ts +7 -0
  1139. package/mobile/bundle/ui-kit/InnerTable/InnerTableBodyItem.d.ts +6 -0
  1140. package/mobile/bundle/ui-kit/InnerTable/InnerTableButton.d.ts +6 -0
  1141. package/mobile/bundle/ui-kit/InnerTable/InnerTableHeader.d.ts +7 -0
  1142. package/mobile/bundle/ui-kit/InnerTable/InnerTableProps.d.ts +24 -0
  1143. package/mobile/bundle/ui-kit/Input/Input.d.ts +2 -0
  1144. package/mobile/bundle/ui-kit/Input/InputProps.d.ts +16 -0
  1145. package/mobile/bundle/ui-kit/InputRange/InputRange.d.ts +2 -0
  1146. package/mobile/bundle/ui-kit/InputRange/InputRangeProps.d.ts +11 -0
  1147. package/mobile/bundle/ui-kit/IntersectionObserverTag.d.ts +11 -0
  1148. package/mobile/bundle/ui-kit/List/List.d.ts +2 -0
  1149. package/mobile/bundle/ui-kit/List/ListContent.d.ts +4 -0
  1150. package/mobile/bundle/ui-kit/List/ListItem.d.ts +12 -0
  1151. package/mobile/bundle/ui-kit/List/ListProps.d.ts +26 -0
  1152. package/mobile/bundle/ui-kit/Logo/Logo.d.ts +8 -0
  1153. package/mobile/bundle/ui-kit/Radio/Radio.d.ts +2 -0
  1154. package/mobile/bundle/ui-kit/Radio/RadioProps.d.ts +9 -0
  1155. package/mobile/bundle/ui-kit/RadioButtonGroup/RadioButtonGroup.d.ts +12 -0
  1156. package/mobile/bundle/ui-kit/SVG.d.ts +19 -0
  1157. package/mobile/bundle/ui-kit/SearchBar/SearchBar.d.ts +2 -0
  1158. package/mobile/bundle/ui-kit/SearchBar/SearchBarInner.d.ts +5 -0
  1159. package/mobile/bundle/ui-kit/Select/Select.d.ts +14 -0
  1160. package/mobile/bundle/ui-kit/SwipeListControl/SwipeListControl.d.ts +2 -0
  1161. package/mobile/bundle/ui-kit/SwipeListControl/SwipeListControlDots.d.ts +6 -0
  1162. package/mobile/bundle/ui-kit/SwipeListControl/SwipeListControlItem.d.ts +9 -0
  1163. package/mobile/bundle/ui-kit/SwipeListControl/SwipeListControlList.d.ts +10 -0
  1164. package/mobile/bundle/ui-kit/SwipeListControl/SwipeListControlProps.d.ts +18 -0
  1165. package/mobile/bundle/ui-kit/SwipeListControl/constants.d.ts +2 -0
  1166. package/mobile/bundle/ui-kit/SwipeListControl/utils/getContainerStyle.d.ts +1 -0
  1167. package/mobile/bundle/ui-kit/SwipeListControl/utils/getIndexParts.d.ts +4 -0
  1168. package/mobile/bundle/ui-kit/SwipeListControl/utils/getScrollPoints.d.ts +8 -0
  1169. package/mobile/bundle/ui-kit/TableArrowScrollControl/TableArrowScrollControl.d.ts +2 -0
  1170. package/mobile/bundle/ui-kit/TableArrowScrollControl/TableArrowScrollControlProps.d.ts +7 -0
  1171. package/mobile/bundle/ui-kit/TopItem/TopItem.d.ts +14 -0
  1172. package/mobile/bundle/utils/addSpacesBetweenNumbers.d.ts +1 -0
  1173. package/mobile/bundle/utils/adjustHref.d.ts +4 -0
  1174. package/mobile/bundle/utils/assertUnreachable.d.ts +1 -0
  1175. package/mobile/bundle/utils/changeHashOnObserve.d.ts +9 -0
  1176. package/mobile/bundle/utils/checkIsIconRenderable.d.ts +2 -0
  1177. package/mobile/bundle/utils/clamp.d.ts +1 -0
  1178. package/mobile/bundle/utils/fetchJSON.d.ts +2 -0
  1179. package/mobile/bundle/utils/getColSpan.d.ts +1 -0
  1180. package/mobile/bundle/utils/getCurrentDate.d.ts +1 -0
  1181. package/mobile/bundle/utils/getGeolocation.d.ts +1 -0
  1182. package/mobile/bundle/utils/getSanitizedValue.d.ts +1 -0
  1183. package/mobile/bundle/utils/isPictureSizeEmpty.d.ts +2 -0
  1184. package/mobile/bundle/utils/joinList.d.ts +1 -0
  1185. package/mobile/bundle/utils/maxBy.d.ts +2 -0
  1186. package/mobile/bundle/utils/roundTo.d.ts +1 -0
  1187. package/mobile/bundle/utils/style2className.d.ts +1 -0
  1188. package/mobile/bundle/utils/tableFunc.d.ts +2 -0
  1189. package/mobile/bundle/utils/url.d.ts +5 -0
  1190. package/mobile/bundle/utils/withoutMobilePath.d.ts +2 -0
  1191. package/mobile/dist/components/Accordion/Accordion.js +5 -2
  1192. package/mobile/dist/components/Accordion/Accordion.js.map +1 -1
  1193. package/mobile/dist/components/Accordion/AccordionContent.d.ts +9 -7
  1194. package/mobile/dist/components/Accordion/AccordionItem.d.ts +1 -4
  1195. package/mobile/dist/components/Accordion/AccordionItem.js +7 -8
  1196. package/mobile/dist/components/Accordion/AccordionItem.js.map +1 -1
  1197. package/mobile/dist/components/Accordion/AccordionItemProps.d.ts +5 -0
  1198. package/mobile/dist/components/Accordion/AccordionItemProps.js +2 -0
  1199. package/mobile/dist/components/Accordion/AccordionItemProps.js.map +1 -0
  1200. package/mobile/dist/components/Accordion/AccordionItemsList.d.ts +1 -0
  1201. package/mobile/dist/components/Accordion/AccordionItemsList.js +6 -0
  1202. package/mobile/dist/components/Accordion/AccordionItemsList.js.map +1 -0
  1203. package/mobile/dist/components/BenefitsBlock/BenefitsBlock.js +1 -1
  1204. package/mobile/dist/components/BenefitsBlock/BenefitsBlock.js.map +1 -1
  1205. package/mobile/dist/components/Blocks.d.ts +0 -1
  1206. package/mobile/dist/components/Blocks.js +0 -2
  1207. package/mobile/dist/components/Blocks.js.map +1 -1
  1208. package/mobile/dist/components/Calculator/CalculatorContent.d.ts +1 -1
  1209. package/mobile/dist/components/CardTransfer/CardTransfer.js +3 -2
  1210. package/mobile/dist/components/CardTransfer/CardTransfer.js.map +1 -1
  1211. package/mobile/dist/components/Catalog/Catalog.js +1 -1
  1212. package/mobile/dist/components/Catalog/Catalog.js.map +1 -1
  1213. package/mobile/dist/components/Catalog/CatalogCard.js +1 -23
  1214. package/mobile/dist/components/Catalog/CatalogCard.js.map +1 -1
  1215. package/mobile/dist/components/ComparisonTable/ComparisonTable.js +13 -48
  1216. package/mobile/dist/components/ComparisonTable/ComparisonTable.js.map +1 -1
  1217. package/mobile/dist/components/ComparisonTable/TableColumn.d.ts +5 -8
  1218. package/mobile/dist/components/ComparisonTable/TableColumn.js +2 -8
  1219. package/mobile/dist/components/ComparisonTable/TableColumn.js.map +1 -1
  1220. package/mobile/dist/components/ContentPage/ContentPageContext.d.ts +0 -11
  1221. package/mobile/dist/components/ContentPage/filterBlocks.js +1 -3
  1222. package/mobile/dist/components/ContentPage/filterBlocks.js.map +1 -1
  1223. package/mobile/dist/components/ContentPage/renderBlock.js +1 -1
  1224. package/mobile/dist/components/ContentPage/renderBlock.js.map +1 -1
  1225. package/mobile/dist/components/ErrorBlock/ErrorBlock.js +1 -1
  1226. package/mobile/dist/components/ErrorBlock/ErrorBlock.js.map +1 -1
  1227. package/mobile/dist/components/ExchangeRateTile/renderInput.js +1 -1
  1228. package/mobile/dist/components/ExchangeRateTile/renderInput.js.map +1 -1
  1229. package/mobile/dist/components/Footer/Contacts.js +1 -1
  1230. package/mobile/dist/components/Footer/Contacts.js.map +1 -1
  1231. package/mobile/dist/components/Footer/Footer.js +8 -7
  1232. package/mobile/dist/components/Footer/Footer.js.map +1 -1
  1233. package/mobile/dist/components/Footer/FooterContent.d.ts +5 -9
  1234. package/mobile/dist/components/Gallery/Gallery.js +7 -3
  1235. package/mobile/dist/components/Gallery/Gallery.js.map +1 -1
  1236. package/mobile/dist/components/Gallery/GalleryCardInner.js +14 -17
  1237. package/mobile/dist/components/Gallery/GalleryCardInner.js.map +1 -1
  1238. package/mobile/dist/components/Gallery/GalleryContainer.js +2 -2
  1239. package/mobile/dist/components/Gallery/GalleryContainer.js.map +1 -1
  1240. package/mobile/dist/components/Gallery/GalleryContent.d.ts +11 -3
  1241. package/mobile/dist/components/Header/Header.js +5 -5
  1242. package/mobile/dist/components/Header/Header.js.map +1 -1
  1243. package/mobile/dist/components/Header/HeaderSubMenu.js +3 -2
  1244. package/mobile/dist/components/Header/HeaderSubMenu.js.map +1 -1
  1245. package/mobile/dist/components/Headline/constants.d.ts +2 -1
  1246. package/mobile/dist/components/Headline/constants.js +10 -1
  1247. package/mobile/dist/components/Headline/constants.js.map +1 -1
  1248. package/mobile/dist/components/InvestmentInfo/InvestmentInfo.d.ts +5 -0
  1249. package/mobile/dist/components/InvestmentInfo/InvestmentInfo.js +49 -0
  1250. package/mobile/dist/components/InvestmentInfo/InvestmentInfo.js.map +1 -0
  1251. package/mobile/dist/components/InvestmentInfo/InvestmentInfoContent.d.ts +49 -0
  1252. package/mobile/dist/components/InvestmentInfo/InvestmentInfoContent.js +2 -0
  1253. package/mobile/dist/components/InvestmentInfo/InvestmentInfoContent.js.map +1 -0
  1254. package/mobile/dist/components/MiniGallery/MiniGalleryContent.d.ts +1 -0
  1255. package/mobile/dist/components/OtherProducts/OtherProductsItem.js +5 -5
  1256. package/mobile/dist/components/OtherProducts/OtherProductsItem.js.map +1 -1
  1257. package/mobile/dist/components/ProductTile/ProductTile.js +1 -1
  1258. package/mobile/dist/components/ProductTile/ProductTile.js.map +1 -1
  1259. package/mobile/dist/components/Recommendation/RecommendationContent.d.ts +5 -0
  1260. package/mobile/dist/components/SafeDepositRental/RegionsAndBranches.d.ts +1 -1
  1261. package/mobile/dist/components/SafeDepositRental/SafeBoxCases.d.ts +1 -1
  1262. package/mobile/dist/components/SafeDepositRental/SafeDepositRental.d.ts +1 -1
  1263. package/mobile/dist/components/SafeDepositRental/SafeDepositRental.js +17 -3
  1264. package/mobile/dist/components/SafeDepositRental/SafeDepositRental.js.map +1 -1
  1265. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalFields.d.ts +7 -4
  1266. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalFields.js +3 -5
  1267. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalFields.js.map +1 -1
  1268. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalForm.d.ts +7 -3
  1269. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalForm.js +7 -28
  1270. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalForm.js.map +1 -1
  1271. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +1 -1
  1272. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +0 -2
  1273. package/mobile/dist/components/SafeDepositRental/utils.d.ts +1 -1
  1274. package/mobile/dist/components/StepsBlock/StepsBlockContent.d.ts +9 -2
  1275. package/mobile/dist/components/StepsBlock/StepsBlockStyleMaps.d.ts +1 -0
  1276. package/mobile/dist/components/StepsBlock/StepsBlockStyleMaps.js +4 -2
  1277. package/mobile/dist/components/StepsBlock/StepsBlockStyleMaps.js.map +1 -1
  1278. package/mobile/dist/components/StepsBlock/renderItems.d.ts +8 -0
  1279. package/mobile/dist/components/StepsBlock/renderItems.js +10 -0
  1280. package/mobile/dist/components/StepsBlock/renderItems.js.map +1 -0
  1281. package/mobile/dist/components/StepsBlock/renderStepContent.d.ts +14 -0
  1282. package/mobile/dist/components/StepsBlock/renderStepContent.js +20 -0
  1283. package/mobile/dist/components/StepsBlock/renderStepContent.js.map +1 -0
  1284. package/mobile/dist/components/TariffsTable/EmbeddableCellData.js +1 -2
  1285. package/mobile/dist/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  1286. package/mobile/dist/components/TariffsTable/TariffsTableCell.js +1 -1
  1287. package/mobile/dist/components/TariffsTable/TariffsTableCell.js.map +1 -1
  1288. package/mobile/dist/components/TariffsTable/TariffsTableRow.js +1 -2
  1289. package/mobile/dist/components/TariffsTable/TariffsTableRow.js.map +1 -1
  1290. package/mobile/dist/components/TariffsTable/dataFixture.js +4 -2
  1291. package/mobile/dist/components/TariffsTable/dataFixture.js.map +1 -1
  1292. package/mobile/dist/components/TariffsTable/utils/getButtonAriaLabel.d.ts +1 -1
  1293. package/mobile/dist/components/TariffsTable/utils/getButtonAriaLabel.js +1 -2
  1294. package/mobile/dist/components/TariffsTable/utils/getButtonAriaLabel.js.map +1 -1
  1295. package/mobile/dist/components/Tile/Tile.js +2 -3
  1296. package/mobile/dist/components/Tile/Tile.js.map +1 -1
  1297. package/mobile/dist/hooks/useOutsideClick.d.ts +5 -0
  1298. package/mobile/dist/hooks/useOutsideClick.js +21 -0
  1299. package/mobile/dist/hooks/useOutsideClick.js.map +1 -0
  1300. package/mobile/dist/hooks/useSafeBoxes.d.ts +20 -0
  1301. package/{dist/hooks/useFetchSafeBoxes.js → mobile/dist/hooks/useSafeBoxes.js} +9 -10
  1302. package/mobile/dist/hooks/useSafeBoxes.js.map +1 -0
  1303. package/mobile/dist/icons/IconName.d.ts +1 -92
  1304. package/mobile/dist/icons/IconName.js +4 -4
  1305. package/mobile/dist/icons/IconName.js.map +1 -1
  1306. package/mobile/dist/model/BlockDecorator.d.ts +1 -0
  1307. package/mobile/dist/model/BlockDecorator.js +2 -1
  1308. package/mobile/dist/model/BlockDecorator.js.map +1 -1
  1309. package/mobile/dist/model/BlocksRegistry.d.ts +4 -1
  1310. package/mobile/dist/model/HeadlineType.d.ts +8 -0
  1311. package/mobile/dist/model/Picture.d.ts +1 -0
  1312. package/mobile/dist/react/setup-fixture.js +0 -2
  1313. package/mobile/dist/react/setup-fixture.js.map +1 -1
  1314. package/mobile/dist/ui-kit/BenefitItem/BenefitItem.js +3 -1
  1315. package/mobile/dist/ui-kit/BenefitItem/BenefitItem.js.map +1 -1
  1316. package/mobile/dist/ui-kit/BlockWrapper.d.ts +0 -3
  1317. package/mobile/dist/ui-kit/BlockWrapper.js +5 -5
  1318. package/mobile/dist/ui-kit/BlockWrapper.js.map +1 -1
  1319. package/mobile/dist/ui-kit/BlocksList/renderBlocksList.d.ts +1 -1
  1320. package/mobile/dist/ui-kit/BlocksList/renderBlocksList.js +1 -1
  1321. package/mobile/dist/ui-kit/BlocksList/renderBlocksList.js.map +1 -1
  1322. package/mobile/dist/ui-kit/Button/Button.js +1 -1
  1323. package/mobile/dist/ui-kit/Button/Button.js.map +1 -1
  1324. package/mobile/dist/ui-kit/Button/ButtonInner.js +3 -2
  1325. package/mobile/dist/ui-kit/Button/ButtonInner.js.map +1 -1
  1326. package/mobile/dist/ui-kit/Button/ButtonProps.d.ts +1 -7
  1327. package/mobile/dist/ui-kit/Button/ButtonSection.js +5 -10
  1328. package/mobile/dist/ui-kit/Button/ButtonSection.js.map +1 -1
  1329. package/mobile/dist/ui-kit/Button/buttonClassNameConstants.d.ts +1 -0
  1330. package/mobile/dist/ui-kit/Button/buttonClassNameConstants.js +7 -1
  1331. package/mobile/dist/ui-kit/Button/buttonClassNameConstants.js.map +1 -1
  1332. package/mobile/dist/ui-kit/CurrencyInput/CurrencyInput.js +7 -1
  1333. package/mobile/dist/ui-kit/CurrencyInput/CurrencyInput.js.map +1 -1
  1334. package/mobile/dist/ui-kit/CurrencyInput/adjustValue .d.ts +2 -0
  1335. package/mobile/dist/ui-kit/CurrencyInput/adjustValue .js +11 -2
  1336. package/mobile/dist/ui-kit/CurrencyInput/adjustValue .js.map +1 -1
  1337. package/mobile/dist/ui-kit/Foldable/DefaultFoldButton.d.ts +14 -0
  1338. package/mobile/dist/ui-kit/Foldable/DefaultFoldButton.js +16 -0
  1339. package/mobile/dist/ui-kit/Foldable/DefaultFoldButton.js.map +1 -0
  1340. package/mobile/dist/ui-kit/Foldable/Foldable.d.ts +5 -18
  1341. package/mobile/dist/ui-kit/Foldable/Foldable.js +9 -17
  1342. package/mobile/dist/ui-kit/Foldable/Foldable.js.map +1 -1
  1343. package/mobile/dist/ui-kit/Foldable/FoldablePartProps.d.ts +4 -0
  1344. package/mobile/dist/ui-kit/Foldable/FoldablePartProps.js +2 -0
  1345. package/mobile/dist/ui-kit/Foldable/FoldablePartProps.js.map +1 -0
  1346. package/mobile/dist/ui-kit/Foldable/FoldableSection.d.ts +5 -0
  1347. package/mobile/dist/ui-kit/Foldable/FoldableSection.js +17 -0
  1348. package/mobile/dist/ui-kit/Foldable/FoldableSection.js.map +1 -0
  1349. package/mobile/dist/ui-kit/Icon/Icon.js +4 -5
  1350. package/mobile/dist/ui-kit/Icon/Icon.js.map +1 -1
  1351. package/mobile/dist/ui-kit/Icon/IconProps.d.ts +0 -1
  1352. package/mobile/dist/ui-kit/Img/Img.js +1 -3
  1353. package/mobile/dist/ui-kit/Img/Img.js.map +1 -1
  1354. package/mobile/dist/ui-kit/InnerTable/InnerTableBody.js +1 -1
  1355. package/mobile/dist/ui-kit/InnerTable/InnerTableBody.js.map +1 -1
  1356. package/mobile/dist/ui-kit/InnerTable/InnerTableBodyItem.js +6 -2
  1357. package/mobile/dist/ui-kit/InnerTable/InnerTableBodyItem.js.map +1 -1
  1358. package/mobile/dist/ui-kit/InnerTable/InnerTableButton.js +1 -1
  1359. package/mobile/dist/ui-kit/InnerTable/InnerTableButton.js.map +1 -1
  1360. package/mobile/dist/ui-kit/InnerTable/InnerTableHeader.js +1 -1
  1361. package/mobile/dist/ui-kit/InnerTable/InnerTableHeader.js.map +1 -1
  1362. package/mobile/dist/ui-kit/Input/Input.js +12 -3
  1363. package/mobile/dist/ui-kit/Input/Input.js.map +1 -1
  1364. package/mobile/dist/ui-kit/Input/InputProps.d.ts +2 -0
  1365. package/mobile/dist/ui-kit/InputRange/InputRange.js +2 -2
  1366. package/mobile/dist/ui-kit/InputRange/InputRange.js.map +1 -1
  1367. package/mobile/dist/ui-kit/IntersectionObserverTag.d.ts +11 -0
  1368. package/mobile/dist/ui-kit/IntersectionObserverTag.js +22 -0
  1369. package/mobile/dist/ui-kit/IntersectionObserverTag.js.map +1 -0
  1370. package/mobile/dist/ui-kit/List/List.js +13 -8
  1371. package/mobile/dist/ui-kit/List/List.js.map +1 -1
  1372. package/mobile/dist/ui-kit/List/ListItem.d.ts +2 -2
  1373. package/mobile/dist/ui-kit/List/ListItem.js +8 -23
  1374. package/mobile/dist/ui-kit/List/ListItem.js.map +1 -1
  1375. package/mobile/dist/ui-kit/List/ListProps.d.ts +5 -3
  1376. package/mobile/dist/ui-kit/Radio/Radio.js +1 -1
  1377. package/mobile/dist/ui-kit/Radio/Radio.js.map +1 -1
  1378. package/mobile/dist/ui-kit/Select/Select.js +4 -1
  1379. package/mobile/dist/ui-kit/Select/Select.js.map +1 -1
  1380. package/mobile/dist/utils/getSanitizedValue.d.ts +1 -0
  1381. package/mobile/dist/utils/getSanitizedValue.js +5 -0
  1382. package/mobile/dist/utils/getSanitizedValue.js.map +1 -0
  1383. package/mobile/lib/components/Accordion/Accordion.js +5 -2
  1384. package/mobile/lib/components/Accordion/Accordion.js.map +1 -1
  1385. package/mobile/lib/components/Accordion/AccordionContent.d.ts +9 -7
  1386. package/mobile/lib/components/Accordion/AccordionItem.d.ts +1 -4
  1387. package/mobile/lib/components/Accordion/AccordionItem.js +7 -8
  1388. package/mobile/lib/components/Accordion/AccordionItem.js.map +1 -1
  1389. package/mobile/lib/components/Accordion/AccordionItemProps.d.ts +5 -0
  1390. package/mobile/lib/components/Accordion/AccordionItemProps.js +2 -0
  1391. package/mobile/lib/components/Accordion/AccordionItemProps.js.map +1 -0
  1392. package/mobile/lib/components/Accordion/AccordionItemsList.d.ts +1 -0
  1393. package/mobile/lib/components/Accordion/AccordionItemsList.js +4 -0
  1394. package/mobile/lib/components/Accordion/AccordionItemsList.js.map +1 -0
  1395. package/mobile/lib/components/BenefitsBlock/BenefitsBlock.js +1 -1
  1396. package/mobile/lib/components/BenefitsBlock/BenefitsBlock.js.map +1 -1
  1397. package/mobile/lib/components/Blocks.d.ts +0 -1
  1398. package/mobile/lib/components/Blocks.js +0 -2
  1399. package/mobile/lib/components/Blocks.js.map +1 -1
  1400. package/mobile/lib/components/Calculator/CalculatorContent.d.ts +1 -1
  1401. package/mobile/lib/components/CardTransfer/CardTransfer.js +3 -2
  1402. package/mobile/lib/components/CardTransfer/CardTransfer.js.map +1 -1
  1403. package/mobile/lib/components/Catalog/Catalog.js +1 -1
  1404. package/mobile/lib/components/Catalog/Catalog.js.map +1 -1
  1405. package/mobile/lib/components/Catalog/CatalogCard.js +1 -23
  1406. package/mobile/lib/components/Catalog/CatalogCard.js.map +1 -1
  1407. package/mobile/lib/components/ComparisonTable/ComparisonTable.js +14 -49
  1408. package/mobile/lib/components/ComparisonTable/ComparisonTable.js.map +1 -1
  1409. package/mobile/lib/components/ComparisonTable/TableColumn.d.ts +5 -8
  1410. package/mobile/lib/components/ComparisonTable/TableColumn.js +2 -8
  1411. package/mobile/lib/components/ComparisonTable/TableColumn.js.map +1 -1
  1412. package/mobile/lib/components/ContentPage/ContentPageContext.d.ts +0 -11
  1413. package/mobile/lib/components/ContentPage/filterBlocks.js +1 -3
  1414. package/mobile/lib/components/ContentPage/filterBlocks.js.map +1 -1
  1415. package/mobile/lib/components/ContentPage/renderBlock.js +2 -2
  1416. package/mobile/lib/components/ContentPage/renderBlock.js.map +1 -1
  1417. package/mobile/lib/components/ErrorBlock/ErrorBlock.js +1 -1
  1418. package/mobile/lib/components/ErrorBlock/ErrorBlock.js.map +1 -1
  1419. package/mobile/lib/components/ExchangeRateTile/renderInput.js +1 -1
  1420. package/mobile/lib/components/ExchangeRateTile/renderInput.js.map +1 -1
  1421. package/mobile/lib/components/Footer/Contacts.js +1 -1
  1422. package/mobile/lib/components/Footer/Contacts.js.map +1 -1
  1423. package/mobile/lib/components/Footer/Footer.js +8 -7
  1424. package/mobile/lib/components/Footer/Footer.js.map +1 -1
  1425. package/mobile/lib/components/Footer/FooterContent.d.ts +5 -9
  1426. package/mobile/lib/components/Gallery/Gallery.js +7 -3
  1427. package/mobile/lib/components/Gallery/Gallery.js.map +1 -1
  1428. package/mobile/lib/components/Gallery/GalleryCardInner.js +15 -18
  1429. package/mobile/lib/components/Gallery/GalleryCardInner.js.map +1 -1
  1430. package/mobile/lib/components/Gallery/GalleryContainer.js +2 -2
  1431. package/mobile/lib/components/Gallery/GalleryContainer.js.map +1 -1
  1432. package/mobile/lib/components/Gallery/GalleryContent.d.ts +11 -3
  1433. package/mobile/lib/components/Header/Header.js +5 -5
  1434. package/mobile/lib/components/Header/Header.js.map +1 -1
  1435. package/mobile/lib/components/Header/HeaderSubMenu.js +2 -1
  1436. package/mobile/lib/components/Header/HeaderSubMenu.js.map +1 -1
  1437. package/mobile/lib/components/Headline/constants.d.ts +2 -1
  1438. package/mobile/lib/components/Headline/constants.js +9 -0
  1439. package/mobile/lib/components/Headline/constants.js.map +1 -1
  1440. package/mobile/lib/components/InvestmentInfo/InvestmentInfo.d.ts +5 -0
  1441. package/mobile/lib/components/InvestmentInfo/InvestmentInfo.js +47 -0
  1442. package/mobile/lib/components/InvestmentInfo/InvestmentInfo.js.map +1 -0
  1443. package/mobile/lib/components/InvestmentInfo/InvestmentInfoContent.d.ts +49 -0
  1444. package/mobile/lib/components/InvestmentInfo/InvestmentInfoContent.js +2 -0
  1445. package/mobile/lib/components/InvestmentInfo/InvestmentInfoContent.js.map +1 -0
  1446. package/mobile/lib/components/MiniGallery/MiniGalleryContent.d.ts +1 -0
  1447. package/mobile/lib/components/OtherProducts/OtherProductsItem.js +5 -5
  1448. package/mobile/lib/components/OtherProducts/OtherProductsItem.js.map +1 -1
  1449. package/mobile/lib/components/ProductTile/ProductTile.js +1 -1
  1450. package/mobile/lib/components/ProductTile/ProductTile.js.map +1 -1
  1451. package/mobile/lib/components/Recommendation/RecommendationContent.d.ts +5 -0
  1452. package/mobile/lib/components/SafeDepositRental/RegionsAndBranches.d.ts +1 -1
  1453. package/mobile/lib/components/SafeDepositRental/SafeBoxCases.d.ts +1 -1
  1454. package/mobile/lib/components/SafeDepositRental/SafeDepositRental.d.ts +1 -1
  1455. package/mobile/lib/components/SafeDepositRental/SafeDepositRental.js +18 -4
  1456. package/mobile/lib/components/SafeDepositRental/SafeDepositRental.js.map +1 -1
  1457. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalFields.d.ts +7 -4
  1458. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalFields.js +3 -5
  1459. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalFields.js.map +1 -1
  1460. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalForm.d.ts +7 -3
  1461. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalForm.js +9 -30
  1462. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalForm.js.map +1 -1
  1463. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +1 -1
  1464. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +0 -2
  1465. package/mobile/lib/components/SafeDepositRental/utils.d.ts +1 -1
  1466. package/mobile/lib/components/StepsBlock/StepsBlockContent.d.ts +9 -2
  1467. package/mobile/lib/components/StepsBlock/StepsBlockStyleMaps.d.ts +1 -0
  1468. package/mobile/lib/components/StepsBlock/StepsBlockStyleMaps.js +4 -2
  1469. package/mobile/lib/components/StepsBlock/StepsBlockStyleMaps.js.map +1 -1
  1470. package/mobile/lib/components/StepsBlock/renderItems.d.ts +8 -0
  1471. package/mobile/lib/components/StepsBlock/renderItems.js +7 -0
  1472. package/mobile/lib/components/StepsBlock/renderItems.js.map +1 -0
  1473. package/mobile/lib/components/StepsBlock/renderStepContent.d.ts +14 -0
  1474. package/mobile/lib/components/StepsBlock/renderStepContent.js +17 -0
  1475. package/mobile/lib/components/StepsBlock/renderStepContent.js.map +1 -0
  1476. package/mobile/lib/components/TariffsTable/EmbeddableCellData.js +1 -2
  1477. package/mobile/lib/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  1478. package/mobile/lib/components/TariffsTable/TariffsTableCell.js +1 -1
  1479. package/mobile/lib/components/TariffsTable/TariffsTableCell.js.map +1 -1
  1480. package/mobile/lib/components/TariffsTable/TariffsTableRow.js +1 -2
  1481. package/mobile/lib/components/TariffsTable/TariffsTableRow.js.map +1 -1
  1482. package/mobile/lib/components/TariffsTable/dataFixture.js +4 -2
  1483. package/mobile/lib/components/TariffsTable/dataFixture.js.map +1 -1
  1484. package/mobile/lib/components/TariffsTable/utils/getButtonAriaLabel.d.ts +1 -1
  1485. package/mobile/lib/components/TariffsTable/utils/getButtonAriaLabel.js +1 -2
  1486. package/mobile/lib/components/TariffsTable/utils/getButtonAriaLabel.js.map +1 -1
  1487. package/mobile/lib/components/Tile/Tile.js +2 -3
  1488. package/mobile/lib/components/Tile/Tile.js.map +1 -1
  1489. package/mobile/lib/hooks/useOutsideClick.d.ts +5 -0
  1490. package/mobile/lib/hooks/useOutsideClick.js +18 -0
  1491. package/mobile/lib/hooks/useOutsideClick.js.map +1 -0
  1492. package/mobile/lib/hooks/useSafeBoxes.d.ts +20 -0
  1493. package/mobile/lib/hooks/{useFetchSafeBoxes.js → useSafeBoxes.js} +7 -8
  1494. package/mobile/lib/hooks/useSafeBoxes.js.map +1 -0
  1495. package/mobile/lib/icons/IconName.d.ts +1 -92
  1496. package/mobile/lib/icons/IconName.js +3 -3
  1497. package/mobile/lib/icons/IconName.js.map +1 -1
  1498. package/mobile/lib/model/BlockDecorator.d.ts +1 -0
  1499. package/mobile/lib/model/BlockDecorator.js +1 -0
  1500. package/mobile/lib/model/BlockDecorator.js.map +1 -1
  1501. package/mobile/lib/model/BlocksRegistry.d.ts +4 -1
  1502. package/mobile/lib/model/HeadlineType.d.ts +8 -0
  1503. package/mobile/lib/model/Picture.d.ts +1 -0
  1504. package/mobile/lib/react/setup-fixture.js +0 -2
  1505. package/mobile/lib/react/setup-fixture.js.map +1 -1
  1506. package/mobile/lib/ui-kit/BenefitItem/BenefitItem.js +3 -1
  1507. package/mobile/lib/ui-kit/BenefitItem/BenefitItem.js.map +1 -1
  1508. package/mobile/lib/ui-kit/BlockWrapper.d.ts +0 -3
  1509. package/mobile/lib/ui-kit/BlockWrapper.js +4 -4
  1510. package/mobile/lib/ui-kit/BlockWrapper.js.map +1 -1
  1511. package/mobile/lib/ui-kit/BlocksList/renderBlocksList.d.ts +1 -1
  1512. package/mobile/lib/ui-kit/BlocksList/renderBlocksList.js +1 -1
  1513. package/mobile/lib/ui-kit/BlocksList/renderBlocksList.js.map +1 -1
  1514. package/mobile/lib/ui-kit/Button/Button.js +1 -1
  1515. package/mobile/lib/ui-kit/Button/Button.js.map +1 -1
  1516. package/mobile/lib/ui-kit/Button/ButtonInner.js +3 -2
  1517. package/mobile/lib/ui-kit/Button/ButtonInner.js.map +1 -1
  1518. package/mobile/lib/ui-kit/Button/ButtonProps.d.ts +1 -7
  1519. package/mobile/lib/ui-kit/Button/ButtonSection.js +5 -10
  1520. package/mobile/lib/ui-kit/Button/ButtonSection.js.map +1 -1
  1521. package/mobile/lib/ui-kit/Button/buttonClassNameConstants.d.ts +1 -0
  1522. package/mobile/lib/ui-kit/Button/buttonClassNameConstants.js +6 -0
  1523. package/mobile/lib/ui-kit/Button/buttonClassNameConstants.js.map +1 -1
  1524. package/mobile/lib/ui-kit/CurrencyInput/CurrencyInput.js +8 -2
  1525. package/mobile/lib/ui-kit/CurrencyInput/CurrencyInput.js.map +1 -1
  1526. package/mobile/lib/ui-kit/CurrencyInput/adjustValue .d.ts +2 -0
  1527. package/mobile/lib/ui-kit/CurrencyInput/adjustValue .js +9 -2
  1528. package/mobile/lib/ui-kit/CurrencyInput/adjustValue .js.map +1 -1
  1529. package/mobile/lib/ui-kit/Foldable/DefaultFoldButton.d.ts +14 -0
  1530. package/mobile/lib/ui-kit/Foldable/DefaultFoldButton.js +13 -0
  1531. package/mobile/lib/ui-kit/Foldable/DefaultFoldButton.js.map +1 -0
  1532. package/mobile/lib/ui-kit/Foldable/Foldable.d.ts +5 -18
  1533. package/mobile/lib/ui-kit/Foldable/Foldable.js +10 -18
  1534. package/mobile/lib/ui-kit/Foldable/Foldable.js.map +1 -1
  1535. package/mobile/lib/ui-kit/Foldable/FoldablePartProps.d.ts +4 -0
  1536. package/mobile/lib/ui-kit/Foldable/FoldablePartProps.js +2 -0
  1537. package/mobile/lib/ui-kit/Foldable/FoldablePartProps.js.map +1 -0
  1538. package/mobile/lib/ui-kit/Foldable/FoldableSection.d.ts +5 -0
  1539. package/mobile/lib/ui-kit/Foldable/FoldableSection.js +15 -0
  1540. package/mobile/lib/ui-kit/Foldable/FoldableSection.js.map +1 -0
  1541. package/mobile/lib/ui-kit/Icon/Icon.js +4 -5
  1542. package/mobile/lib/ui-kit/Icon/Icon.js.map +1 -1
  1543. package/mobile/lib/ui-kit/Icon/IconProps.d.ts +0 -1
  1544. package/mobile/lib/ui-kit/Img/Img.js +1 -3
  1545. package/mobile/lib/ui-kit/Img/Img.js.map +1 -1
  1546. package/mobile/lib/ui-kit/InnerTable/InnerTableBody.js +1 -1
  1547. package/mobile/lib/ui-kit/InnerTable/InnerTableBody.js.map +1 -1
  1548. package/mobile/lib/ui-kit/InnerTable/InnerTableBodyItem.js +6 -2
  1549. package/mobile/lib/ui-kit/InnerTable/InnerTableBodyItem.js.map +1 -1
  1550. package/mobile/lib/ui-kit/InnerTable/InnerTableButton.js +1 -1
  1551. package/mobile/lib/ui-kit/InnerTable/InnerTableButton.js.map +1 -1
  1552. package/mobile/lib/ui-kit/InnerTable/InnerTableHeader.js +1 -1
  1553. package/mobile/lib/ui-kit/InnerTable/InnerTableHeader.js.map +1 -1
  1554. package/mobile/lib/ui-kit/Input/Input.js +12 -3
  1555. package/mobile/lib/ui-kit/Input/Input.js.map +1 -1
  1556. package/mobile/lib/ui-kit/Input/InputProps.d.ts +2 -0
  1557. package/mobile/lib/ui-kit/InputRange/InputRange.js +2 -2
  1558. package/mobile/lib/ui-kit/InputRange/InputRange.js.map +1 -1
  1559. package/mobile/lib/ui-kit/IntersectionObserverTag.d.ts +11 -0
  1560. package/mobile/lib/ui-kit/IntersectionObserverTag.js +20 -0
  1561. package/mobile/lib/ui-kit/IntersectionObserverTag.js.map +1 -0
  1562. package/mobile/lib/ui-kit/List/List.js +13 -8
  1563. package/mobile/lib/ui-kit/List/List.js.map +1 -1
  1564. package/mobile/lib/ui-kit/List/ListItem.d.ts +2 -2
  1565. package/mobile/lib/ui-kit/List/ListItem.js +7 -21
  1566. package/mobile/lib/ui-kit/List/ListItem.js.map +1 -1
  1567. package/mobile/lib/ui-kit/List/ListProps.d.ts +5 -3
  1568. package/mobile/lib/ui-kit/Radio/Radio.js +1 -1
  1569. package/mobile/lib/ui-kit/Radio/Radio.js.map +1 -1
  1570. package/mobile/lib/ui-kit/Select/Select.js +5 -2
  1571. package/mobile/lib/ui-kit/Select/Select.js.map +1 -1
  1572. package/mobile/lib/utils/getSanitizedValue.d.ts +1 -0
  1573. package/mobile/lib/utils/getSanitizedValue.js +2 -0
  1574. package/mobile/lib/utils/getSanitizedValue.js.map +1 -0
  1575. package/mobile/src/common.css +11 -3
  1576. package/mobile/src/components/Accordion/Accordion.tsx +17 -7
  1577. package/mobile/src/components/Accordion/AccordionContent.ts +10 -7
  1578. package/mobile/src/components/Accordion/AccordionItem.tsx +61 -33
  1579. package/mobile/src/components/Accordion/AccordionItemProps.ts +6 -0
  1580. package/mobile/src/components/Accordion/AccordionItemsList.tsx +5 -0
  1581. package/mobile/src/components/BenefitsBlock/BenefitsBlock.tsx +1 -1
  1582. package/mobile/src/components/Blocks.ts +0 -2
  1583. package/mobile/src/components/Calculator/CalculatorContent.ts +1 -1
  1584. package/mobile/src/components/CardTransfer/CardTransfer.tsx +3 -1
  1585. package/mobile/src/components/Catalog/Catalog.tsx +2 -2
  1586. package/mobile/src/components/Catalog/CatalogCard.tsx +1 -35
  1587. package/mobile/src/components/ComparisonTable/ComparisonTable.tsx +49 -120
  1588. package/mobile/src/components/ComparisonTable/TableColumn.tsx +25 -27
  1589. package/mobile/src/components/ContentPage/ContentPageContext.tsx +0 -14
  1590. package/mobile/src/components/ContentPage/filterBlocks.ts +1 -3
  1591. package/mobile/src/components/ContentPage/renderBlock.tsx +2 -2
  1592. package/mobile/src/components/ErrorBlock/ErrorBlock.tsx +1 -3
  1593. package/mobile/src/components/ExchangeRateTile/ExchangeRateTile.ui.json +8 -1
  1594. package/mobile/src/components/ExchangeRateTile/renderInput.tsx +1 -1
  1595. package/mobile/src/components/Footer/Contacts.tsx +1 -0
  1596. package/mobile/src/components/Footer/Footer.tsx +15 -13
  1597. package/mobile/src/components/Footer/FooterContent.ts +5 -10
  1598. package/mobile/src/components/Gallery/Gallery.tsx +15 -5
  1599. package/mobile/src/components/Gallery/GalleryCardInner.tsx +60 -44
  1600. package/mobile/src/components/Gallery/GalleryContainer.tsx +10 -2
  1601. package/mobile/src/components/Gallery/GalleryContent.ts +11 -3
  1602. package/mobile/src/components/GracePeriod/GracePeriod.ui.json +5 -0
  1603. package/mobile/src/components/Header/Header.tsx +16 -11
  1604. package/mobile/src/components/Header/HeaderSubMenu.tsx +2 -1
  1605. package/mobile/src/components/Headline/constants.ts +11 -1
  1606. package/mobile/src/components/InvestmentInfo/InvestmentInfo.example.json +48 -0
  1607. package/mobile/src/components/InvestmentInfo/InvestmentInfo.tsx +149 -0
  1608. package/mobile/src/components/InvestmentInfo/InvestmentInfo.ui.json +16 -0
  1609. package/mobile/src/components/InvestmentInfo/InvestmentInfoContent.ts +55 -0
  1610. package/mobile/src/components/MiniGallery/MiniGalleryContent.ts +1 -0
  1611. package/mobile/src/components/OtherProducts/OtherProductsItem.tsx +26 -14
  1612. package/mobile/src/components/ProductTile/ProductTile.tsx +3 -3
  1613. package/mobile/src/components/Recommendation/RecommendationContent.ts +5 -0
  1614. package/mobile/src/components/SafeDepositRental/RegionsAndBranches.tsx +1 -1
  1615. package/mobile/src/components/SafeDepositRental/SafeBoxCases.tsx +1 -1
  1616. package/mobile/src/components/SafeDepositRental/SafeDepositRental.tsx +34 -7
  1617. package/mobile/src/components/SafeDepositRental/SafeDepositRental.ui.json +8 -1
  1618. package/mobile/src/components/SafeDepositRental/SafeDepositRentalFields.tsx +13 -21
  1619. package/mobile/src/components/SafeDepositRental/SafeDepositRentalForm.tsx +21 -49
  1620. package/mobile/src/components/SafeDepositRental/SafeDepositRentalTotal.tsx +1 -1
  1621. package/mobile/src/components/SafeDepositRental/SafeDepositRentalTypes.ts +0 -3
  1622. package/mobile/src/components/SafeDepositRental/utils.ts +1 -1
  1623. package/mobile/src/components/StepsBlock/StepsBlock.ui.json +8 -0
  1624. package/mobile/src/components/StepsBlock/StepsBlockContent.ts +9 -2
  1625. package/mobile/src/components/StepsBlock/StepsBlockStyleMaps.ts +5 -2
  1626. package/mobile/src/components/StepsBlock/renderItems.tsx +26 -0
  1627. package/mobile/src/components/StepsBlock/renderStepContent.tsx +63 -0
  1628. package/mobile/src/components/TariffsTable/EmbeddableCellData.tsx +4 -8
  1629. package/mobile/src/components/TariffsTable/TariffsTableCell.tsx +1 -1
  1630. package/mobile/src/components/TariffsTable/TariffsTableRow.tsx +1 -4
  1631. package/mobile/src/components/TariffsTable/{dataFixture.ts → dataFixture.tsx} +3 -2
  1632. package/mobile/src/components/TariffsTable/utils/getButtonAriaLabel.ts +1 -3
  1633. package/mobile/src/components/Tile/Tile.tsx +3 -5
  1634. package/mobile/src/hooks/useOutsideClick.ts +25 -0
  1635. package/mobile/src/hooks/{useFetchSafeBoxes.ts → useSafeBoxes.ts} +7 -8
  1636. package/mobile/src/icons/IconName.ts +3 -3
  1637. package/mobile/src/model/BlockDecorator.ts +2 -0
  1638. package/mobile/src/model/BlocksRegistry.ts +4 -1
  1639. package/mobile/src/model/HeadlineType.ts +10 -0
  1640. package/mobile/src/model/Picture.ts +1 -0
  1641. package/mobile/src/react/setup-fixture.ts +0 -2
  1642. package/mobile/src/ui-kit/BenefitItem/BenefitItem.tsx +5 -5
  1643. package/mobile/src/ui-kit/BlockWrapper.tsx +5 -9
  1644. package/mobile/src/ui-kit/BlocksList/renderBlocksList.tsx +1 -1
  1645. package/mobile/src/ui-kit/Button/Button.tsx +1 -1
  1646. package/mobile/src/ui-kit/Button/ButtonInner.tsx +4 -3
  1647. package/mobile/src/ui-kit/Button/ButtonProps.ts +1 -7
  1648. package/mobile/src/ui-kit/Button/ButtonSection.tsx +19 -41
  1649. package/mobile/src/ui-kit/Button/buttonClassNameConstants.ts +7 -0
  1650. package/mobile/src/ui-kit/CurrencyInput/CurrencyInput.tsx +19 -3
  1651. package/mobile/src/ui-kit/CurrencyInput/adjustValue .ts +13 -2
  1652. package/mobile/src/ui-kit/Foldable/DefaultFoldButton.tsx +52 -0
  1653. package/mobile/src/ui-kit/Foldable/Foldable.tsx +26 -78
  1654. package/mobile/src/ui-kit/Foldable/FoldablePartProps.ts +4 -0
  1655. package/mobile/src/ui-kit/Foldable/FoldableSection.tsx +30 -0
  1656. package/mobile/src/ui-kit/Icon/Icon.tsx +5 -6
  1657. package/mobile/src/ui-kit/Icon/IconProps.ts +0 -1
  1658. package/mobile/src/ui-kit/Img/Img.tsx +1 -13
  1659. package/mobile/src/ui-kit/InnerTable/InnerTableBody.tsx +1 -1
  1660. package/mobile/src/ui-kit/InnerTable/InnerTableBodyItem.tsx +14 -5
  1661. package/mobile/src/ui-kit/InnerTable/InnerTableButton.tsx +1 -1
  1662. package/mobile/src/ui-kit/InnerTable/InnerTableHeader.tsx +4 -3
  1663. package/mobile/src/ui-kit/Input/Input.tsx +18 -2
  1664. package/mobile/src/ui-kit/Input/InputProps.ts +2 -0
  1665. package/mobile/src/ui-kit/InputRange/InputRange.tsx +2 -3
  1666. package/mobile/src/ui-kit/IntersectionObserverTag.tsx +49 -0
  1667. package/mobile/src/ui-kit/List/List.tsx +29 -18
  1668. package/mobile/src/ui-kit/List/ListItem.tsx +14 -26
  1669. package/mobile/src/ui-kit/List/ListProps.ts +5 -3
  1670. package/mobile/src/ui-kit/Radio/Radio.tsx +3 -2
  1671. package/mobile/src/ui-kit/Select/Select.tsx +8 -3
  1672. package/mobile/src/utils/getSanitizedValue.ts +1 -0
  1673. package/package.json +3 -3
  1674. package/src/common.css +11 -3
  1675. package/src/components/Accordion/Accordion.mobile.tsx +17 -7
  1676. package/src/components/Accordion/Accordion.tsx +12 -3
  1677. package/src/components/Accordion/AccordionContent.ts +10 -7
  1678. package/src/components/Accordion/AccordionItem.mobile.tsx +61 -33
  1679. package/src/components/Accordion/AccordionItem.tsx +45 -33
  1680. package/src/components/Accordion/AccordionItemProps.ts +6 -0
  1681. package/src/components/Accordion/AccordionItemsList.tsx +5 -0
  1682. package/src/components/BenefitsBlock/BenefitsBlock.fixture.tsx +4 -4
  1683. package/src/components/BenefitsBlock/BenefitsBlock.tsx +1 -1
  1684. package/src/components/Blocks.mobile.ts +0 -2
  1685. package/src/components/Blocks.ts +2 -0
  1686. package/src/components/Calculator/CalculatorContent.ts +1 -1
  1687. package/src/components/CardTransfer/CardTransfer.tsx +3 -1
  1688. package/src/components/Catalog/Catalog.fixture.tsx +10 -3
  1689. package/src/components/Catalog/Catalog.tsx +2 -2
  1690. package/src/components/Catalog/CatalogCard.tsx +1 -35
  1691. package/src/components/ComparisonTable/ComparisonTable.mobile.tsx +49 -120
  1692. package/src/components/ComparisonTable/ComparisonTable.tsx +1 -1
  1693. package/src/components/ComparisonTable/TableCell.tsx +2 -2
  1694. package/src/components/ComparisonTable/TableColumn.tsx +25 -27
  1695. package/src/components/ContentPage/ContentPageContext.tsx +0 -14
  1696. package/src/components/ContentPage/filterBlocks.mobile.ts +1 -3
  1697. package/src/components/ContentPage/filterBlocks.ts +1 -2
  1698. package/src/components/ContentPage/renderBlock.tsx +2 -2
  1699. package/src/components/ErrorBlock/ErrorBlock.tsx +1 -3
  1700. package/src/components/ExchangeRateTile/ExchangeRateTile.ui.json +8 -1
  1701. package/src/components/ExchangeRateTile/renderInput.tsx +1 -1
  1702. package/src/components/Footer/Contacts.tsx +1 -0
  1703. package/src/components/Footer/Footer.mobile.tsx +15 -13
  1704. package/src/components/Footer/FooterContent.ts +5 -10
  1705. package/src/components/Gallery/Gallery.fixture.tsx +2 -2
  1706. package/src/components/Gallery/Gallery.mobile.tsx +15 -5
  1707. package/src/components/Gallery/GalleryCardInner.tsx +60 -44
  1708. package/src/components/Gallery/GalleryContainer.tsx +10 -2
  1709. package/src/components/Gallery/GalleryContent.ts +11 -3
  1710. package/src/components/GracePeriod/GracePeriod.ui.json +5 -0
  1711. package/src/components/Header/Header.mobile.tsx +16 -11
  1712. package/src/components/Header/HeaderSubMenu.tsx +2 -1
  1713. package/src/components/Headline/constants.ts +11 -1
  1714. package/src/components/InvestmentInfo/InvestmentInfo.example.json +48 -0
  1715. package/src/components/InvestmentInfo/InvestmentInfo.fixture.tsx +107 -0
  1716. package/src/components/InvestmentInfo/InvestmentInfo.tsx +149 -0
  1717. package/src/components/InvestmentInfo/InvestmentInfo.ui.json +16 -0
  1718. package/src/components/InvestmentInfo/InvestmentInfoContent.ts +55 -0
  1719. package/src/components/MiniGallery/MiniGallery.fixture.tsx +45 -0
  1720. package/src/components/MiniGallery/MiniGalleryContent.ts +1 -0
  1721. package/src/components/MobileAppTile/MobileAppTile.fixture.tsx +14 -4
  1722. package/src/components/MobileAppTile/MobileAppTile.tsx +3 -6
  1723. package/src/components/OtherProducts/OtherProductsItem.tsx +26 -14
  1724. package/src/components/ProductGallery/ProductGallery.tsx +2 -2
  1725. package/src/components/ProductTile/ProductTile.tsx +3 -3
  1726. package/src/components/Recommendation/RecommendationContent.ts +5 -0
  1727. package/src/components/SafeDepositRental/RegionsAndBranches.tsx +1 -1
  1728. package/src/components/SafeDepositRental/SafeBoxCases.tsx +1 -1
  1729. package/src/components/SafeDepositRental/SafeDepositRental.tsx +34 -7
  1730. package/src/components/SafeDepositRental/SafeDepositRental.ui.json +8 -1
  1731. package/src/components/SafeDepositRental/SafeDepositRentalFields.tsx +13 -21
  1732. package/src/components/SafeDepositRental/SafeDepositRentalForm.tsx +21 -49
  1733. package/src/components/SafeDepositRental/SafeDepositRentalTotal.tsx +1 -1
  1734. package/src/components/SafeDepositRental/SafeDepositRentalTypes.ts +0 -3
  1735. package/src/components/SafeDepositRental/utils.ts +1 -1
  1736. package/src/components/StepsBlock/StepsBlock.fixture.tsx +48 -6
  1737. package/src/components/StepsBlock/StepsBlock.tsx +8 -49
  1738. package/src/components/StepsBlock/StepsBlock.ui.json +8 -0
  1739. package/src/components/StepsBlock/StepsBlockContent.ts +9 -2
  1740. package/src/components/StepsBlock/StepsBlockStyleMaps.ts +5 -2
  1741. package/src/components/StepsBlock/renderItems.tsx +26 -0
  1742. package/src/components/StepsBlock/renderStepContent.tsx +63 -0
  1743. package/src/components/TariffsTable/EmbeddableCellData.mobile.tsx +4 -8
  1744. package/src/components/TariffsTable/EmbeddableCellData.tsx +5 -10
  1745. package/src/components/TariffsTable/TariffsTable.tsx +32 -25
  1746. package/src/components/TariffsTable/TariffsTableCell.tsx +1 -1
  1747. package/src/components/TariffsTable/TariffsTableRow.tsx +1 -4
  1748. package/src/components/TariffsTable/{dataFixture.ts → dataFixture.tsx} +3 -2
  1749. package/src/components/TariffsTable/utils/getButtonAriaLabel.ts +1 -3
  1750. package/src/components/Tile/Tile.tsx +3 -5
  1751. package/src/hooks/useOutsideClick.ts +25 -0
  1752. package/src/hooks/{useFetchSafeBoxes.ts → useSafeBoxes.ts} +7 -8
  1753. package/src/icons/IconName.ts +34 -92
  1754. package/src/model/BlockDecorator.ts +2 -0
  1755. package/src/model/BlocksRegistry.ts +4 -1
  1756. package/src/model/HeadlineType.ts +10 -0
  1757. package/src/model/Picture.ts +1 -0
  1758. package/src/react/setup-fixture.ts +0 -2
  1759. package/src/ui-kit/BenefitItem/BenefitItem.tsx +5 -5
  1760. package/src/ui-kit/BlockWrapper.tsx +5 -9
  1761. package/src/ui-kit/BlocksList/renderBlocksList.tsx +1 -1
  1762. package/src/ui-kit/Button/Button.mobile.tsx +1 -1
  1763. package/src/ui-kit/Button/Button.tsx +55 -27
  1764. package/src/ui-kit/Button/ButtonInner.tsx +4 -3
  1765. package/src/ui-kit/Button/ButtonProps.ts +1 -7
  1766. package/src/ui-kit/Button/ButtonSection.tsx +19 -41
  1767. package/src/ui-kit/Button/buttonClassNameConstants.ts +7 -0
  1768. package/src/ui-kit/CurrencyInput/CurrencyInput.tsx +19 -3
  1769. package/src/ui-kit/CurrencyInput/adjustValue .ts +13 -2
  1770. package/src/ui-kit/Foldable/DefaultFoldButton.tsx +52 -0
  1771. package/src/ui-kit/Foldable/Foldable.tsx +26 -78
  1772. package/src/ui-kit/Foldable/FoldablePartProps.ts +4 -0
  1773. package/src/ui-kit/Foldable/FoldableSection.tsx +30 -0
  1774. package/src/ui-kit/Icon/Icon.tsx +5 -6
  1775. package/src/ui-kit/Icon/IconProps.ts +0 -1
  1776. package/src/ui-kit/Img/Img.mobile.tsx +1 -13
  1777. package/src/ui-kit/Img/Img.tsx +1 -17
  1778. package/src/ui-kit/InnerTable/InnerTableBody.tsx +1 -1
  1779. package/src/ui-kit/InnerTable/InnerTableBodyItem.tsx +14 -5
  1780. package/src/ui-kit/InnerTable/InnerTableButton.tsx +1 -1
  1781. package/src/ui-kit/InnerTable/InnerTableHeader.tsx +4 -3
  1782. package/src/ui-kit/Input/Input.tsx +18 -2
  1783. package/src/ui-kit/Input/InputProps.ts +2 -0
  1784. package/src/ui-kit/InputRange/InputRange.tsx +2 -3
  1785. package/src/ui-kit/IntersectionObserverTag.tsx +49 -0
  1786. package/src/ui-kit/List/List.fixture.tsx +1 -21
  1787. package/src/ui-kit/List/List.tsx +29 -18
  1788. package/src/ui-kit/List/ListItem.tsx +14 -26
  1789. package/src/ui-kit/List/ListProps.ts +5 -3
  1790. package/src/ui-kit/Radio/Radio.tsx +3 -2
  1791. package/src/ui-kit/Select/Select.tsx +8 -3
  1792. package/src/utils/getSanitizedValue.ts +1 -0
  1793. package/tailwind.config.cjs +6 -1
  1794. package/dist/components/Accordion/AccordionItemInner.d.ts +0 -2
  1795. package/dist/components/Accordion/AccordionItemInner.js +0 -9
  1796. package/dist/components/Accordion/AccordionItemInner.js.map +0 -1
  1797. package/dist/components/Accordion/AccordionItemInner.mobile.d.ts +0 -2
  1798. package/dist/components/Accordion/AccordionItemInner.mobile.js +0 -9
  1799. package/dist/components/Accordion/AccordionItemInner.mobile.js.map +0 -1
  1800. package/dist/components/Accordion/useActiveHandler.d.ts +0 -7
  1801. package/dist/components/Accordion/useActiveHandler.js +0 -22
  1802. package/dist/components/Accordion/useActiveHandler.js.map +0 -1
  1803. package/dist/components/ContentPage/isBlockInRegistry.d.ts +0 -2
  1804. package/dist/components/ContentPage/isBlockInRegistry.js +0 -7
  1805. package/dist/components/ContentPage/isBlockInRegistry.js.map +0 -1
  1806. package/dist/hooks/useFetchSafeBoxes.js.map +0 -1
  1807. package/dist/react/IntersectionObserverTag.d.ts +0 -2
  1808. package/dist/react/IntersectionObserverTag.js +0 -43
  1809. package/dist/react/IntersectionObserverTag.js.map +0 -1
  1810. package/dist/ui-kit/Foldable/useActiveHandler.d.ts +0 -9
  1811. package/dist/ui-kit/Foldable/useActiveHandler.js +0 -23
  1812. package/dist/ui-kit/Foldable/useActiveHandler.js.map +0 -1
  1813. package/dist/utils/getAccordionItems.d.ts +0 -1
  1814. package/dist/utils/getAccordionItems.js +0 -13
  1815. package/dist/utils/getAccordionItems.js.map +0 -1
  1816. package/lib/components/Accordion/AccordionItemInner.d.ts +0 -2
  1817. package/lib/components/Accordion/AccordionItemInner.js +0 -7
  1818. package/lib/components/Accordion/AccordionItemInner.js.map +0 -1
  1819. package/lib/components/Accordion/AccordionItemInner.mobile.d.ts +0 -2
  1820. package/lib/components/Accordion/AccordionItemInner.mobile.js +0 -7
  1821. package/lib/components/Accordion/AccordionItemInner.mobile.js.map +0 -1
  1822. package/lib/components/Accordion/useActiveHandler.d.ts +0 -7
  1823. package/lib/components/Accordion/useActiveHandler.js +0 -19
  1824. package/lib/components/Accordion/useActiveHandler.js.map +0 -1
  1825. package/lib/components/ContentPage/isBlockInRegistry.d.ts +0 -2
  1826. package/lib/components/ContentPage/isBlockInRegistry.js +0 -4
  1827. package/lib/components/ContentPage/isBlockInRegistry.js.map +0 -1
  1828. package/lib/hooks/useFetchSafeBoxes.js.map +0 -1
  1829. package/lib/react/IntersectionObserverTag.d.ts +0 -2
  1830. package/lib/react/IntersectionObserverTag.js +0 -17
  1831. package/lib/react/IntersectionObserverTag.js.map +0 -1
  1832. package/lib/ui-kit/Foldable/useActiveHandler.d.ts +0 -9
  1833. package/lib/ui-kit/Foldable/useActiveHandler.js +0 -20
  1834. package/lib/ui-kit/Foldable/useActiveHandler.js.map +0 -1
  1835. package/lib/utils/getAccordionItems.d.ts +0 -1
  1836. package/lib/utils/getAccordionItems.js +0 -10
  1837. package/lib/utils/getAccordionItems.js.map +0 -1
  1838. package/mobile/dist/components/Accordion/AccordionItemInner.d.ts +0 -2
  1839. package/mobile/dist/components/Accordion/AccordionItemInner.js +0 -9
  1840. package/mobile/dist/components/Accordion/AccordionItemInner.js.map +0 -1
  1841. package/mobile/dist/components/Accordion/useActiveHandler.d.ts +0 -7
  1842. package/mobile/dist/components/Accordion/useActiveHandler.js +0 -22
  1843. package/mobile/dist/components/Accordion/useActiveHandler.js.map +0 -1
  1844. package/mobile/dist/components/ContentPage/isBlockInRegistry.d.ts +0 -2
  1845. package/mobile/dist/components/ContentPage/isBlockInRegistry.js +0 -7
  1846. package/mobile/dist/components/ContentPage/isBlockInRegistry.js.map +0 -1
  1847. package/mobile/dist/hooks/useFetchSafeBoxes.js.map +0 -1
  1848. package/mobile/dist/react/IntersectionObserverTag.d.ts +0 -2
  1849. package/mobile/dist/react/IntersectionObserverTag.js +0 -43
  1850. package/mobile/dist/react/IntersectionObserverTag.js.map +0 -1
  1851. package/mobile/dist/ui-kit/Foldable/useActiveHandler.d.ts +0 -9
  1852. package/mobile/dist/ui-kit/Foldable/useActiveHandler.js +0 -23
  1853. package/mobile/dist/ui-kit/Foldable/useActiveHandler.js.map +0 -1
  1854. package/mobile/dist/utils/getAccordionItems.d.ts +0 -1
  1855. package/mobile/dist/utils/getAccordionItems.js +0 -13
  1856. package/mobile/dist/utils/getAccordionItems.js.map +0 -1
  1857. package/mobile/lib/components/Accordion/AccordionItemInner.d.ts +0 -2
  1858. package/mobile/lib/components/Accordion/AccordionItemInner.js +0 -7
  1859. package/mobile/lib/components/Accordion/AccordionItemInner.js.map +0 -1
  1860. package/mobile/lib/components/Accordion/useActiveHandler.d.ts +0 -7
  1861. package/mobile/lib/components/Accordion/useActiveHandler.js +0 -19
  1862. package/mobile/lib/components/Accordion/useActiveHandler.js.map +0 -1
  1863. package/mobile/lib/components/ContentPage/isBlockInRegistry.d.ts +0 -2
  1864. package/mobile/lib/components/ContentPage/isBlockInRegistry.js +0 -4
  1865. package/mobile/lib/components/ContentPage/isBlockInRegistry.js.map +0 -1
  1866. package/mobile/lib/hooks/useFetchSafeBoxes.js.map +0 -1
  1867. package/mobile/lib/react/IntersectionObserverTag.d.ts +0 -2
  1868. package/mobile/lib/react/IntersectionObserverTag.js +0 -17
  1869. package/mobile/lib/react/IntersectionObserverTag.js.map +0 -1
  1870. package/mobile/lib/ui-kit/Foldable/useActiveHandler.d.ts +0 -9
  1871. package/mobile/lib/ui-kit/Foldable/useActiveHandler.js +0 -20
  1872. package/mobile/lib/ui-kit/Foldable/useActiveHandler.js.map +0 -1
  1873. package/mobile/lib/utils/getAccordionItems.d.ts +0 -1
  1874. package/mobile/lib/utils/getAccordionItems.js +0 -10
  1875. package/mobile/lib/utils/getAccordionItems.js.map +0 -1
  1876. package/mobile/src/components/Accordion/AccordionItemInner.tsx +0 -11
  1877. package/mobile/src/components/Accordion/useActiveHandler.ts +0 -25
  1878. package/mobile/src/components/ContentPage/isBlockInRegistry.ts +0 -5
  1879. package/mobile/src/react/IntersectionObserverTag.tsx +0 -33
  1880. package/mobile/src/ui-kit/Foldable/useActiveHandler.ts +0 -33
  1881. package/mobile/src/utils/getAccordionItems.ts +0 -10
  1882. package/src/components/Accordion/AccordionItemInner.mobile.tsx +0 -11
  1883. package/src/components/Accordion/AccordionItemInner.tsx +0 -11
  1884. package/src/components/Accordion/useActiveHandler.ts +0 -25
  1885. package/src/components/ContentPage/isBlockInRegistry.ts +0 -5
  1886. package/src/react/IntersectionObserverTag.tsx +0 -33
  1887. package/src/ui-kit/Foldable/useActiveHandler.ts +0 -33
  1888. package/src/utils/getAccordionItems.ts +0 -10
@@ -1,21 +1,22 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "@redneckz/uni-jsx/jsx-runtime";
2
2
  import { JSX } from '@redneckz/uni-jsx';
3
- import { Accordion } from '../Accordion/Accordion.js';
3
+ import { useSitemap } from '../../services/sitemap/useSitemap.js';
4
+ import { Button } from '../../ui-kit/Button/Button.js';
5
+ import { Img } from '../../ui-kit/Img/Img.js';
6
+ import { SearchBar } from '../../ui-kit/SearchBar/SearchBar.js';
7
+ import { AccordionItem } from '../Accordion/AccordionItem.js';
8
+ import { AccordionItemsList } from '../Accordion/AccordionItemsList.js';
9
+ import { LinkList } from '../LinkList/LinkList.js';
4
10
  import { MobileAppTile } from '../MobileAppTile/MobileAppTile.js';
5
11
  import { Contacts } from './Contacts.js';
6
12
  import { HorizontalNavigation } from './HorizontalNavigation.js';
7
13
  import { SocialMedia } from './SocialMedia.js';
8
14
  import { TextInformation } from './TextInformation.js';
9
- import { useSitemap } from '../../services/sitemap/useSitemap.js';
10
- import { Button } from '../../ui-kit/Button/Button.js';
11
- import { Img } from '../../ui-kit/Img/Img.js';
12
- import { SearchBar } from '../../ui-kit/SearchBar/SearchBar.js';
13
- import { getAccordionItems } from '../../utils/getAccordionItems.js';
14
15
  export const Footer = JSX(({ className = '', documents, relatedEnterprises, contacts, socialMedia, context, horizontalNavigationTitle, page, }) => {
15
16
  const fallback = page?.fallback;
16
17
  const sitemap = useSitemap(fallback);
17
18
  const dispositions = sitemap?.dispositions;
18
- return (_jsxs("footer", { className: `font-sans px-4 py-[26px] bg-white ${className}`, children: [_jsx(Contacts, { className: "overflow-hidden", items: contacts, context: context, hasButton: true }), _jsx(Accordion, { context: context, className: "!p-0 mb-4", accordionItems: getAccordionItems(sitemap.topItems) }), _jsx("div", { children: dispositions?.map(renderSubMenuItem) }), _jsx(MobileAppTile, { context: context, title: "\u041C\u043E\u0431\u0438\u043B\u044C\u043D\u043E\u0435 \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0435", description: "\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u0434\u043B\u044F IOS \u0438 Android" }), _jsx(SearchBar, { context: context, className: "grow" }), _jsx(SocialMedia, { className: "pb-4", media: socialMedia, context: context }), _jsx(HorizontalNavigation, { title: horizontalNavigationTitle, links: relatedEnterprises, context: context }), _jsx(TextInformation, { links: documents, context: context })] }));
19
+ return (_jsxs("footer", { className: `font-sans px-4 py-[26px] bg-white ${className}`, children: [_jsx(Contacts, { className: "overflow-hidden", items: contacts, context: context, hasButton: true }), _jsx(AccordionItemsList, { children: sitemap.topItems?.map((item, i) => (_jsx(AccordionItem, { context: context, label: item.text, children: _jsx(LinkList, { context: context, documents: item.items }) }, String(i)))) }), _jsx("div", { children: dispositions?.map(renderSubMenuItem) }), _jsx(MobileAppTile, { context: context, title: "\u041C\u043E\u0431\u0438\u043B\u044C\u043D\u043E\u0435 \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0435", description: "\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u0434\u043B\u044F IOS \u0438 Android" }), _jsx(SearchBar, { context: context, className: "grow" }), _jsx(SocialMedia, { className: "pb-4", media: socialMedia, context: context }), _jsx(HorizontalNavigation, { title: horizontalNavigationTitle, links: relatedEnterprises, context: context }), _jsx(TextInformation, { links: documents, context: context })] }));
19
20
  });
20
21
  const renderSubMenuItem = (menu, i) => {
21
22
  const { icon, href, text } = menu;
@@ -1 +1 @@
1
- {"version":3,"file":"Footer.js","sourceRoot":"","sources":["../../../src/components/Footer/Footer.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AAExC,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAC/D,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAEpD,OAAO,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAC;AAE/D,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,OAAO,EAAE,GAAG,EAAE,MAAM,sBAAsB,CAAC;AAC3C,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAC7D,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAIlE,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CACvB,CAAC,EACC,SAAS,GAAG,EAAE,EACd,SAAS,EACT,kBAAkB,EAClB,QAAQ,EACR,WAAW,EACX,OAAO,EACP,yBAAyB,EACzB,IAAI,GACL,EAAE,EAAE;IACH,MAAM,QAAQ,GAAyB,IAAI,EAAE,QAAQ,CAAC;IACtD,MAAM,OAAO,GAAG,UAAU,CAAC,QAAQ,CAAC,CAAC;IACrC,MAAM,YAAY,GAAG,OAAO,EAAE,YAAY,CAAC;IAE3C,OAAO,CACL,kBAAQ,SAAS,EAAE,qCAAqC,SAAS,EAAE,aACjE,KAAC,QAAQ,IAAC,SAAS,EAAC,iBAAiB,EAAC,KAAK,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE,SAAS,SAAG,EACrF,KAAC,SAAS,IACR,OAAO,EAAE,OAAO,EAChB,SAAS,EAAC,WAAW,EACrB,cAAc,EAAE,iBAAiB,CAAC,OAAO,CAAC,QAAQ,CAAC,GACnD,EACF,wBAAM,YAAY,EAAE,GAAG,CAAC,iBAAiB,CAAC,GAAO,EACjD,KAAC,aAAa,IACZ,OAAO,EAAE,OAAO,EAChB,KAAK,EAAC,qHAAsB,EAC5B,WAAW,EAAC,8FAA6B,GACzC,EACF,KAAC,SAAS,IAAC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAC,MAAM,GAAG,EAChD,KAAC,WAAW,IAAC,SAAS,EAAC,MAAM,EAAC,KAAK,EAAE,WAAW,EAAE,OAAO,EAAE,OAAO,GAAI,EACtE,KAAC,oBAAoB,IACnB,KAAK,EAAE,yBAAyB,EAChC,KAAK,EAAE,kBAAkB,EACzB,OAAO,EAAE,OAAO,GAChB,EACF,KAAC,eAAe,IAAC,KAAK,EAAE,SAAS,EAAE,OAAO,EAAE,OAAO,GAAI,IAChD,CACV,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,MAAM,iBAAiB,GAAG,CAAC,IAAiB,EAAE,CAAS,EAAE,EAAE;IACzD,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,IAAI,CAAC;IAElC,OAAO,CACL,MAAC,MAAM,IAAC,OAAO,EAAC,MAAM,EAAqB,IAAI,EAAE,IAAI,EAAE,SAAS,EAAC,sBAAsB,aACpF,IAAI,CAAC,CAAC,CAAC,KAAC,GAAG,IAAC,SAAS,EAAC,MAAM,EAAC,KAAK,EAAE,IAAI,EAAE,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,KAAK,SAAG,CAAC,CAAC,CAAC,IAAI,EACjF,eAAM,SAAS,EAAC,sCAAsC,YAAE,IAAI,GAAQ,KAF1C,UAAU,CAAC,EAAE,CAGhC,CACV,CAAC;AACJ,CAAC,CAAC"}
1
+ {"version":3,"file":"Footer.js","sourceRoot":"","sources":["../../../src/components/Footer/Footer.tsx"],"names":[],"mappings":"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"}
@@ -1,7 +1,7 @@
1
- import type { LinkProps } from '../../model/LinkProps';
2
- import type { SitemapProps } from '../../services/sitemap/SitemapProps';
3
- import type { IconProps } from '../../model/Picture';
4
1
  import type { DescriptionProps } from '../../model/HeadlineType';
2
+ import type { LinkCommonProps, LinkProps } from '../../model/LinkProps';
3
+ import type { IconProps } from '../../model/Picture';
4
+ import type { SitemapProps } from '../../services/sitemap/SitemapProps';
5
5
  /**
6
6
  * @title Тип контакта
7
7
  * @enumNames [
@@ -18,10 +18,6 @@ export declare type ContactInfo = DescriptionProps & {
18
18
  text?: string;
19
19
  type?: ContactType;
20
20
  };
21
- /**
22
- * @required ["href"]
23
- */
24
- export declare type SocialMedia = Omit<LinkProps, 'text'>;
25
21
  /**
26
22
  * @title Пункт подменю
27
23
  */
@@ -38,9 +34,9 @@ export interface FooterContent extends SitemapProps {
38
34
  /** @title Контакты */
39
35
  contacts?: ContactInfo[];
40
36
  /** @title Социальные сети */
41
- socialMedia?: SocialMedia[];
37
+ socialMedia?: LinkCommonProps[];
42
38
  /** @title Мобильные приложения */
43
- mobileApps?: SocialMedia[];
39
+ mobileApps?: LinkCommonProps[];
44
40
  /** @title Заголовок для меню */
45
41
  horizontalNavigationTitle?: string;
46
42
  /** @title Подменю */
@@ -1,11 +1,10 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "@redneckz/uni-jsx/jsx-runtime";
2
2
  import { JSX } from '@redneckz/uni-jsx';
3
+ import { VersionStyleMap } from '../../model/BlockVersion.js';
3
4
  import { Button } from '../../ui-kit/Button/Button.js';
4
5
  import { Heading } from '../../ui-kit/Heading/Heading.js';
5
6
  import { Img } from '../../ui-kit/Img/Img.js';
6
- import { getListStyle } from '../../ui-kit/List/ListItem.js';
7
7
  import { SwipeListControl } from '../../ui-kit/SwipeListControl/SwipeListControl.js';
8
- import { VersionStyleMap } from '../../model/BlockVersion.js';
9
8
  export const Gallery = JSX(({ context, title, description, cards = [], className, orientation = 'horizontal' }) => {
10
9
  const headingClassName = description ? 'mb-2' : 'mb-5';
11
10
  return (_jsxs("section", { className: `relative font-sans text-primary-text bg-white px-4 py-6 overflow-hidden ${className}`, children: [_jsxs("div", { className: "flex flex-col items-center mb-5", children: [title ? (_jsx(Heading, { headingType: "h3", className: `text-center ${headingClassName}`, title: title })) : null, description ? (_jsx("div", { className: "text-m max-w-[600px] text-center mb-5", children: description })) : null] }), renderCardsLayout(orientation, cards, context)] }));
@@ -23,7 +22,12 @@ function renderButton(button) {
23
22
  function renderDescription(card) {
24
23
  return (_jsx("div", { className: `text-secondary-text mt-1 text-s ${card.version === 'secondary' ? 'text-white opacity-80' : ''}`, children: card.description }));
25
24
  }
25
+ const LIST_DOT_STYLE_MAP = {
26
+ primary: 'bg-primary-text',
27
+ secondary: 'bg-white',
28
+ gray: 'bg-secondary-text',
29
+ };
26
30
  function renderItems(items, isDotted, version = 'primary') {
27
- return (_jsx("section", { className: "mt-3", children: items.map((item, i) => (_jsxs("div", { children: [isDotted ? _jsx("div", { className: getListStyle(version) }) : null, _jsx("span", { className: "text-m font-medium", children: item.title }), _jsx("span", { className: `text-s pl-2 ${version === 'primary' ? 'text-secondary-text' : ''}`, children: item.text })] }, String(i)))) }));
31
+ return (_jsx("section", { className: "mt-3", children: items.map((item, i) => (_jsxs("div", { children: [isDotted ? (_jsx("div", { className: `rounded-full inline-block mr-3 mt-2 w-2 h-2 min-w-2 min-h-2 ${LIST_DOT_STYLE_MAP[version]}` })) : null, _jsx("span", { className: "text-m font-medium", children: item.title }), _jsx("span", { className: `text-s pl-2 ${version === 'primary' ? 'text-secondary-text' : ''}`, children: item.text })] }, String(i)))) }));
28
32
  }
29
33
  //# sourceMappingURL=Gallery.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Gallery.js","sourceRoot":"","sources":["../../../src/components/Gallery/Gallery.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Gallery.js","sourceRoot":"","sources":["../../../src/components/Gallery/Gallery.tsx"],"names":[],"mappings":"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"}
@@ -1,24 +1,21 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "@redneckz/uni-jsx/jsx-runtime";
1
+ import { jsxs as _jsxs, jsx as _jsx } from "@redneckz/uni-jsx/jsx-runtime";
2
2
  import { JSX } from '@redneckz/uni-jsx';
3
3
  import { Button } from '../../ui-kit/Button/Button.js';
4
4
  import { Img } from '../../ui-kit/Img/Img.js';
5
5
  import { List } from '../../ui-kit/List/List.js';
6
- export const GalleryCardInner = JSX(({ title, description, image, items, button, version, isDotted = true }) => {
7
- const titleStyleClasses = getTitleStyle(version);
8
- return (_jsxs("div", { className: "h-full flex flex-col justify-between text-center", children: [_jsxs("div", { children: [image?.src ? (_jsx("div", { className: "flex justify-center", children: _jsx(Img, { className: "mb-6", image: image }) })) : null, title ? renderCardTitle(title, titleStyleClasses) : null, description ? _jsx("div", { className: `text-m${title ? 'mt-2' : ''}`, children: description }) : null, items?.length ? renderItems(items, isDotted, version) : null] }), button?.text ? renderButton(button) : null] }));
6
+ import { HEADLINE_SMALL_VERSION } from '../Headline/constants.js';
7
+ const ALIGN_TITLE = {
8
+ left: 'text-left',
9
+ center: 'text-center',
10
+ right: 'text-right',
11
+ };
12
+ export const GalleryCardInner = JSX(({ title, headlineSmallVersion = 'XL_L', description, additionalDescription, image, items, button, version, isDotted = true, align = 'center', }) => {
13
+ return (_jsxs("div", { className: `h-full flex flex-col justify-between ${ALIGN_TITLE[align]}`, children: [_jsxs("div", { className: "flex flex-col h-full", children: [renderImage(image), renderCardTitle(headlineSmallVersion, title), renderDescription(description, title), renderAdditionalDescription(additionalDescription), items?.length ? renderItems(items, isDotted, version) : null] }), button ? renderButton(button) : null] }));
9
14
  });
10
- function renderButton(button) {
11
- return (_jsx(Button, { className: "mt-6 w-full", appendLeft: button.icon && _jsx(Img, { image: button.icon, width: "24px", height: "24px", asSVG: true }), ...button }));
12
- }
13
- function renderCardTitle(title, className) {
14
- return _jsx("div", { className: `text-xl-light m-0 ${className}`, children: title });
15
- }
16
- function renderItems(items, isDotted, version = 'primary') {
17
- return (_jsx(List, { className: `max-w-[308px] mt-2 text-s ${version === 'primary' ? '!text-secondary-text' : ''}`, itemClassName: "mt-1 text-left first:mt-0", items: items.filter((item) => item?.text).map((item) => item.text), isDotted: isDotted, version: version }));
18
- }
19
- function getTitleStyle(version) {
20
- return `text-xl-light m-0
21
- ${version !== 'secondary' ? 'text-primary-text' : ''}
22
- `;
23
- }
15
+ const renderImage = (image) => image?.src ? (_jsx("div", { className: "flex justify-center", children: _jsx(Img, { className: "mb-6", image: image }) })) : null;
16
+ const renderCardTitle = (headlineSmallVersion, title) => title ? _jsx("div", { className: HEADLINE_SMALL_VERSION[headlineSmallVersion], children: title }) : null;
17
+ const renderDescription = (description, title) => description ? _jsx("div", { className: `text-base ${title ? 'mt-2' : ''}`, children: description }) : null;
18
+ const renderAdditionalDescription = (additionalDescription) => additionalDescription ? (_jsx("div", { className: "text-m-light text-secondary-text mt-auto", children: additionalDescription })) : null;
19
+ const renderButton = (button) => (_jsx(Button, { className: "mt-6 w-full", ...button }));
20
+ const renderItems = (items, isDotted, version = 'primary') => (_jsx(List, { className: `max-w-[308px] mt-2 text-s ${version === 'primary' ? '!text-secondary-text' : ''}`, itemClassName: "mt-1 text-left first:mt-0", items: items.filter((item) => item?.text).map((item) => item.text), isDotted: isDotted, version: version }));
24
21
  //# sourceMappingURL=GalleryCardInner.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"GalleryCardInner.js","sourceRoot":"","sources":["../../../src/components/Gallery/GalleryCardInner.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AACxC,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,OAAO,EAAE,GAAG,EAAE,MAAM,sBAAsB,CAAC;AAC3C,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAI9C,MAAM,CAAC,MAAM,gBAAgB,GAAG,GAAG,CACjC,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,QAAQ,GAAG,IAAI,EAAE,EAAE,EAAE;IACzE,MAAM,iBAAiB,GAAG,aAAa,CAAC,OAAO,CAAC,CAAC;IAEjD,OAAO,CACL,eAAK,SAAS,EAAC,kDAAkD,aAC/D,0BACG,KAAK,EAAE,GAAG,CAAC,CAAC,CAAC,CACZ,cAAK,SAAS,EAAC,qBAAqB,YAClC,KAAC,GAAG,IAAC,SAAS,EAAC,MAAM,EAAC,KAAK,EAAE,KAAK,GAAI,GAClC,CACP,CAAC,CAAC,CAAC,IAAI,EACP,KAAK,CAAC,CAAC,CAAC,eAAe,CAAC,KAAK,EAAE,iBAAiB,CAAC,CAAC,CAAC,CAAC,IAAI,EACxD,WAAW,CAAC,CAAC,CAAC,cAAK,SAAS,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,YAAG,WAAW,GAAO,CAAC,CAAC,CAAC,IAAI,EACxF,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,WAAW,CAAC,KAAK,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,IACzD,EACL,MAAM,EAAE,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,IACvC,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,SAAS,YAAY,CAAC,MAAM;IAC1B,OAAO,CACL,KAAC,MAAM,IACL,SAAS,EAAC,aAAa,EACvB,UAAU,EAAE,MAAM,CAAC,IAAI,IAAI,KAAC,GAAG,IAAC,KAAK,EAAE,MAAM,CAAC,IAAI,EAAE,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,EAAC,KAAK,SAAG,KACnF,MAAM,GACV,CACH,CAAC;AACJ,CAAC;AAED,SAAS,eAAe,CAAC,KAAa,EAAE,SAAiB;IACvD,OAAO,cAAK,SAAS,EAAE,qBAAqB,SAAS,EAAE,YAAG,KAAK,GAAO,CAAC;AACzE,CAAC;AAED,SAAS,WAAW,CAClB,KAAyB,EACzB,QAAiB,EACjB,UAAwB,SAAS;IAEjC,OAAO,CACL,KAAC,IAAI,IACH,SAAS,EAAE,6BAA6B,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC,sBAAsB,CAAC,CAAC,CAAC,EAAE,EAAE,EAC7F,aAAa,EAAC,2BAA2B,EACzC,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,IAAc,CAAC,EAC5E,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,OAAO,GAChB,CACH,CAAC;AACJ,CAAC;AAED,SAAS,aAAa,CAAC,OAAO;IAC5B,OAAO;UACC,OAAO,KAAK,WAAW,CAAC,CAAC,CAAC,mBAAmB,CAAC,CAAC,CAAC,EAAE;OACrD,CAAC;AACR,CAAC"}
1
+ {"version":3,"file":"GalleryCardInner.js","sourceRoot":"","sources":["../../../src/components/Gallery/GalleryCardInner.tsx"],"names":[],"mappings":"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"}
@@ -4,8 +4,8 @@ import { VersionStyleMap } from '../../model/BlockVersion.js';
4
4
  import { Headline } from '../Headline/Headline.js';
5
5
  import { cardStyleMap, cardWidthMap, galleryLengthForScrollMap } from './constants.js';
6
6
  import { GalleryCardInner } from './GalleryCardInner.js';
7
- export const GalleryContainer = JSX(({ context, title, description, cards = [], version = 'normal', activeCardIndex }) => {
8
- return (_jsxs("div", { children: [_jsx("div", { className: "absolute top-0 left-0 bottom-0 w-[84px] bg-gradient-to-r from-white to-transparent" }), _jsx(Headline, { context: context, className: "!p-0", title: title, description: description, headlineVersion: "L", align: "center" }), _jsx("div", { className: `flex mt-8 ${cards?.length <= galleryLengthForScrollMap[version] ? 'justify-center' : ''} duration-1000`, style: { transform: `translateX(-${activeCardIndex * cardWidthMap[version]}px)` }, role: "list", children: cards?.map((card, i) => renderCard({ card, version, context }, i)) })] }));
7
+ export const GalleryContainer = JSX(({ context, title, headlineVersion = 'L', description, cards = [], version = 'normal', activeCardIndex, }) => {
8
+ return (_jsxs("div", { children: [_jsx("div", { className: "absolute top-0 left-0 bottom-0 w-[84px] bg-gradient-to-r from-white to-transparent" }), _jsx(Headline, { context: context, className: "!p-0", title: title, description: description, headlineVersion: headlineVersion, align: "center" }), _jsx("div", { className: `flex mt-8 ${cards?.length <= galleryLengthForScrollMap[version] ? 'justify-center' : ''} duration-1000`, style: { transform: `translateX(-${activeCardIndex * cardWidthMap[version]}px)` }, role: "list", children: cards?.map((card, i) => renderCard({ card, version, context }, i)) })] }));
9
9
  });
10
10
  function renderCard({ card, version }, i) {
11
11
  return (_jsx("section", { className: `box-border border-solid border border-main-stroke p-6 mx-2 flex flex-col justify-between
@@ -1 +1 @@
1
- {"version":3,"file":"GalleryContainer.js","sourceRoot":"","sources":["../../../src/components/Gallery/GalleryContainer.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AACxC,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAG3D,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,yBAAyB,EAAE,MAAM,aAAa,CAAC;AACpF,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AActD,MAAM,CAAC,MAAM,gBAAgB,GAAG,GAAG,CACjC,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,KAAK,GAAG,EAAE,EAAE,OAAO,GAAG,QAAQ,EAAE,eAAe,EAAE,EAAE,EAAE;IACnF,OAAO,CACL,0BACE,cAAK,SAAS,EAAC,oFAAoF,GAAG,EACtG,KAAC,QAAQ,IACP,OAAO,EAAE,OAAO,EAChB,SAAS,EAAC,MAAM,EAChB,KAAK,EAAE,KAAK,EACZ,WAAW,EAAE,WAAW,EACxB,eAAe,EAAC,GAAG,EACnB,KAAK,EAAC,QAAQ,GACd,EACF,cACE,SAAS,EAAE,aACT,KAAK,EAAE,MAAM,IAAI,yBAAyB,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,EAC3E,gBAAgB,EAChB,KAAK,EAAE,EAAE,SAAS,EAAE,eAAe,eAAe,GAAG,YAAY,CAAC,OAAO,CAAC,KAAK,EAAE,EACjF,IAAI,EAAC,MAAM,YAEV,KAAK,EAAE,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC,GAC/D,IACF,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,SAAS,UAAU,CAAC,EAAE,IAAI,EAAE,OAAO,EAAmB,EAAE,CAAS;IAC/D,OAAO,CACL,kBACE,SAAS,EAAE;wBACO,YAAY,CAAC,OAAO,CAAC,IACrC,eAAe,CAAC,IAAI,CAAC,OAAO,IAAI,SAAS,CAC3C,oBAAoB,EAEpB,IAAI,EAAC,UAAU,YAEf,KAAC,gBAAgB,OAAK,IAAI,GAAI,IAHzB,MAAM,CAAC,CAAC,CAAC,CAIN,CACX,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"GalleryContainer.js","sourceRoot":"","sources":["../../../src/components/Gallery/GalleryContainer.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AACxC,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAG3D,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,yBAAyB,EAAE,MAAM,aAAa,CAAC;AACpF,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AActD,MAAM,CAAC,MAAM,gBAAgB,GAAG,GAAG,CACjC,CAAC,EACC,OAAO,EACP,KAAK,EACL,eAAe,GAAG,GAAG,EACrB,WAAW,EACX,KAAK,GAAG,EAAE,EACV,OAAO,GAAG,QAAQ,EAClB,eAAe,GAChB,EAAE,EAAE;IACH,OAAO,CACL,0BACE,cAAK,SAAS,EAAC,oFAAoF,GAAG,EACtG,KAAC,QAAQ,IACP,OAAO,EAAE,OAAO,EAChB,SAAS,EAAC,MAAM,EAChB,KAAK,EAAE,KAAK,EACZ,WAAW,EAAE,WAAW,EACxB,eAAe,EAAE,eAAe,EAChC,KAAK,EAAC,QAAQ,GACd,EACF,cACE,SAAS,EAAE,aACT,KAAK,EAAE,MAAM,IAAI,yBAAyB,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,EAC3E,gBAAgB,EAChB,KAAK,EAAE,EAAE,SAAS,EAAE,eAAe,eAAe,GAAG,YAAY,CAAC,OAAO,CAAC,KAAK,EAAE,EACjF,IAAI,EAAC,MAAM,YAEV,KAAK,EAAE,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC,GAC/D,IACF,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,SAAS,UAAU,CAAC,EAAE,IAAI,EAAE,OAAO,EAAmB,EAAE,CAAS;IAC/D,OAAO,CACL,kBACE,SAAS,EAAE;wBACO,YAAY,CAAC,OAAO,CAAC,IACrC,eAAe,CAAC,IAAI,CAAC,OAAO,IAAI,SAAS,CAC3C,oBAAoB,EAEpB,IAAI,EAAC,UAAU,YAEf,KAAC,gBAAgB,OAAK,IAAI,GAAI,IAHzB,MAAM,CAAC,CAAC,CAAC,CAIN,CACX,CAAC;AACJ,CAAC"}
@@ -1,8 +1,9 @@
1
+ import { AlignType } from '../../model/AlignType';
1
2
  import type { BlockVersion } from '../../model/BlockVersion';
3
+ import type { HeadlineProps, HeadlineSmallProps } from '../../model/HeadlineType';
2
4
  import type { ListOrientation } from '../../model/ListOrientation';
3
5
  import type { Picture } from '../../model/Picture';
4
6
  import type { ButtonWithIconProps } from '../../ui-kit/Button/ButtonProps';
5
- import type { HeadlineCommonProps } from '../../model/HeadlineType';
6
7
  /**
7
8
  * @title Элемент списка
8
9
  */
@@ -14,8 +15,10 @@ export interface GalleryItemProps {
14
15
  }
15
16
  /**
16
17
  * @title Карточка
18
+ * @default {"headlineSmallVersion": "XL_L"}
17
19
  */
18
- export declare type GalleryCardProps = HeadlineCommonProps & {
20
+ export declare type GalleryCardProps = HeadlineSmallProps & {
21
+ additionalDescription?: string;
19
22
  /**
20
23
  * @default {
21
24
  * "format": "webp",
@@ -41,11 +44,16 @@ export declare type GalleryCardProps = HeadlineCommonProps & {
41
44
  /** @title Список */
42
45
  items?: GalleryItemProps[];
43
46
  version?: BlockVersion;
47
+ /**
48
+ * @title Выравнивание
49
+ * @default center
50
+ */
51
+ align?: AlignType;
44
52
  };
45
53
  /**
46
54
  * @title Галерея
47
55
  */
48
- export declare type GalleryContent = HeadlineCommonProps & {
56
+ export declare type GalleryContent = HeadlineProps & {
49
57
  /**
50
58
  * @title Карточки
51
59
  * @minItems 3
@@ -7,16 +7,16 @@ import { isTopItemActive } from '../../services/sitemap/isTopItemActive.js';
7
7
  import { mergeTopItems } from '../../services/sitemap/mergeTopItems.js';
8
8
  import { useSitemap } from '../../services/sitemap/useSitemap.js';
9
9
  import { HeaderItem } from '../../ui-kit/HeaderItem/HeaderItem.js';
10
- import { getAccordionItems } from '../../utils/getAccordionItems.js';
11
- import { Accordion } from '../Accordion/Accordion.js';
10
+ import { AccordionItem } from '../Accordion/AccordionItem.js';
11
+ import { AccordionItemsList } from '../Accordion/AccordionItemsList.js';
12
+ import { LinkList } from '../LinkList/LinkList.js';
12
13
  import { HeaderBurger } from './HeaderBurger.js';
13
14
  import { HeaderTop } from './HeaderTop.js';
14
15
  export const Header = JSX(({ className = '', defaultLocation, bgColor = 'bg-white', context, topItems, page }) => {
16
+ const { handlerDecorator } = context;
15
17
  const router = context.useRouter();
16
18
  const fallback = page?.fallback;
17
19
  const sitemap = useSitemap(fallback);
18
- const dispositions = sitemap?.dispositions;
19
- const { handlerDecorator } = context;
20
20
  const mergedItems = mergeTopItems(sitemap.topItems, topItems);
21
21
  const activeTopItem = mergedItems.find(isTopItemActive(router));
22
22
  const subItems = activeTopItem?.items;
@@ -27,7 +27,7 @@ export const Header = JSX(({ className = '', defaultLocation, bgColor = 'bg-whit
27
27
  ...useLink({ router, handlerDecorator }, _),
28
28
  active: _ === activeSubItem,
29
29
  bgColor,
30
- }, i)) }) })] }), burgerMenuShow ? (_jsx(HeaderBurger, { context: context, onClick: toggleBurgerMenu, burgerSubMenu: dispositions, defaultLocation: defaultLocation, children: _jsx(Accordion, { context: context, accordionItems: getAccordionItems(sitemap.topItems), className: "!p-0 mb-4" }) })) : null] }));
30
+ }, i)) }) })] }), burgerMenuShow ? (_jsx(HeaderBurger, { context: context, onClick: toggleBurgerMenu, burgerSubMenu: sitemap?.dispositions, defaultLocation: defaultLocation, children: _jsx(AccordionItemsList, { children: sitemap.topItems?.map((item, i) => (_jsx(AccordionItem, { context: context, label: item.text, children: _jsx(LinkList, { context: context, documents: item.items }) }, String(i)))) }) })) : null] }));
31
31
  });
32
32
  const renderSubItem = (item, i) => (_jsx(HeaderItem, { className: "mr-8 whitespace-nowrap text-s", ...item }, String(i)));
33
33
  //# sourceMappingURL=Header.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Header.js","sourceRoot":"","sources":["../../../src/components/Header/Header.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Header.js","sourceRoot":"","sources":["../../../src/components/Header/Header.tsx"],"names":[],"mappings":"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"}
@@ -4,11 +4,12 @@ import { useState } from '@redneckz/uni-jsx/lib/hooks';
4
4
  import { useLink } from '../../hooks/useLink.js';
5
5
  import { findActiveSubItem } from '../../services/sitemap/findActiveSubItem.js';
6
6
  import { HeaderItem } from '../../ui-kit/HeaderItem/HeaderItem.js';
7
+ import { IntersectionObserverTag } from '../../ui-kit/IntersectionObserverTag.js';
7
8
  import { DropdownMenu } from './DropdownMenu.js';
8
9
  export const HeaderSubMenu = JSX(({ context, subItems = [], bgColor }) => {
9
10
  const [menuVisible, setMenuVisible] = useState(false);
10
11
  const router = context.useRouter();
11
- const { handlerDecorator, IntersectionObserverTag } = context;
12
+ const { handlerDecorator } = context;
12
13
  const [visibleItemsCount, setVisibleItemsCount] = useState(subItems.length);
13
14
  const dropDownMenuItems = subItems.slice(visibleItemsCount);
14
15
  const activeSubItem = findActiveSubItem(router)(subItems);
@@ -1 +1 @@
1
- {"version":3,"file":"HeaderSubMenu.js","sourceRoot":"","sources":["../../../src/components/Header/HeaderSubMenu.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAC;AACvD,OAAO,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAG9C,OAAO,EAAE,iBAAiB,EAAE,MAAM,0CAA0C,CAAC;AAC7E,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAEhE,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAQ9C,MAAM,CAAC,MAAM,aAAa,GAAG,GAAG,CAAqB,CAAC,EAAE,OAAO,EAAE,QAAQ,GAAG,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE;IAC3F,MAAM,CAAC,WAAW,EAAE,cAAc,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;IACtD,MAAM,MAAM,GAAG,OAAO,CAAC,SAAS,EAAE,CAAC;IACnC,MAAM,EAAE,gBAAgB,EAAE,uBAAuB,EAAE,GAAG,OAAO,CAAC;IAE9D,MAAM,CAAC,iBAAiB,EAAE,oBAAoB,CAAC,GAAG,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;IAC5E,MAAM,iBAAiB,GAAG,QAAQ,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC;IAE5D,MAAM,aAAa,GAAG,iBAAiB,CAAC,MAAM,CAAC,CAAC,QAAQ,CAAC,CAAC;IAC1D,MAAM,UAAU,GAAG,GAAG,EAAE,CAAC,cAAc,CAAC,CAAC,WAAW,CAAC,CAAC;IAEtD,MAAM,gBAAgB,GAAG,CAAC,SAAiB,EAAE,EAAE,CAAC,CAAC,OAAoC,EAAE,EAAE;QACvF,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE;YACnB,OAAO;SACR;QAED,MAAM,KAAK,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;QAEzB,IAAI,KAAK,CAAC,iBAAiB,GAAG,CAAC,EAAE;YAC/B,oBAAoB,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC,CAAC;SAC3D;aAAM;YACL,oBAAoB,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC;SAC/D;IACH,CAAC,CAAC;IAEF,OAAO,CACL,eAAK,SAAS,EAAC,eAAe,aAC5B,cAAK,SAAS,EAAC,8CAA8C,YAC1D,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CACtB,KAAC,uBAAuB,IACtB,GAAG,EAAC,MAAM,EACV,gBAAgB,EAAE,gBAAgB,CAAC,CAAC,CAAC,EACrC,eAAe,EAAE,EAAE,SAAS,EAAE,CAAC,EAAE,YAGjC,KAAC,UAAU,IACT,SAAS,EAAE,QAAQ,iBAAiB,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,EAAE,EACjE,MAAM,EAAE,CAAC,KAAK,aAAa,KACvB,OAAO,CAAC,EAAE,MAAM,EAAE,gBAAgB,EAAE,EAAE,CAAC,CAAC,EAC5C,OAAO,EAAE,OAAO,GAChB,IAPG,MAAM,CAAC,CAAC,CAAC,CAQU,CAC3B,CAAC,GACE,EACL,iBAAiB,CAAC,MAAM,CAAC,CAAC,CAAC,CAC1B,KAAC,YAAY,IACX,OAAO,EAAE,OAAO,EAChB,aAAa,EAAE,aAAa,EAC5B,WAAW,EAAE,WAAW,EACxB,UAAU,EAAE,UAAU,EACtB,SAAS,EAAE,iBAAiB,EAC5B,OAAO,EAAE,OAAO,GAChB,CACH,CAAC,CAAC,CAAC,IAAI,IACJ,CACP,CAAC;AACJ,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"HeaderSubMenu.js","sourceRoot":"","sources":["../../../src/components/Header/HeaderSubMenu.tsx"],"names":[],"mappings":"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"}
@@ -1,6 +1,6 @@
1
1
  import type { AlignType } from '../../model/AlignType';
2
2
  import type { BlockVersionWithTransparent } from '../../model/BlockVersion';
3
- import type { HeadlineVersion } from '../../model/HeadlineType';
3
+ import type { HeadlineSmallVersion, HeadlineVersion } from '../../model/HeadlineType';
4
4
  import type { HeadingTagType, HeadingType } from '../../ui-kit/Heading/HeadingProps';
5
5
  export declare const ALIGN_TEXT: Record<AlignType, string>;
6
6
  declare type StyleType = {
@@ -16,4 +16,5 @@ declare type VersionStyleType = {
16
16
  };
17
17
  export declare const HEADLINE_BLOCK_STYLE_MAPS: Record<BlockVersionWithTransparent, StyleType>;
18
18
  export declare const HEADLINE_VERSION: Record<HeadlineVersion, VersionStyleType>;
19
+ export declare const HEADLINE_SMALL_VERSION: Record<HeadlineSmallVersion, string>;
19
20
  export {};
@@ -52,4 +52,13 @@ export const HEADLINE_VERSION = {
52
52
  as: 'h4',
53
53
  },
54
54
  };
55
+ export const HEADLINE_SMALL_VERSION = {
56
+ XL_L: 'text-xl-light',
57
+ XL_R: 'text-xl',
58
+ L_L: 'text-l-light',
59
+ L_R: 'text-l',
60
+ M: 'text-m-light',
61
+ S: 'text-s-light',
62
+ XS: 'text-xs-light',
63
+ };
55
64
  //# sourceMappingURL=constants.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"constants.js","sourceRoot":"","sources":["../../../src/components/Headline/constants.ts"],"names":[],"mappings":"AAKA,MAAM,CAAC,MAAM,UAAU,GAA8B;IACnD,IAAI,EAAE,WAAW;IACjB,MAAM,EAAE,aAAa;IACrB,KAAK,EAAE,YAAY;CACpB,CAAC;AAeF,MAAM,CAAC,MAAM,yBAAyB,GAAmD;IACvF,WAAW,EAAE;QACX,UAAU,EAAE,gBAAgB;QAC5B,IAAI,EAAE,mBAAmB;QACzB,WAAW,EAAE,mBAAmB;KACjC;IACD,OAAO,EAAE;QACP,UAAU,EAAE,UAAU;QACtB,IAAI,EAAE,mBAAmB;QACzB,WAAW,EAAE,mBAAmB;KACjC;IACD,SAAS,EAAE;QACT,UAAU,EAAE,iBAAiB;QAC7B,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,eAAe;KAC7B;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,gBAAgB,GAA8C;IACzE,GAAG,EAAE;QACH,eAAe,EAAE,SAAS;QAC1B,GAAG,EAAE,YAAY;QACjB,WAAW,EAAE,IAAI;QACjB,EAAE,EAAE,IAAI;KACT;IACD,EAAE,EAAE;QACF,eAAe,EAAE,eAAe;QAChC,GAAG,EAAE,OAAO;QACZ,WAAW,EAAE,IAAI;QACjB,EAAE,EAAE,IAAI;KACT;IACD,CAAC,EAAE;QACD,eAAe,EAAE,eAAe;QAChC,GAAG,EAAE,OAAO;QACZ,WAAW,EAAE,IAAI;QACjB,EAAE,EAAE,IAAI;KACT;IACD,CAAC,EAAE;QACD,eAAe,EAAE,eAAe;QAChC,GAAG,EAAE,OAAO;QACZ,WAAW,EAAE,IAAI;QACjB,EAAE,EAAE,IAAI;KACT;IACD,CAAC,EAAE;QACD,eAAe,EAAE,eAAe;QAChC,GAAG,EAAE,OAAO;QACZ,WAAW,EAAE,IAAI;QACjB,EAAE,EAAE,IAAI;KACT;CACF,CAAC"}
1
+ {"version":3,"file":"constants.js","sourceRoot":"","sources":["../../../src/components/Headline/constants.ts"],"names":[],"mappings":"AAKA,MAAM,CAAC,MAAM,UAAU,GAA8B;IACnD,IAAI,EAAE,WAAW;IACjB,MAAM,EAAE,aAAa;IACrB,KAAK,EAAE,YAAY;CACpB,CAAC;AAeF,MAAM,CAAC,MAAM,yBAAyB,GAAmD;IACvF,WAAW,EAAE;QACX,UAAU,EAAE,gBAAgB;QAC5B,IAAI,EAAE,mBAAmB;QACzB,WAAW,EAAE,mBAAmB;KACjC;IACD,OAAO,EAAE;QACP,UAAU,EAAE,UAAU;QACtB,IAAI,EAAE,mBAAmB;QACzB,WAAW,EAAE,mBAAmB;KACjC;IACD,SAAS,EAAE;QACT,UAAU,EAAE,iBAAiB;QAC7B,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,eAAe;KAC7B;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,gBAAgB,GAA8C;IACzE,GAAG,EAAE;QACH,eAAe,EAAE,SAAS;QAC1B,GAAG,EAAE,YAAY;QACjB,WAAW,EAAE,IAAI;QACjB,EAAE,EAAE,IAAI;KACT;IACD,EAAE,EAAE;QACF,eAAe,EAAE,eAAe;QAChC,GAAG,EAAE,OAAO;QACZ,WAAW,EAAE,IAAI;QACjB,EAAE,EAAE,IAAI;KACT;IACD,CAAC,EAAE;QACD,eAAe,EAAE,eAAe;QAChC,GAAG,EAAE,OAAO;QACZ,WAAW,EAAE,IAAI;QACjB,EAAE,EAAE,IAAI;KACT;IACD,CAAC,EAAE;QACD,eAAe,EAAE,eAAe;QAChC,GAAG,EAAE,OAAO;QACZ,WAAW,EAAE,IAAI;QACjB,EAAE,EAAE,IAAI;KACT;IACD,CAAC,EAAE;QACD,eAAe,EAAE,eAAe;QAChC,GAAG,EAAE,OAAO;QACZ,WAAW,EAAE,IAAI;QACjB,EAAE,EAAE,IAAI;KACT;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,sBAAsB,GAAyC;IAC1E,IAAI,EAAE,eAAe;IACrB,IAAI,EAAE,SAAS;IACf,GAAG,EAAE,cAAc;IACnB,GAAG,EAAE,QAAQ;IACb,CAAC,EAAE,cAAc;IACjB,CAAC,EAAE,cAAc;IACjB,EAAE,EAAE,eAAe;CACpB,CAAC"}
@@ -0,0 +1,5 @@
1
+ import type { UniBlockProps } from '../../model/ContentPageDef';
2
+ import type { InvestmentInfoContent } from './InvestmentInfoContent';
3
+ export interface InvestmentInfoProps extends InvestmentInfoContent, UniBlockProps {
4
+ }
5
+ export declare const InvestmentInfo: import("@redneckz/uni-jsx").UNIComponent<InvestmentInfoProps, any, any>;
@@ -0,0 +1,47 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "@redneckz/uni-jsx/jsx-runtime";
2
+ import { JSX } from '@redneckz/uni-jsx';
3
+ import { BlockWrapper } from '../../ui-kit/BlockWrapper.js';
4
+ import { List } from '../../ui-kit/List/List.js';
5
+ import { joinList } from '../../utils/joinList.js';
6
+ const investmentCellColorMap = {
7
+ yellow: 'bg-yellow',
8
+ green: 'bg-green',
9
+ 'green-light': 'bg-green-light',
10
+ 'green-dark': 'bg-green-dark',
11
+ };
12
+ const investmentCellSizeMap = {
13
+ XS: 'h-[40px]',
14
+ S: 'h-[68px]',
15
+ M: 'h-[102px]',
16
+ L: 'h-[136px]',
17
+ XL: 'h-[204px]',
18
+ };
19
+ export const InvestmentInfo = JSX((props) => {
20
+ const { context, className = '', items, isDotted, investmentZeroColumn, investmentColumns, ...rest } = props;
21
+ const colums = investmentColumns ? [...investmentColumns] : [];
22
+ if (investmentZeroColumn) {
23
+ colums.unshift(investmentZeroColumn);
24
+ }
25
+ return (_jsx(BlockWrapper, { className: `font-sans bg-white p-9 pb-9 ${className}`, context: context, ...rest, children: _jsxs("div", { className: "container text-m-light", children: [colums?.length ? (_jsxs("div", { children: [_jsxs("div", { className: "flex items-end px-9 text-white", children: [joinList(_jsx("div", { className: "w-px h-4 bg-main-stroke" }))(colums.map(renderInvestmentColumn)), _jsx("div", { className: "w-px h-4 bg-main-stroke" })] }), _jsx("div", { className: "border-t border-main-stroke -mt-2 mx-9" }), _jsx("div", { className: "flex justify-between mt-3 -mx-10", children: colums.map(renderInvestmentColumnTitle) })] })) : null, items?.length ? (_jsx(List, { className: "mt-9 text-h6", items: items, itemClassName: "mb-[7px]", isDotted: isDotted })) : null] }) }));
26
+ });
27
+ const renderInvestmentColumn = (column, i, arr) => {
28
+ const isSecondColumn = i === 1;
29
+ const isLastColumn = i === arr.length - 1;
30
+ return (_jsx("div", { className: `${getColumnClasses(isSecondColumn, isLastColumn, column.cells)}`, children: column.cells?.length ? (_jsx("div", { className: `w-full ${isLastColumn ? 'border-4 border-green-more-dark p-1' : ''}`, children: column.cells.map(renderInvestmentCell) })) : null }, `column_${i}`));
31
+ };
32
+ const getColumnClasses = (isSecondColumn, isLastColumn, cells = []) => [
33
+ cells.length ? 'flex-1' : 'flex-0',
34
+ cells.length && !isSecondColumn && !isLastColumn ? 'pl-2.5' : '',
35
+ cells.length && !isLastColumn ? 'pr-2.5 pb-8' : 'pb-6',
36
+ ].join(' ');
37
+ const renderInvestmentCell = (cell, i) => {
38
+ const cellSize = cell.cellSize || 'XS';
39
+ const cellColor = cell.cellColor || 'green';
40
+ return cell.text ? (_jsx("div", { className: `flex-1 flex items-center justify-center relative py-2 ${investmentCellSizeMap[cellSize]} ${investmentCellColorMap[cellColor]} ${cellSize === 'XS' ? 'px-3' : 'px-11'}`, children: _jsx("div", { className: "text-center", children: cell.text }) }, `cell_${i}`)) : null;
41
+ };
42
+ const renderInvestmentColumnTitle = (column, i, arr) => {
43
+ const isFirstColumn = i === 0;
44
+ const isLastColumn = i === arr.length - 1;
45
+ return (_jsx("div", { className: `flex-1 max-w-[180px] text-center px-2 ${isFirstColumn ? 'pl-9' : ''} ${isLastColumn ? 'pr-9' : ' '}`, children: column.title }, `title_${i}`));
46
+ };
47
+ //# sourceMappingURL=InvestmentInfo.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InvestmentInfo.js","sourceRoot":"","sources":["../../../src/components/InvestmentInfo/InvestmentInfo.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AAExC,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAC9C,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAUhD,MAAM,sBAAsB,GAAwC;IAClE,MAAM,EAAE,WAAW;IACnB,KAAK,EAAE,UAAU;IACjB,aAAa,EAAE,gBAAgB;IAC/B,YAAY,EAAE,eAAe;CAC9B,CAAC;AAEF,MAAM,qBAAqB,GAAuC;IAChE,EAAE,EAAE,UAAU;IACd,CAAC,EAAE,UAAU;IACb,CAAC,EAAE,WAAW;IACd,CAAC,EAAE,WAAW;IACd,EAAE,EAAE,WAAW;CAChB,CAAC;AAIF,MAAM,CAAC,MAAM,cAAc,GAAG,GAAG,CAAsB,CAAC,KAAK,EAAE,EAAE;IAC/D,MAAM,EACJ,OAAO,EACP,SAAS,GAAG,EAAE,EACd,KAAK,EACL,QAAQ,EACR,oBAAoB,EACpB,iBAAiB,EACjB,GAAG,IAAI,EACR,GAAG,KAAK,CAAC;IACV,MAAM,MAAM,GAAG,iBAAiB,CAAC,CAAC,CAAC,CAAC,GAAG,iBAAiB,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;IAC/D,IAAI,oBAAoB,EAAE;QACxB,MAAM,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC;KACtC;IAED,OAAO,CACL,KAAC,YAAY,IACX,SAAS,EAAE,+BAA+B,SAAS,EAAE,EACrD,OAAO,EAAE,OAAO,KACZ,IAAI,YAER,eAAK,SAAS,EAAC,wBAAwB,aACpC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC,CAChB,0BACE,eAAK,SAAS,EAAC,gCAAgC,aAC5C,QAAQ,CAAC,cAAK,SAAS,EAAC,yBAAyB,GAAG,CAAC,CACpD,MAAM,CAAC,GAAG,CAAC,sBAAsB,CAAC,CACnC,EACD,cAAK,SAAS,EAAC,yBAAyB,GAAG,IACvC,EACN,cAAK,SAAS,EAAC,wCAAwC,GAAG,EAC1D,cAAK,SAAS,EAAC,kCAAkC,YAC9C,MAAM,CAAC,GAAG,CAAC,2BAA2B,CAAC,GACpC,IACF,CACP,CAAC,CAAC,CAAC,IAAI,EAEP,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,CACf,KAAC,IAAI,IACH,SAAS,EAAC,cAAc,EACxB,KAAK,EAAE,KAAK,EACZ,aAAa,EAAC,UAAU,EACxB,QAAQ,EAAE,QAAQ,GAClB,CACH,CAAC,CAAC,CAAC,IAAI,IACJ,GACO,CAChB,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,MAAM,sBAAsB,GAAG,CAC7B,MAA+C,EAC/C,CAAS,EACT,GAA4B,EAC5B,EAAE;IACF,MAAM,cAAc,GAAG,CAAC,KAAK,CAAC,CAAC;IAC/B,MAAM,YAAY,GAAG,CAAC,KAAK,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC;IAE1C,OAAO,CACL,cAEE,SAAS,EAAE,GAAG,gBAAgB,CAAC,cAAc,EAAE,YAAY,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE,YAE3E,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,CACtB,cAAK,SAAS,EAAE,UAAU,YAAY,CAAC,CAAC,CAAC,qCAAqC,CAAC,CAAC,CAAC,EAAE,EAAE,YAClF,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,oBAAoB,CAAC,GACnC,CACP,CAAC,CAAC,CAAC,IAAI,IAPH,UAAU,CAAC,EAAE,CAQd,CACP,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,gBAAgB,GAAG,CACvB,cAAuB,EACvB,YAAqB,EACrB,QAA0B,EAAE,EACpB,EAAE,CACV;IACE,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ;IAClC,KAAK,CAAC,MAAM,IAAI,CAAC,cAAc,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE;IAChE,KAAK,CAAC,MAAM,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM;CACvD,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAEd,MAAM,oBAAoB,GAAG,CAAC,IAAoB,EAAE,CAAS,EAAE,EAAE;IAC/D,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC;IACvC,MAAM,SAAS,GAAG,IAAI,CAAC,SAAS,IAAI,OAAO,CAAC;IAE5C,OAAO,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CACjB,cAEE,SAAS,EAAE,yDACT,qBAAqB,CAAC,QAAQ,CAChC,IAAI,sBAAsB,CAAC,SAAS,CAAC,IAAI,QAAQ,KAAK,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,YAE/E,cAAK,SAAS,EAAC,aAAa,YAAE,IAAI,CAAC,IAAI,GAAO,IALzC,QAAQ,CAAC,EAAE,CAMZ,CACP,CAAC,CAAC,CAAC,IAAI,CAAC;AACX,CAAC,CAAC;AAEF,MAAM,2BAA2B,GAAG,CAClC,MAA+C,EAC/C,CAAS,EACT,GAA4B,EAC5B,EAAE;IACF,MAAM,aAAa,GAAG,CAAC,KAAK,CAAC,CAAC;IAC9B,MAAM,YAAY,GAAG,CAAC,KAAK,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC;IAE1C,OAAO,CACL,cAEE,SAAS,EAAE,yCAAyC,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,IAC7E,YAAY,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAC1B,EAAE,YAED,MAAM,CAAC,KAAK,IALR,SAAS,CAAC,EAAE,CAMb,CACP,CAAC;AACJ,CAAC,CAAC"}
@@ -0,0 +1,49 @@
1
+ import type { ListContent } from '../../ui-kit/List/ListContent';
2
+ /**
3
+ * @title Цвет
4
+ * @enumNames ["Желтый", "Светло-зеленый", "Зеленый", "Тёмно-зеленый"]
5
+ */
6
+ export declare type InvestmentCellColor = 'yellow' | 'green-light' | 'green' | 'green-dark';
7
+ /**
8
+ * @title Высота
9
+ * @enumNames ["Очень большой", "Большой", "Средний", "Маленький", "Очень маленький"]
10
+ */
11
+ export declare type InvestmentCellSize = 'XL' | 'L' | 'M' | 'S' | 'XS';
12
+ /**
13
+ * @title Ячейка
14
+ */
15
+ export declare type InvestmentCell = {
16
+ /** @title Текст */
17
+ text?: string;
18
+ cellColor?: InvestmentCellColor;
19
+ cellSize?: InvestmentCellSize;
20
+ };
21
+ /**
22
+ * @title Элемент данных 1
23
+ */
24
+ export declare type InvestmentZeroColumn = {
25
+ /** @title Название */
26
+ title?: string;
27
+ /** @hidden */
28
+ cells?: InvestmentCell[];
29
+ };
30
+ /**
31
+ * @title Элемент данных
32
+ */
33
+ export declare type InvestmentColumn = {
34
+ /** @title Название */
35
+ title?: string;
36
+ /** @title Ячейки */
37
+ cells?: InvestmentCell[];
38
+ };
39
+ /**
40
+ * @title Блок инвестиций
41
+ */
42
+ export declare type InvestmentInfoContent = ListContent & {
43
+ /** @title Буллиты */
44
+ isDotted?: boolean;
45
+ /** @title Элемент данных 1 */
46
+ investmentZeroColumn?: InvestmentZeroColumn;
47
+ /** @title Остальные элементы данных */
48
+ investmentColumns?: InvestmentColumn[];
49
+ };
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=InvestmentInfoContent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InvestmentInfoContent.js","sourceRoot":"","sources":["../../../src/components/InvestmentInfo/InvestmentInfoContent.ts"],"names":[],"mappings":""}
@@ -1,6 +1,7 @@
1
1
  import type { GalleryCardProps, GalleryContent } from '../Gallery/GalleryContent';
2
2
  /**
3
3
  * @title Мини-галерея
4
+ * @default {"headlineVersion": "L"}
4
5
  */
5
6
  export interface MiniGalleryContent extends GalleryContent {
6
7
  /**
@@ -1,15 +1,15 @@
1
1
  import { jsx as _jsx } from "@redneckz/uni-jsx/jsx-runtime";
2
2
  import { JSX } from '@redneckz/uni-jsx';
3
3
  import { renderBlocksList } from '../../ui-kit/BlocksList/renderBlocksList.js';
4
+ import { DefaultFoldButton } from '../../ui-kit/Foldable/DefaultFoldButton.js';
4
5
  import { Foldable } from '../../ui-kit/Foldable/Foldable.js';
5
- export const OtherProductsItem = JSX(({ label, blocks, context, dataTheme, isUnfolded }) => {
6
+ import { FoldableSection } from '../../ui-kit/Foldable/FoldableSection.js';
7
+ const icons = ['ArrowDownIcon', 'ArrowUpIcon'];
8
+ export const OtherProductsItem = JSX(({ label = '', blocks, context, dataTheme, isUnfolded: unfoldedByDefault }) => {
6
9
  const foldableBlocks = renderBlocksList({
7
10
  context,
8
11
  blocks,
9
12
  });
10
- return (_jsx("div", { className: "border-0 border-b border-solid border-main-divider", children: blocks?.length ? (_jsx(Foldable, { foldButtonDataTheme: dataTheme, hiddenBlocksNum: blocks?.length, blocks: foldableBlocks, isUnfolded: isUnfolded, context: context, foldButtonLabel: label, containerClasses: "grid grid-cols-12 gap-1 border-box", render: (children) => _jsx(Wrapper, { children: children }) })) : null }));
11
- });
12
- const Wrapper = JSX(({ children }) => {
13
- return _jsx("div", { className: "box-border", children: children });
13
+ return (_jsx("div", { className: "\u02DDborder-0 border-b border-solid border-main-divider", children: blocks?.length ? (_jsx(Foldable, { unfoldedByDefault: unfoldedByDefault, renderFoldableSection: ({ isUnfolded }) => (_jsx("div", { className: "box-border", children: _jsx(FoldableSection, { className: "grid grid-cols-12 gap-1 border-box", isUnfolded: isUnfolded, children: foldableBlocks }) })), renderFoldButton: ({ isUnfolded, onToggle }) => (_jsx(DefaultFoldButton, { label: label, icon: icons[Number(isUnfolded)], dataTheme: dataTheme, onClick: onToggle })) })) : null }));
14
14
  });
15
15
  //# sourceMappingURL=OtherProductsItem.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"OtherProductsItem.js","sourceRoot":"","sources":["../../../src/components/OtherProducts/OtherProductsItem.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AAGxC,OAAO,EAAE,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAC5E,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAO1D,MAAM,CAAC,MAAM,iBAAiB,GAAG,GAAG,CAClC,CAAC,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,EAAE,EAAE;IACpD,MAAM,cAAc,GAAG,gBAAgB,CAAC;QACtC,OAAO;QACP,MAAM;KACP,CAAY,CAAC;IAEd,OAAO,CACL,cAAK,SAAS,EAAC,oDAAoD,YAChE,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC,CAChB,KAAC,QAAQ,IACP,mBAAmB,EAAE,SAAS,EAC9B,eAAe,EAAE,MAAM,EAAE,MAAM,EAC/B,MAAM,EAAE,cAAc,EACtB,UAAU,EAAE,UAAU,EACtB,OAAO,EAAE,OAAO,EAChB,eAAe,EAAE,KAAK,EACtB,gBAAgB,EAAC,oCAAoC,EACrD,MAAM,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,KAAC,OAAO,cAAE,QAAQ,GAAW,GACnD,CACH,CAAC,CAAC,CAAC,IAAI,GACJ,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,MAAM,OAAO,GAAG,GAAG,CAAC,CAAC,EAAE,QAAQ,EAAE,EAAE,EAAE;IACnC,OAAO,cAAK,SAAS,EAAC,YAAY,YAAE,QAAQ,GAAO,CAAC;AACtD,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"OtherProductsItem.js","sourceRoot":"","sources":["../../../src/components/OtherProducts/OtherProductsItem.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AAGxC,OAAO,EAAE,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAC5E,OAAO,EAAE,iBAAiB,EAAE,MAAM,yCAAyC,CAAC;AAC5E,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,uCAAuC,CAAC;AAQxE,MAAM,KAAK,GAAe,CAAC,eAAe,EAAE,aAAa,CAAC,CAAC;AAE3D,MAAM,CAAC,MAAM,iBAAiB,GAAG,GAAG,CAClC,CAAC,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,iBAAiB,EAAE,EAAE,EAAE;IAC5E,MAAM,cAAc,GAAG,gBAAgB,CAAC;QACtC,OAAO;QACP,MAAM;KACP,CAAY,CAAC;IAEd,OAAO,CACL,cAAK,SAAS,EAAC,0DAAqD,YACjE,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC,CAChB,KAAC,QAAQ,IACP,iBAAiB,EAAE,iBAAiB,EACpC,qBAAqB,EAAE,CAAC,EAAE,UAAU,EAAE,EAAE,EAAE,CAAC,CACzC,cAAK,SAAS,EAAC,YAAY,YACzB,KAAC,eAAe,IACd,SAAS,EAAC,oCAAoC,EAC9C,UAAU,EAAE,UAAU,YAErB,cAAc,GACC,GACd,CACP,EACD,gBAAgB,EAAE,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC,CAC9C,KAAC,iBAAiB,IAChB,KAAK,EAAE,KAAK,EACZ,IAAI,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,EAC/B,SAAS,EAAE,SAAS,EACpB,OAAO,EAAE,QAAQ,GACjB,CACH,GACD,CACH,CAAC,CAAC,CAAC,IAAI,GACJ,CACP,CAAC;AACJ,CAAC,CACF,CAAC"}
@@ -1,11 +1,11 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "@redneckz/uni-jsx/jsx-runtime";
2
2
  import { JSX } from '@redneckz/uni-jsx';
3
+ import { VersionStyleMap } from '../../model/BlockVersion.js';
3
4
  import { BlockWrapper } from '../../ui-kit/BlockWrapper.js';
4
5
  import { ButtonSection } from '../../ui-kit/Button/ButtonSection.js';
5
6
  import { Img } from '../../ui-kit/Img/Img.js';
6
7
  import { getTileRightPadding } from '../BaseTile/getTileRightPadding.js';
7
8
  import { Headline } from '../Headline/Headline.js';
8
- import { VersionStyleMap } from '../../model/BlockVersion.js';
9
9
  export const ProductTile = JSX(({ context, className = '', title, headlineVersion = 'S', description, additionalDescription, benefits = [], buttons, image, version = 'primary', ...rest }) => {
10
10
  return (_jsxs(BlockWrapper, { context: context, className: `overflow-hidden font-sans p-9 box-border relative justify-between grid min-h-[364px]
11
11
  ${className} ${VersionStyleMap[version]} ${getTileRightPadding(className)}`, ...rest, children: [_jsx(Headline, { context: context, className: `!p-0 !bg-transparent z-10 ${title || description ? 'mb-3.5' : ''}`, as: "h2", title: title, description: description, headlineVersion: headlineVersion, bgColorHeadline: version, align: "left" }), renderBenefits(benefits, version, image), additionalDescription
@@ -1 +1 @@
1
- {"version":3,"file":"ProductTile.js","sourceRoot":"","sources":["../../../src/components/ProductTile/ProductTile.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ProductTile.js","sourceRoot":"","sources":["../../../src/components/ProductTile/ProductTile.tsx"],"names":[],"mappings":"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"}
@@ -10,6 +10,11 @@ export interface RecommendationCardTypes extends HeadlineCommonProps, ListConten
10
10
  /**
11
11
  * @title Соц сети
12
12
  * @minItems 3
13
+ * @default [
14
+ * { "href": "https://t.me" },
15
+ * { "href": "https://vk.com" },
16
+ * { "href": "https://ok.ru" },
17
+ * ]
13
18
  */
14
19
  socialMedia?: LinkCommonProps[];
15
20
  /**
@@ -1,4 +1,4 @@
1
- import type { Branch } from '../../hooks/useFetchSafeBoxes';
1
+ import type { Branch } from '../../hooks/useSafeBoxes';
2
2
  import type { Region } from './useGetRegions';
3
3
  interface RegionsAndBranchesProps {
4
4
  regions?: Region[];