@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
@@ -0,0 +1,24 @@
1
+ import type { TariffsTableCellIndexProps } from '../../components/TariffsTable/TariffsTableContent';
2
+ export declare type RowsData = {
3
+ data?: string;
4
+ cols?: string[];
5
+ };
6
+ export declare type DataItem = {
7
+ title?: string;
8
+ rowsData?: RowsData[][];
9
+ };
10
+ export declare type TableData = {
11
+ currency?: string;
12
+ items?: DataItem[];
13
+ };
14
+ export declare type TableFetchData = {
15
+ tableData?: TableData[];
16
+ };
17
+ export interface TariffsTableInnerContent {
18
+ /** @title Справочник */
19
+ dataUrl?: string;
20
+ /** @title Ссылка PDF-файл */
21
+ pdfUrl?: string;
22
+ }
23
+ export interface TariffsTableInnerEvent extends Partial<TariffsTableCellIndexProps>, TariffsTableInnerContent {
24
+ }
@@ -0,0 +1,2 @@
1
+ import type { InputProps } from './InputProps';
2
+ export declare const Input: import("@redneckz/uni-jsx").UNIComponent<InputProps, any, any>;
@@ -0,0 +1,16 @@
1
+ import type { InputTypes } from '../../model/InputTypes';
2
+ import type { LabelProps } from '../../model/HeadlineType';
3
+ export declare type InputProps = LabelProps & {
4
+ className?: string;
5
+ label?: string;
6
+ inputClassName?: string;
7
+ id?: string;
8
+ name?: string;
9
+ type?: InputTypes;
10
+ placeholder?: string;
11
+ pattern?: string;
12
+ value?: string;
13
+ onChange: (value: string) => void;
14
+ onBlur?: (value: string) => void;
15
+ valid?: boolean;
16
+ };
@@ -0,0 +1,2 @@
1
+ import type { InputRangeProps } from './InputRangeProps';
2
+ export declare const InputRange: import("@redneckz/uni-jsx").UNIComponent<InputRangeProps, any, any>;
@@ -0,0 +1,11 @@
1
+ export interface InputRangeProps {
2
+ className?: string;
3
+ items?: string[];
4
+ min?: number;
5
+ max?: number;
6
+ step?: number;
7
+ value?: number;
8
+ title?: string;
9
+ disabled?: boolean;
10
+ onChange?: (value: number) => void;
11
+ }
@@ -0,0 +1,11 @@
1
+ import type { VNode } from '../model/VNode';
2
+ interface IntersectionObserverTagProps {
3
+ tag: keyof HTMLElementTagNameMap;
4
+ className?: string;
5
+ anchor?: string;
6
+ children?: VNode;
7
+ observerCallback: IntersectionObserverCallback;
8
+ observerOptions?: IntersectionObserverInit;
9
+ }
10
+ export declare const IntersectionObserverTag: import("@redneckz/uni-jsx").UNIComponent<IntersectionObserverTagProps, any, any>;
11
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { ListProps } from './ListProps';
2
+ export declare const List: import("@redneckz/uni-jsx").UNIComponent<ListProps, any, any>;
@@ -0,0 +1,4 @@
1
+ export interface ListContent {
2
+ /** @title Список */
3
+ items?: string[];
4
+ }
@@ -0,0 +1,12 @@
1
+ import type { ListItemSize, ListItemVersion } from './ListProps';
2
+ /**
3
+ * @title Параметры элемента списка
4
+ */
5
+ export interface ListItemProps {
6
+ className?: string;
7
+ version?: ListItemVersion;
8
+ text?: string;
9
+ isDotted?: boolean;
10
+ size?: ListItemSize;
11
+ }
12
+ export declare const ListItem: import("@redneckz/uni-jsx").UNIComponent<ListItemProps, any, any>;
@@ -0,0 +1,26 @@
1
+ import type { ListContent } from './ListContent';
2
+ /**
3
+ * @title Размер пунктов списка
4
+ * @enumNames ["Маленький", "Средний", "Большой"]
5
+ */
6
+ export declare type ListItemSize = 'S' | 'M' | 'L';
7
+ /**
8
+ * @title Версия списка
9
+ * @enumNames ["Основной", "Второстепенный", "Серый"]
10
+ */
11
+ export declare type ListItemVersion = 'primary' | 'secondary' | 'gray';
12
+ /**
13
+ * @title Содержимое списка
14
+ */
15
+ export interface ListProps extends ListContent {
16
+ /** @hidden */
17
+ className?: string;
18
+ /** @title Отступ */
19
+ hasIndent?: boolean;
20
+ /** @hidden */
21
+ itemClassName?: string;
22
+ /** @title Буллиты */
23
+ isDotted?: boolean;
24
+ listItemSize?: ListItemSize;
25
+ version?: ListItemVersion;
26
+ }
@@ -0,0 +1,8 @@
1
+ export interface LogoProps {
2
+ className: string;
3
+ href: string;
4
+ targetBlank: boolean;
5
+ bgColor?: string;
6
+ showTitle?: boolean;
7
+ }
8
+ export declare const Logo: import("@redneckz/uni-jsx").UNIComponent<Partial<LogoProps>, any, any>;
@@ -0,0 +1,2 @@
1
+ import { RadioProps } from './RadioProps';
2
+ export declare const Radio: import("@redneckz/uni-jsx").UNIComponent<RadioProps, any, any>;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ export interface RadioProps {
3
+ name: string;
4
+ text?: string;
5
+ value: string;
6
+ checked: boolean;
7
+ onChange: (value: React.ChangeEvent<HTMLInputElement>) => void;
8
+ className?: string;
9
+ }
@@ -0,0 +1,12 @@
1
+ import { UniBlockProps } from '../../model/ContentPageDef';
2
+ interface RadioButtonItem {
3
+ id: string;
4
+ text: string;
5
+ }
6
+ interface RadioButtonGroupProps extends UniBlockProps {
7
+ items: RadioButtonItem[];
8
+ checkedItem?: string;
9
+ onChangeCheckedItem: (id: string) => void;
10
+ }
11
+ export declare const RadioButtonGroup: import("@redneckz/uni-jsx").UNIComponent<RadioButtonGroupProps, any, any>;
12
+ export {};
@@ -0,0 +1,19 @@
1
+ export interface SVGPathOptions {
2
+ fill?: string;
3
+ stroke?: string;
4
+ strokeLinecap?: 'inherit' | 'butt' | 'round' | 'square';
5
+ strokeLinejoin?: 'inherit' | 'round' | 'miter' | 'bevel';
6
+ strokeWidth?: string;
7
+ strokeMiterlimit?: string;
8
+ }
9
+ export interface SVGPath extends SVGPathOptions {
10
+ d: string;
11
+ }
12
+ export interface SVGProps extends SVGPathOptions {
13
+ className?: string;
14
+ viewBox?: string;
15
+ paths: SVGPath[];
16
+ width?: string;
17
+ height?: string;
18
+ }
19
+ export declare const SVG: import("@redneckz/uni-jsx").UNIComponent<SVGProps, any, any>;
@@ -0,0 +1,2 @@
1
+ import type { UniBlockProps } from '../../model/ContentPageDef';
2
+ export declare const SearchBar: import("@redneckz/uni-jsx").UNIComponent<UniBlockProps, any, any>;
@@ -0,0 +1,5 @@
1
+ export interface SearchBarInnerProps {
2
+ isMobile?: boolean;
3
+ className?: string;
4
+ }
5
+ export declare const SearchBarInner: import("@redneckz/uni-jsx").UNIComponent<SearchBarInnerProps, any, any>;
@@ -0,0 +1,14 @@
1
+ export interface OptionProps {
2
+ key: string;
3
+ text: string;
4
+ }
5
+ export interface SelectProps {
6
+ className?: string;
7
+ label?: string;
8
+ value?: OptionProps;
9
+ onChange: (value: OptionProps) => void;
10
+ options: OptionProps[];
11
+ isBorder?: boolean;
12
+ placeholder?: string;
13
+ }
14
+ export declare const Select: import("@redneckz/uni-jsx").UNIComponent<SelectProps, any, any>;
@@ -0,0 +1,2 @@
1
+ import type { SwipeListControlProps } from './SwipeListControlProps';
2
+ export declare const SwipeListControl: import("@redneckz/uni-jsx").UNIComponent<SwipeListControlProps, any, any>;
@@ -0,0 +1,6 @@
1
+ export interface SwipeListControlDotsProps {
2
+ activeIndex: number;
3
+ indexFraction: number;
4
+ showDots?: boolean;
5
+ }
6
+ export declare const SwipeListControlDots: import("@redneckz/uni-jsx").UNIComponent<SwipeListControlDotsProps, any, any>;
@@ -0,0 +1,9 @@
1
+ /**
2
+ * @title Элемент списка
3
+ */
4
+ export interface SwipeListControlItemProps {
5
+ className?: string;
6
+ style?: Record<string, string>;
7
+ 'aria-current'?: boolean;
8
+ }
9
+ export declare const SwipeListControlItem: import("@redneckz/uni-jsx").UNIComponent<SwipeListControlItemProps, any, any>;
@@ -0,0 +1,10 @@
1
+ import { SwipeContainer } from './SwipeListControlProps';
2
+ /**
3
+ * @title Список
4
+ */
5
+ export interface SwipeListControlListProps extends SwipeContainer {
6
+ className?: string;
7
+ activeIndex: number;
8
+ onScroll?: (e: any) => void;
9
+ }
10
+ export declare const SwipeListControlList: import("@redneckz/uni-jsx").UNIComponent<SwipeListControlListProps, any, any>;
@@ -0,0 +1,18 @@
1
+ import type { UniBlockProps } from '../../model/ContentPageDef';
2
+ /**
3
+ * @title Контейнер
4
+ */
5
+ export interface SwipeContainer {
6
+ /** @title Расстояние между элементами */
7
+ gap?: number;
8
+ /** @title Отступы */
9
+ padding?: number;
10
+ }
11
+ /**
12
+ * @title Swipe-контроллер
13
+ */
14
+ export interface SwipeListControlProps extends SwipeContainer, UniBlockProps {
15
+ /** @title Точки-индикаторы */
16
+ showDots?: boolean;
17
+ onSlideChange?: () => void;
18
+ }
@@ -0,0 +1,2 @@
1
+ export declare const DEFAULT_GAP = 14;
2
+ export declare const DEFAULT_PADDING = 16;
@@ -0,0 +1 @@
1
+ export declare const getContainerStyle: (padding: number) => Record<string, string>;
@@ -0,0 +1,4 @@
1
+ export declare const getIndexParts: (scrollLeft: number, scrollPoints: [number, number][]) => {
2
+ index: number;
3
+ fraction: number;
4
+ };
@@ -0,0 +1,8 @@
1
+ export declare const getScrollPoints: ({ gap, padding, clientWidth, scrollWidth, childElementCount, itemWidth, }: {
2
+ gap: number;
3
+ padding: number;
4
+ clientWidth: number;
5
+ scrollWidth: number;
6
+ childElementCount: number;
7
+ itemWidth: number;
8
+ }) => [number, number][];
@@ -0,0 +1,2 @@
1
+ import type { TableArrowScrollControlProps } from './TableArrowScrollControlProps';
2
+ export declare const TableArrowScrollControl: import("@redneckz/uni-jsx").UNIComponent<TableArrowScrollControlProps, any, any>;
@@ -0,0 +1,7 @@
1
+ export interface TableArrowScrollControlProps {
2
+ isScrollAvailable?: boolean;
3
+ handleNextClick: () => void;
4
+ handlePrevClick: () => void;
5
+ showNextButton: boolean;
6
+ showPrevButton: boolean;
7
+ }
@@ -0,0 +1,14 @@
1
+ import type { BgColorVersion } from '../../model/BgColorVersion';
2
+ import type { LinkProps } from '../../model/LinkProps';
3
+ export interface TopItemContent extends LinkProps {
4
+ active?: boolean;
5
+ }
6
+ export interface TopItemProps extends TopItemContent {
7
+ className?: string;
8
+ flat?: boolean;
9
+ ariaLabel?: string;
10
+ onClick?: () => void;
11
+ bgColor?: BgColorVersion;
12
+ dataItemName?: string;
13
+ }
14
+ export declare const TopItem: import("@redneckz/uni-jsx").UNIComponent<TopItemProps, any, any>;
@@ -0,0 +1 @@
1
+ export declare const addSpacesBetweenNumbers: (number: number) => string;
@@ -0,0 +1,4 @@
1
+ export declare const adjustHref: (href: string | undefined, router: {
2
+ pathname: string;
3
+ href?: string | undefined;
4
+ }) => string | undefined;
@@ -0,0 +1 @@
1
+ export declare function assertUnreachable(x: never): never;
@@ -0,0 +1,9 @@
1
+ import { AnchorClickScrollingEvent } from '../components/Tabs/Tabs';
2
+ interface ChangeHashOnObserveProps {
3
+ anchor?: string;
4
+ anchorClickRef?: {
5
+ current: AnchorClickScrollingEvent | null;
6
+ };
7
+ }
8
+ export declare const changeHashOnObserve: ({ anchor, anchorClickRef }: ChangeHashOnObserveProps) => (entries: IntersectionObserverEntry[]) => void;
9
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { Picture } from '../model/Picture';
2
+ export declare const checkIsIconRenderable: (icon?: Picture) => boolean;
@@ -0,0 +1 @@
1
+ export declare const clamp: (value: number, min: number, max: number) => number;
@@ -0,0 +1,2 @@
1
+ export declare function fetchJSON<R = unknown>(url: string, options?: RequestInit): Promise<R | null>;
2
+ export declare function fetchJSONUnsafe<R = unknown>(url: string, options?: RequestInit): Promise<R>;
@@ -0,0 +1 @@
1
+ export declare const getColSpan: (className: string) => number;
@@ -0,0 +1 @@
1
+ export declare const getCurrentDate: () => string;
@@ -0,0 +1 @@
1
+ export declare const getGeolocation: () => Promise<GeolocationCoordinates>;
@@ -0,0 +1 @@
1
+ export declare const getSanitizedValue: (_: string) => string;
@@ -0,0 +1,2 @@
1
+ import type { Picture } from '../model/Picture';
2
+ export declare function isPictureSizeEmpty(size: Picture['size']): boolean;
@@ -0,0 +1 @@
1
+ export declare function joinList<E>(sep: E): (list: E[]) => E[];
@@ -0,0 +1,2 @@
1
+ export declare const maxBy: <Item, Value>(discriminator: (item: Item) => Value) => (list: Item[]) => Item;
2
+ export declare const minBy: <Item, Value>(discriminator: (item: Item) => Value) => (list: Item[]) => Item;
@@ -0,0 +1 @@
1
+ export declare const roundTo: (value: number | string, precision?: number) => number;
@@ -0,0 +1 @@
1
+ export declare function style2className(style: string[] | undefined | null): string;
@@ -0,0 +1,2 @@
1
+ export declare type Predicate<Input> = (input: Input) => boolean;
2
+ export declare const tableFunc: <Input, Output>(table: [Predicate<Input>, Output][]) => (input: Input) => Output | undefined;
@@ -0,0 +1,5 @@
1
+ export declare const isURL: (href?: string) => boolean | undefined;
2
+ export declare const withoutQuery: (href?: string) => string;
3
+ export declare const getOrigin: (href?: string) => string | undefined;
4
+ export declare const getHash: (href?: string) => string | undefined;
5
+ export declare const isHash: (href?: string) => boolean | undefined;
@@ -0,0 +1,2 @@
1
+ export declare const MOBILE_URL_PATH = "/mobile";
2
+ export declare const withoutMobilePath: (href?: string) => string;
@@ -2,9 +2,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
2
2
  exports.Accordion = void 0;
3
3
  const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
4
  const uni_jsx_1 = require("@redneckz/uni-jsx");
5
+ const renderBlocksList_1 = require("../../ui-kit/BlocksList/renderBlocksList");
6
+ const BlockWrapper_1 = require("../../ui-kit/BlockWrapper");
5
7
  const Heading_1 = require("../../ui-kit/Heading/Heading");
6
8
  const AccordionItem_1 = require("./AccordionItem");
7
- exports.Accordion = (0, uni_jsx_1.JSX)(({ title, description, accordionItems, context, className = '', bordered }) => {
8
- return ((0, jsx_runtime_1.jsxs)("section", { className: `py-6 px-4 font-sans bg-white text-primary-text ${className}`, children: [title ? (0, jsx_runtime_1.jsx)(Heading_1.Heading, { headingType: "h3", className: "mb-2 text-center", title: title }) : null, description ? (0, jsx_runtime_1.jsx)("div", { className: "mb-5 text-m-light text-center", children: description }) : null, accordionItems?.length ? ((0, jsx_runtime_1.jsx)("ul", { className: "list-none m-0 p-0", children: accordionItems.map((item, i) => ((0, jsx_runtime_1.jsx)(AccordionItem_1.AccordionItem, { ...item, context: context, bordered: bordered }, `AccordionItem_${i}`))) })) : null] }));
9
+ const AccordionItemsList_1 = require("./AccordionItemsList");
10
+ exports.Accordion = (0, uni_jsx_1.JSX)(({ title, description, accordionItems, context, className = '', bordered, ...rest }) => {
11
+ return ((0, jsx_runtime_1.jsxs)(BlockWrapper_1.BlockWrapper, { context: context, className: `py-6 px-4 font-sans bg-white text-primary-text ${className}`, ...rest, children: [title ? (0, jsx_runtime_1.jsx)(Heading_1.Heading, { headingType: "h3", className: "mb-2 text-center", title: title }) : null, description ? (0, jsx_runtime_1.jsx)("div", { className: "mb-5 text-m-light text-center", children: description }) : null, accordionItems?.length ? ((0, jsx_runtime_1.jsx)(AccordionItemsList_1.AccordionItemsList, { children: accordionItems.map((item, i) => ((0, jsx_runtime_1.jsx)(AccordionItem_1.AccordionItem, { context: context, bordered: bordered, hasContent: Boolean(item.blocks?.length), ...item, children: (0, renderBlocksList_1.renderBlocksList)({ blocks: item.blocks, context, className: '!p-0 mb-5' }) }, `AccordionItem_${i}`))) })) : null] }));
9
12
  });
10
13
  //# sourceMappingURL=Accordion.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Accordion.js","sourceRoot":"","sources":["../../../src/components/Accordion/Accordion.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AAExC,0DAAuD;AAEvD,mDAAgD;AAInC,QAAA,SAAS,GAAG,IAAA,aAAG,EAC1B,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,cAAc,EAAE,OAAO,EAAE,SAAS,GAAG,EAAE,EAAE,QAAQ,EAAE,EAAE,EAAE;IAC5E,OAAO,CACL,qCAAS,SAAS,EAAE,kDAAkD,SAAS,EAAE,aAC9E,KAAK,CAAC,CAAC,CAAC,uBAAC,iBAAO,IAAC,WAAW,EAAC,IAAI,EAAC,SAAS,EAAC,kBAAkB,EAAC,KAAK,EAAE,KAAK,GAAI,CAAC,CAAC,CAAC,IAAI,EACtF,WAAW,CAAC,CAAC,CAAC,gCAAK,SAAS,EAAC,+BAA+B,YAAE,WAAW,GAAO,CAAC,CAAC,CAAC,IAAI,EACvF,cAAc,EAAE,MAAM,CAAC,CAAC,CAAC,CACxB,+BAAI,SAAS,EAAC,mBAAmB,YAC9B,cAAc,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC,CAC/B,uBAAC,6BAAa,OAER,IAAI,EACR,OAAO,EAAE,OAAO,EAChB,QAAQ,EAAE,QAAQ,IAHb,iBAAiB,CAAC,EAAE,CAIzB,CACH,CAAC,GACC,CACN,CAAC,CAAC,CAAC,IAAI,IACA,CACX,CAAC;AACJ,CAAC,CACF,CAAC"}
1
+ {"version":3,"file":"Accordion.js","sourceRoot":"","sources":["../../../src/components/Accordion/Accordion.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AAExC,+EAA4E;AAC5E,4DAAyD;AACzD,0DAAuD;AAEvD,mDAAgD;AAChD,6DAA0D;AAI7C,QAAA,SAAS,GAAG,IAAA,aAAG,EAC1B,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,cAAc,EAAE,OAAO,EAAE,SAAS,GAAG,EAAE,EAAE,QAAQ,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE;IACrF,OAAO,CACL,wBAAC,2BAAY,IACX,OAAO,EAAE,OAAO,EAChB,SAAS,EAAE,kDAAkD,SAAS,EAAE,KACpE,IAAI,aAEP,KAAK,CAAC,CAAC,CAAC,uBAAC,iBAAO,IAAC,WAAW,EAAC,IAAI,EAAC,SAAS,EAAC,kBAAkB,EAAC,KAAK,EAAE,KAAK,GAAI,CAAC,CAAC,CAAC,IAAI,EACtF,WAAW,CAAC,CAAC,CAAC,gCAAK,SAAS,EAAC,+BAA+B,YAAE,WAAW,GAAO,CAAC,CAAC,CAAC,IAAI,EACvF,cAAc,EAAE,MAAM,CAAC,CAAC,CAAC,CACxB,uBAAC,uCAAkB,cAChB,cAAc,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC,CAC/B,uBAAC,6BAAa,IAEZ,OAAO,EAAE,OAAO,EAChB,QAAQ,EAAE,QAAQ,EAClB,UAAU,EAAE,OAAO,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,CAAC,KACpC,IAAI,YAEP,IAAA,mCAAgB,EAAC,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,CAAC,IANtE,iBAAiB,CAAC,EAAE,CAOX,CACjB,CAAC,GACiB,CACtB,CAAC,CAAC,CAAC,IAAI,IACK,CAChB,CAAC;AACJ,CAAC,CACF,CAAC"}
@@ -1,11 +1,8 @@
1
1
  import type { AlignType } from '../../model/AlignType';
2
2
  import type { BlockVersion } from '../../model/BlockVersion';
3
+ import type { HeadlineCommonProps } from '../../model/HeadlineType';
3
4
  import type { Picture } from '../../model/Picture';
4
5
  import type { BlockDef } from '../../ui-kit/BlocksList/BlocksListProps';
5
- import type { HeadlineCommonProps } from '../../model/HeadlineType';
6
- /**
7
- * @title Элемент списка
8
- */
9
6
  export interface AccordionItemCommonProps {
10
7
  /**
11
8
  * @title Название
@@ -14,8 +11,6 @@ export interface AccordionItemCommonProps {
14
11
  label?: string;
15
12
  /** @title Отображать в раскрытом виде */
16
13
  isExpanded?: boolean;
17
- /** @title Блоки */
18
- blocks?: BlockDef[];
19
14
  /**
20
15
  * @title Отображать/скрывать обводку элемента
21
16
  * @default false
@@ -23,6 +18,13 @@ export interface AccordionItemCommonProps {
23
18
  bordered?: boolean;
24
19
  labelIcon?: Picture;
25
20
  }
21
+ /**
22
+ * @title Элемент списка
23
+ */
24
+ export interface AccordionItem extends AccordionItemCommonProps {
25
+ /** @title Блоки */
26
+ blocks?: BlockDef[];
27
+ }
26
28
  /**
27
29
  * @title Аккордеон
28
30
  */
@@ -34,7 +36,7 @@ export declare type AccordionContent = HeadlineCommonProps & {
34
36
  accordionAlignTitle?: AlignType;
35
37
  version?: BlockVersion;
36
38
  /** @title Список */
37
- accordionItems?: AccordionItemCommonProps[];
39
+ accordionItems?: AccordionItem[];
38
40
  /**
39
41
  * @title Отображать/скрывать обводку у элемента списка
40
42
  * @default false
@@ -1,5 +1,2 @@
1
- import type { UniBlockProps } from '../../model/ContentPageDef';
2
- import type { AccordionItemCommonProps } from './AccordionContent';
3
- export interface AccordionItemProps extends AccordionItemCommonProps, UniBlockProps {
4
- }
1
+ import type { AccordionItemProps } from './AccordionItemProps';
5
2
  export declare const AccordionItem: import("@redneckz/uni-jsx").UNIComponent<AccordionItemProps, any, any>;
@@ -2,15 +2,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
2
2
  exports.AccordionItem = void 0;
3
3
  const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
4
  const uni_jsx_1 = require("@redneckz/uni-jsx");
5
+ const Foldable_1 = require("../../ui-kit/Foldable/Foldable");
6
+ const FoldableSection_1 = require("../../ui-kit/Foldable/FoldableSection");
5
7
  const Img_1 = require("../../ui-kit/Img/Img");
6
- const AccordionItemInner_1 = require("./AccordionItemInner");
7
- const useActiveHandler_1 = require("./useActiveHandler");
8
- exports.AccordionItem = (0, uni_jsx_1.JSX)(({ label, labelIcon, blocks, bordered, context }) => {
9
- const { hasContent, icon, handleToggle } = (0, useActiveHandler_1.useActiveHandler)({ blocks });
10
- return ((0, jsx_runtime_1.jsxs)("li", { className: `${borderedLiClass(bordered)} border-solid border-main-divider`, children: [(0, jsx_runtime_1.jsxs)("button", { className: `border-none bg-transparent flex justify-between text-left w-full font-sans text-primary-text
11
- ${bordered ? '' : 'py-[14px] px-0'}
12
- ${hasContent ? 'group cursor-pointer' : ''}`, onClick: handleToggle, children: [(0, jsx_runtime_1.jsxs)("span", { className: `text-m-title-xs font-medium pr-2.5 flex ${hasContent ? 'group-hover:text-primary-main' : ''}`, children: [labelIcon ? ((0, jsx_runtime_1.jsx)(Img_1.Img, { image: labelIcon, className: "mr-3 flex-shrink-0", width: "24", height: "24", asSVG: true })) : null, label] }), hasContent ? ((0, jsx_runtime_1.jsx)(Img_1.Img, { className: "flex-shrink-0", image: icon, width: "24", height: "24", asSVG: true })) : null] }), hasContent ? (0, jsx_runtime_1.jsx)(AccordionItemInner_1.AccordionItemInner, { blocks: blocks, context: context }) : null] }));
13
- });
8
+ const icons = ['PlusIcon', 'MinusIcon'];
9
+ exports.AccordionItem = (0, uni_jsx_1.JSX)(({ label = '', labelIcon, bordered, children, hasContent = true }) => ((0, jsx_runtime_1.jsx)("li", { className: `${borderedLiClass(bordered)} border-solid border-main-divider`, children: (0, jsx_runtime_1.jsx)(Foldable_1.Foldable, { isFoldButtonOnTop: true, renderFoldableSection: ({ isUnfolded }) => ((0, jsx_runtime_1.jsx)(FoldableSection_1.FoldableSection, { className: "flex flex-wrap group-last:last:pb-0", isUnfolded: isUnfolded, children: children })), renderFoldButton: ({ isUnfolded, onToggle }) => ((0, jsx_runtime_1.jsx)(FoldButton, { className: bordered ? '' : 'py-[14px] px-0', label: label, icon: icons[Number(isUnfolded)], primaryIcon: labelIcon, hasContent: hasContent, onClick: onToggle })) }) })));
10
+ const FoldButton = (0, uni_jsx_1.JSX)(({ className, hasContent, icon, label, primaryIcon, onClick }) => ((0, jsx_runtime_1.jsxs)("button", { className: `border-none bg-transparent flex justify-between text-left w-full font-sans text-primary-text
11
+ ${className}
12
+ ${hasContent ? 'group cursor-pointer' : ''}`, onClick: onClick, children: [(0, jsx_runtime_1.jsxs)("span", { className: `text-m-title-xs font-medium pr-2.5 flex ${hasContent ? 'group-hover:text-primary-main' : ''}`, children: [primaryIcon ? ((0, jsx_runtime_1.jsx)(Img_1.Img, { image: primaryIcon, className: "mr-3 flex-shrink-0", width: "24", height: "24", asSVG: true })) : null, label] }), hasContent ? ((0, jsx_runtime_1.jsx)(Img_1.Img, { className: "flex-shrink-0", image: icon, width: "24", height: "24", asSVG: true })) : null] })));
14
13
  function borderedLiClass(bordered) {
15
14
  return bordered ? 'border p-4 rounded mb-4' : 'border-0 border-b last:border-b-0';
16
15
  }
@@ -1 +1 @@
1
- {"version":3,"file":"AccordionItem.js","sourceRoot":"","sources":["../../../src/components/Accordion/AccordionItem.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AAExC,8CAA2C;AAE3C,6DAA0D;AAC1D,yDAAsD;AAIzC,QAAA,aAAa,GAAG,IAAA,aAAG,EAC9B,CAAC,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,OAAO,EAAE,EAAE,EAAE;IAClD,MAAM,EAAE,UAAU,EAAE,IAAI,EAAE,YAAY,EAAE,GAAG,IAAA,mCAAgB,EAAC,EAAE,MAAM,EAAE,CAAC,CAAC;IAExE,OAAO,CACL,gCAAI,SAAS,EAAE,GAAG,eAAe,CAAC,QAAQ,CAAC,mCAAmC,aAC5E,oCACE,SAAS,EAAE;YACT,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,gBAAgB;YAChC,UAAU,CAAC,CAAC,CAAC,sBAAsB,CAAC,CAAC,CAAC,EAAE,EAAE,EAC5C,OAAO,EAAE,YAAY,aAErB,kCACE,SAAS,EAAE,2CACT,UAAU,CAAC,CAAC,CAAC,+BAA+B,CAAC,CAAC,CAAC,EACjD,EAAE,aAED,SAAS,CAAC,CAAC,CAAC,CACX,uBAAC,SAAG,IAAC,KAAK,EAAE,SAAS,EAAE,SAAS,EAAC,oBAAoB,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,KAAK,SAAG,CACtF,CAAC,CAAC,CAAC,IAAI,EACP,KAAK,IACD,EACN,UAAU,CAAC,CAAC,CAAC,CACZ,uBAAC,SAAG,IAAC,SAAS,EAAC,eAAe,EAAC,KAAK,EAAE,IAAI,EAAE,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,KAAK,SAAG,CAC5E,CAAC,CAAC,CAAC,IAAI,IACD,EACR,UAAU,CAAC,CAAC,CAAC,uBAAC,uCAAkB,IAAC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,GAAI,CAAC,CAAC,CAAC,IAAI,IAC1E,CACN,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,SAAS,eAAe,CAAC,QAAkB;IACzC,OAAO,QAAQ,CAAC,CAAC,CAAC,yBAAyB,CAAC,CAAC,CAAC,mCAAmC,CAAC;AACpF,CAAC"}
1
+ {"version":3,"file":"AccordionItem.js","sourceRoot":"","sources":["../../../src/components/Accordion/AccordionItem.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AAExC,6DAA0D;AAC1D,2EAAwE;AAExE,8CAA2C;AAG3C,MAAM,KAAK,GAAe,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC;AAEvC,QAAA,aAAa,GAAG,IAAA,aAAG,EAC9B,CAAC,EAAE,KAAK,GAAG,EAAE,EAAE,SAAS,EAAE,QAAQ,EAAE,QAAQ,EAAE,UAAU,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC,CACpE,+BAAI,SAAS,EAAE,GAAG,eAAe,CAAC,QAAQ,CAAC,mCAAmC,YAC5E,uBAAC,mBAAQ,IACP,iBAAiB,EAAE,IAAI,EACvB,qBAAqB,EAAE,CAAC,EAAE,UAAU,EAAE,EAAE,EAAE,CAAC,CACzC,uBAAC,iCAAe,IAAC,SAAS,EAAC,qCAAqC,EAAC,UAAU,EAAE,UAAU,YACpF,QAAQ,GACO,CACnB,EACD,gBAAgB,EAAE,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC,CAC9C,uBAAC,UAAU,IACT,SAAS,EAAE,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,gBAAgB,EAC3C,KAAK,EAAE,KAAK,EACZ,IAAI,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,EAC/B,WAAW,EAAE,SAAS,EACtB,UAAU,EAAE,UAAU,EACtB,OAAO,EAAE,QAAQ,GACjB,CACH,GACD,GACC,CACN,CACF,CAAC;AAWF,MAAM,UAAU,GAAG,IAAA,aAAG,EACpB,CAAC,EAAE,SAAS,EAAE,UAAU,EAAE,IAAI,EAAE,KAAK,EAAE,WAAW,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC,CAChE,oCACE,SAAS,EAAE;IACb,SAAS;IACT,UAAU,CAAC,CAAC,CAAC,sBAAsB,CAAC,CAAC,CAAC,EAAE,EAAE,EACxC,OAAO,EAAE,OAAO,aAEhB,kCACE,SAAS,EAAE,2CACT,UAAU,CAAC,CAAC,CAAC,+BAA+B,CAAC,CAAC,CAAC,EACjD,EAAE,aAED,WAAW,CAAC,CAAC,CAAC,CACb,uBAAC,SAAG,IAAC,KAAK,EAAE,WAAW,EAAE,SAAS,EAAC,oBAAoB,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,KAAK,SAAG,CACxF,CAAC,CAAC,CAAC,IAAI,EACP,KAAK,IACD,EACN,UAAU,CAAC,CAAC,CAAC,CACZ,uBAAC,SAAG,IAAC,SAAS,EAAC,eAAe,EAAC,KAAK,EAAE,IAAI,EAAE,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,KAAK,SAAG,CAC5E,CAAC,CAAC,CAAC,IAAI,IACD,CACV,CACF,CAAC;AAEF,SAAS,eAAe,CAAC,QAAkB;IACzC,OAAO,QAAQ,CAAC,CAAC,CAAC,yBAAyB,CAAC,CAAC,CAAC,mCAAmC,CAAC;AACpF,CAAC"}
@@ -0,0 +1,5 @@
1
+ import type { UniBlockProps } from '../../model/ContentPageDef';
2
+ import type { AccordionItemCommonProps } from './AccordionContent';
3
+ export interface AccordionItemProps extends AccordionItemCommonProps, UniBlockProps {
4
+ hasContent?: boolean;
5
+ }
@@ -0,0 +1,2 @@
1
+ Object.defineProperty(exports, "__esModule", { value: true });
2
+ //# sourceMappingURL=AccordionItemProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AccordionItemProps.js","sourceRoot":"","sources":["../../../src/components/Accordion/AccordionItemProps.ts"],"names":[],"mappings":""}
@@ -0,0 +1 @@
1
+ export declare const AccordionItemsList: import("@redneckz/uni-jsx").UNIComponent<{}, any, any>;
@@ -0,0 +1,6 @@
1
+ Object.defineProperty(exports, "__esModule", { value: true });
2
+ exports.AccordionItemsList = void 0;
3
+ const jsx_runtime_1 = require("@redneckz/uni-jsx/jsx-runtime");
4
+ const uni_jsx_1 = require("@redneckz/uni-jsx");
5
+ exports.AccordionItemsList = (0, uni_jsx_1.JSX)(({ children }) => ((0, jsx_runtime_1.jsx)("ul", { className: "list-none m-0 p-0", children: children })));
6
+ //# sourceMappingURL=AccordionItemsList.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AccordionItemsList.js","sourceRoot":"","sources":["../../../src/components/Accordion/AccordionItemsList.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AAE3B,QAAA,kBAAkB,GAAG,IAAA,aAAG,EAAC,CAAC,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC,CACtD,+BAAI,SAAS,EAAC,mBAAmB,YAAE,QAAQ,GAAM,CAClD,CAAC,CAAC"}
@@ -28,7 +28,7 @@ const renderBenefits = (benefitList, benefitsBlockVersion) => {
28
28
  return ((0, jsx_runtime_1.jsx)("div", { className: "flex flex-wrap w-full justify-center gap-x-20 mt-8", children: benefitList.map(renderStep(benefitsBlockVersion)) }));
29
29
  };
30
30
  const setIconVersion = (benefitIcon, benefitsBlockVersion) => {
31
- if (!benefitIcon.icon) {
31
+ if (!benefitIcon.icon || benefitIcon?.iconVersion) {
32
32
  return benefitIcon;
33
33
  }
34
34
  benefitIcon.iconVersion = benefitsBlockVersion === 'secondary' ? 'white' : 'normal';
@@ -1 +1 @@
1
- {"version":3,"file":"BenefitsBlock.js","sourceRoot":"","sources":["../../../src/components/BenefitsBlock/BenefitsBlock.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AAIxC,4DAAyD;AACzD,0DAAuD;AACvD,8CAA2C;AAM3C,MAAM,qBAAqB,GAAG;IAC5B,OAAO,EAAE,UAAU;IACnB,SAAS,EAAE,iBAAiB;CAC7B,CAAC;AAEF,MAAM,oBAAoB,GAAG;IAC3B,OAAO,EAAE,EAAE;IACX,SAAS,EAAE,YAAY;CACxB,CAAC;AAEF,MAAM,2BAA2B,GAAG;IAClC,OAAO,EAAE,qBAAqB;IAC9B,SAAS,EAAE,uBAAuB;CACnC,CAAC;AAEF,MAAM,oBAAoB,GAAG;IAC3B,OAAO,EAAE,mCAAmC;IAC5C,SAAS,EAAE,wBAAwB;CACpC,CAAC;AAEW,QAAA,aAAa,GAAG,IAAA,aAAG,EAC9B,CAAC,EAAE,SAAS,GAAG,EAAE,EAAE,KAAK,EAAE,WAAW,EAAE,oBAAoB,GAAG,SAAS,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE;IACpF,OAAO,CACL,wBAAC,2BAAY,IACX,SAAS,EAAE,+DAA+D,SAAS,IAAI,qBAAqB,CAAC,oBAAoB,CAAC,EAAE,KAChI,IAAI,aAEP,KAAK,CAAC,CAAC,CAAC,CACP,uBAAC,iBAAO,IACN,WAAW,EAAC,IAAI,EAChB,EAAE,EAAC,IAAI,EACP,SAAS,EAAE,6BAA6B,oBAAoB,CAAC,oBAAoB,CAAC,EAAE,EACpF,KAAK,EAAE,KAAK,GACZ,CACH,CAAC,CAAC,CAAC,IAAI,EACP,WAAW,EAAE,MAAM,CAAC,CAAC,CAAC,cAAc,CAAC,WAAW,EAAE,oBAAoB,CAAC,CAAC,CAAC,CAAC,IAAI,IAClE,CAChB,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,MAAM,cAAc,GAAG,CACrB,WAAoC,EACpC,oBAAkC,EAClC,EAAE;IACF,OAAO,CACL,gCAAK,SAAS,EAAC,oDAAoD,YAChE,WAAW,CAAC,GAAG,CAAC,UAAU,CAAC,oBAAoB,CAAC,CAAC,GAC9C,CACP,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,cAAc,GAAG,CAAC,WAAoB,EAAE,oBAAkC,EAAE,EAAE;IAClF,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE;QACrB,OAAO,WAAW,CAAC;KACpB;IACD,WAAW,CAAC,WAAW,GAAG,oBAAoB,KAAK,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC;IAEpF,OAAO,WAAW,CAAC;AACrB,CAAC,CAAC;AAEF,MAAM,UAAU,GACd,CAAC,oBAAkC,EAAE,EAAE,CAAC,CAAC,OAA8B,EAAE,CAAS,EAAE,EAAE;IACpF,MAAM,WAAW,GAAG,CAAC,OAAO,EAAE,WAAW,IAAI,SAAS,CAAmB,CAAC;IAE1E,OAAO,CACL,iCAAqB,SAAS,EAAC,iDAAiD,aAC7E,OAAO,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,CACrB,uBAAC,SAAG,IACF,SAAS,EAAE,mDAAmD,oBAAoB,CAAC,oBAAoB,CAAC,EAAE,EAC1G,KAAK,EAAE,cAAc,CAAC,OAAO,CAAC,IAAI,EAAE,oBAAoB,CAAC,EACzD,KAAK,SACL,CACH,CAAC,CAAC,CAAC,IAAI,EACP,OAAO,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC,uBAAC,SAAG,IAAC,KAAK,EAAE,OAAO,CAAC,IAAI,GAAI,CAAC,CAAC,CAAC,IAAI,EACzD,iCAAK,SAAS,EAAC,MAAM,aAClB,OAAO,EAAE,KAAK,CAAC,CAAC,CAAC,CAChB,+BAAI,SAAS,EAAE,eAAe,oBAAoB,CAAC,oBAAoB,CAAC,EAAE,YACvE,OAAO,CAAC,KAAK,GACX,CACN,CAAC,CAAC,CAAC,IAAI,EACP,iBAAiB,CAAC,WAAW,EAAE,oBAAoB,CAAC,IACjD,KAhBE,MAAM,CAAC,CAAC,CAAC,CAiBb,CACP,CAAC;AACJ,CAAC,CAAC;AAEJ,MAAM,iBAAiB,GAAG,CAAC,WAA2B,EAAE,oBAAkC,EAAE,EAAE;IAC5F,MAAM,WAAW,GAAG,WAAW,CAAC,CAAC,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC,CAAC,IAAI,CAAC;IAClE,IAAI,CAAC,WAAW,EAAE;QAChB,OAAO,IAAI,CAAC;KACb;IAED,OAAO,WAAW,CAAC,CAAC,CAAC,CACnB,gCAAK,SAAS,EAAE,qBAAqB,2BAA2B,CAAC,oBAAoB,CAAC,EAAE,YACrF,WAAW,KAAK,MAAM;YACrB,CAAC,CAAC,iBAAiB,CAAC,WAA6B,CAAC;YAClD,CAAC,CAAC,iBAAiB,CAAC,WAA6B,CAAC,GAChD,CACP,CAAC,CAAC,CAAC,IAAI,CAAC;AACX,CAAC,CAAC;AAEF,MAAM,iBAAiB,GAAG,CAAC,WAA4B,EAAE,EAAE,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;AAEpG,MAAM,iBAAiB,GAAG,CAAC,WAA4B,EAAE,EAAE;IACzD,MAAM,aAAa,GAAG,WAAW,EAAE,OAAO,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,EAAE,CAAC;IAEnE,OAAO,WAAW,EAAE,KAAK,IAAI,WAAW,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,CAC1D,+BAAI,SAAS,EAAE,aAAa,YACzB,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAC/B,yCAAkC,CAAC,IAA1B,mBAAmB,CAAC,EAAE,CAAU,CAC1C,CAAC,GACC,CACN,CAAC,CAAC,CAAC,IAAI,CAAC;AACX,CAAC,CAAC"}
1
+ {"version":3,"file":"BenefitsBlock.js","sourceRoot":"","sources":["../../../src/components/BenefitsBlock/BenefitsBlock.tsx"],"names":[],"mappings":";;;AAAA,+CAAwC;AAIxC,4DAAyD;AACzD,0DAAuD;AACvD,8CAA2C;AAM3C,MAAM,qBAAqB,GAAG;IAC5B,OAAO,EAAE,UAAU;IACnB,SAAS,EAAE,iBAAiB;CAC7B,CAAC;AAEF,MAAM,oBAAoB,GAAG;IAC3B,OAAO,EAAE,EAAE;IACX,SAAS,EAAE,YAAY;CACxB,CAAC;AAEF,MAAM,2BAA2B,GAAG;IAClC,OAAO,EAAE,qBAAqB;IAC9B,SAAS,EAAE,uBAAuB;CACnC,CAAC;AAEF,MAAM,oBAAoB,GAAG;IAC3B,OAAO,EAAE,mCAAmC;IAC5C,SAAS,EAAE,wBAAwB;CACpC,CAAC;AAEW,QAAA,aAAa,GAAG,IAAA,aAAG,EAC9B,CAAC,EAAE,SAAS,GAAG,EAAE,EAAE,KAAK,EAAE,WAAW,EAAE,oBAAoB,GAAG,SAAS,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE;IACpF,OAAO,CACL,wBAAC,2BAAY,IACX,SAAS,EAAE,+DAA+D,SAAS,IAAI,qBAAqB,CAAC,oBAAoB,CAAC,EAAE,KAChI,IAAI,aAEP,KAAK,CAAC,CAAC,CAAC,CACP,uBAAC,iBAAO,IACN,WAAW,EAAC,IAAI,EAChB,EAAE,EAAC,IAAI,EACP,SAAS,EAAE,6BAA6B,oBAAoB,CAAC,oBAAoB,CAAC,EAAE,EACpF,KAAK,EAAE,KAAK,GACZ,CACH,CAAC,CAAC,CAAC,IAAI,EACP,WAAW,EAAE,MAAM,CAAC,CAAC,CAAC,cAAc,CAAC,WAAW,EAAE,oBAAoB,CAAC,CAAC,CAAC,CAAC,IAAI,IAClE,CAChB,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,MAAM,cAAc,GAAG,CACrB,WAAoC,EACpC,oBAAkC,EAClC,EAAE;IACF,OAAO,CACL,gCAAK,SAAS,EAAC,oDAAoD,YAChE,WAAW,CAAC,GAAG,CAAC,UAAU,CAAC,oBAAoB,CAAC,CAAC,GAC9C,CACP,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,cAAc,GAAG,CAAC,WAAoB,EAAE,oBAAkC,EAAE,EAAE;IAClF,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,WAAW,EAAE,WAAW,EAAE;QACjD,OAAO,WAAW,CAAC;KACpB;IACD,WAAW,CAAC,WAAW,GAAG,oBAAoB,KAAK,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC;IAEpF,OAAO,WAAW,CAAC;AACrB,CAAC,CAAC;AAEF,MAAM,UAAU,GACd,CAAC,oBAAkC,EAAE,EAAE,CAAC,CAAC,OAA8B,EAAE,CAAS,EAAE,EAAE;IACpF,MAAM,WAAW,GAAG,CAAC,OAAO,EAAE,WAAW,IAAI,SAAS,CAAmB,CAAC;IAE1E,OAAO,CACL,iCAAqB,SAAS,EAAC,iDAAiD,aAC7E,OAAO,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,CACrB,uBAAC,SAAG,IACF,SAAS,EAAE,mDAAmD,oBAAoB,CAAC,oBAAoB,CAAC,EAAE,EAC1G,KAAK,EAAE,cAAc,CAAC,OAAO,CAAC,IAAI,EAAE,oBAAoB,CAAC,EACzD,KAAK,SACL,CACH,CAAC,CAAC,CAAC,IAAI,EACP,OAAO,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC,uBAAC,SAAG,IAAC,KAAK,EAAE,OAAO,CAAC,IAAI,GAAI,CAAC,CAAC,CAAC,IAAI,EACzD,iCAAK,SAAS,EAAC,MAAM,aAClB,OAAO,EAAE,KAAK,CAAC,CAAC,CAAC,CAChB,+BAAI,SAAS,EAAE,eAAe,oBAAoB,CAAC,oBAAoB,CAAC,EAAE,YACvE,OAAO,CAAC,KAAK,GACX,CACN,CAAC,CAAC,CAAC,IAAI,EACP,iBAAiB,CAAC,WAAW,EAAE,oBAAoB,CAAC,IACjD,KAhBE,MAAM,CAAC,CAAC,CAAC,CAiBb,CACP,CAAC;AACJ,CAAC,CAAC;AAEJ,MAAM,iBAAiB,GAAG,CAAC,WAA2B,EAAE,oBAAkC,EAAE,EAAE;IAC5F,MAAM,WAAW,GAAG,WAAW,CAAC,CAAC,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC,CAAC,IAAI,CAAC;IAClE,IAAI,CAAC,WAAW,EAAE;QAChB,OAAO,IAAI,CAAC;KACb;IAED,OAAO,WAAW,CAAC,CAAC,CAAC,CACnB,gCAAK,SAAS,EAAE,qBAAqB,2BAA2B,CAAC,oBAAoB,CAAC,EAAE,YACrF,WAAW,KAAK,MAAM;YACrB,CAAC,CAAC,iBAAiB,CAAC,WAA6B,CAAC;YAClD,CAAC,CAAC,iBAAiB,CAAC,WAA6B,CAAC,GAChD,CACP,CAAC,CAAC,CAAC,IAAI,CAAC;AACX,CAAC,CAAC;AAEF,MAAM,iBAAiB,GAAG,CAAC,WAA4B,EAAE,EAAE,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;AAEpG,MAAM,iBAAiB,GAAG,CAAC,WAA4B,EAAE,EAAE;IACzD,MAAM,aAAa,GAAG,WAAW,EAAE,OAAO,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,EAAE,CAAC;IAEnE,OAAO,WAAW,EAAE,KAAK,IAAI,WAAW,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,CAC1D,+BAAI,SAAS,EAAE,aAAa,YACzB,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAC/B,yCAAkC,CAAC,IAA1B,mBAAmB,CAAC,EAAE,CAAU,CAC1C,CAAC,GACC,CACN,CAAC,CAAC,CAAC,IAAI,CAAC;AACX,CAAC,CAAC"}
@@ -1,7 +1,6 @@
1
1
  export declare const Blocks: {
2
2
  Accordion: import("@redneckz/uni-jsx").UNIComponent<import("./Accordion/Accordion").AccordionProps, any, any>;
3
3
  ComparisonTable: import("@redneckz/uni-jsx").UNIComponent<import("./ComparisonTable/ComparisonTable").ComparisonTableProps, any, any>;
4
- ExchangeRateTile: import("@redneckz/uni-jsx").UNIComponent<import("./ExchangeRateTile/ExchangeRateTile").ExchangeRateTileProps, any, any>;
5
4
  Footer: import("@redneckz/uni-jsx").UNIComponent<import("./Footer/Footer").FooterProps, any, any>;
6
5
  Gallery: import("@redneckz/uni-jsx").UNIComponent<import("./Gallery/GalleryProps").GalleryProps, any, any>;
7
6
  Header: import("@redneckz/uni-jsx").UNIComponent<import("./Header/Header").HeaderProps, any, any>;
@@ -2,7 +2,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
2
2
  exports.Blocks = void 0;
3
3
  const Accordion_1 = require("./Accordion/Accordion");
4
4
  const ComparisonTable_1 = require("./ComparisonTable/ComparisonTable");
5
- const ExchangeRateTile_1 = require("./ExchangeRateTile/ExchangeRateTile");
6
5
  const Footer_1 = require("./Footer/Footer");
7
6
  const Gallery_1 = require("./Gallery/Gallery");
8
7
  const Header_1 = require("./Header/Header");
@@ -19,7 +18,6 @@ const TextBlock_1 = require("./TextBlock/TextBlock");
19
18
  exports.Blocks = {
20
19
  Accordion: Accordion_1.Accordion,
21
20
  ComparisonTable: ComparisonTable_1.ComparisonTable,
22
- ExchangeRateTile: ExchangeRateTile_1.ExchangeRateTile,
23
21
  Footer: Footer_1.Footer,
24
22
  Gallery: Gallery_1.Gallery,
25
23
  Header: Header_1.Header,