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

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 (1661) 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 +380 -575
  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 +43 -0
  12. package/bundle/components/Accordion/AccordionItem.d.ts +5 -0
  13. package/bundle/components/Accordion/AccordionItem.mobile.d.ts +5 -0
  14. package/bundle/components/BaseTile/BaseTile.d.ts +5 -0
  15. package/bundle/components/BaseTile/BaseTileProps.d.ts +15 -0
  16. package/bundle/components/BaseTile/getTileHeadingType.d.ts +1 -0
  17. package/bundle/components/BaseTile/getTileMinHeight.d.ts +1 -0
  18. package/bundle/components/BaseTile/getTileRightPadding.d.ts +1 -0
  19. package/bundle/components/BenefitsBlock/BenefitsBlock.d.ts +5 -0
  20. package/bundle/components/BenefitsBlock/BenefitsBlockContent.d.ts +52 -0
  21. package/bundle/components/Blocks.d.ts +36 -0
  22. package/bundle/components/Blocks.mobile.d.ts +17 -0
  23. package/bundle/components/Bonus/Bonus.d.ts +5 -0
  24. package/bundle/components/Bonus/BonusContent.d.ts +45 -0
  25. package/bundle/components/BonusBenefitsBlock/BonusBenefitsBlock.d.ts +5 -0
  26. package/bundle/components/BonusBenefitsBlock/BonusBenefitsBlockContent.d.ts +15 -0
  27. package/bundle/components/BonusBenefitsBlock/getElementsColsValue.d.ts +1 -0
  28. package/bundle/components/Calculator/BonusCalculatorForm.d.ts +5 -0
  29. package/bundle/components/Calculator/Calculator.d.ts +5 -0
  30. package/bundle/components/Calculator/CalculatorContent.d.ts +129 -0
  31. package/bundle/components/Calculator/CalculatorValueBlock.d.ts +8 -0
  32. package/bundle/components/Calculator/CreditCalculatorForm.d.ts +7 -0
  33. package/bundle/components/Calculator/DepositCalculatorForm.d.ts +5 -0
  34. package/bundle/components/Calculator/EmbeddableCalcBlocks.d.ts +9 -0
  35. package/bundle/components/Calculator/Rate.d.ts +7 -0
  36. package/bundle/components/Calculator/constants.d.ts +16 -0
  37. package/bundle/components/Calculator/getBonus.d.ts +2 -0
  38. package/bundle/components/Calculator/getCreditRate.d.ts +7 -0
  39. package/bundle/components/Calculator/getDefaultMonths.d.ts +1 -0
  40. package/bundle/components/Calculator/getDefaultSum.d.ts +1 -0
  41. package/bundle/components/Calculator/getMonthlyPayment.d.ts +6 -0
  42. package/bundle/components/Calculator/renderButtonSection.d.ts +2 -0
  43. package/bundle/components/Calculator/renderCalculatorBlock.d.ts +3 -0
  44. package/bundle/components/Calculator/renderFootnote.d.ts +2 -0
  45. package/bundle/components/Calculator/renderInitialFeeInput.d.ts +6 -0
  46. package/bundle/components/Calculator/renderMonthsInput.d.ts +8 -0
  47. package/bundle/components/Calculator/renderPaymentTypeSelector.d.ts +6 -0
  48. package/bundle/components/Calculator/renderProposal.d.ts +2 -0
  49. package/bundle/components/Calculator/renderProposalMortgage.d.ts +8 -0
  50. package/bundle/components/Calculator/renderRealEstateValue.d.ts +6 -0
  51. package/bundle/components/Calculator/renderWantedSumInput.d.ts +11 -0
  52. package/bundle/components/Calculator/useBonusCalculatorParams.d.ts +36 -0
  53. package/bundle/components/Calculator/useCalculatorParams.d.ts +1 -0
  54. package/bundle/components/Calculator/useCreditCalculatorParams.d.ts +27 -0
  55. package/bundle/components/CardTransfer/CardTransfer.d.ts +5 -0
  56. package/bundle/components/CardTransfer/CardTransferContent.d.ts +10 -0
  57. package/bundle/components/Catalog/Catalog.d.ts +5 -0
  58. package/bundle/components/Catalog/CatalogCard.d.ts +7 -0
  59. package/bundle/components/Catalog/CatalogContent.d.ts +25 -0
  60. package/bundle/components/ComparisonTable/ComparisonTable.d.ts +5 -0
  61. package/bundle/components/ComparisonTable/ComparisonTable.mobile.d.ts +5 -0
  62. package/bundle/components/ComparisonTable/ComparisonTableBody.d.ts +12 -0
  63. package/bundle/components/ComparisonTable/ComparisonTableColumnHeaders.d.ts +10 -0
  64. package/bundle/components/ComparisonTable/ComparisonTableContent.d.ts +50 -0
  65. package/bundle/components/ComparisonTable/ComparisonTableRows.d.ts +13 -0
  66. package/bundle/components/ComparisonTable/HeaderCell.d.ts +10 -0
  67. package/bundle/components/ComparisonTable/HeaderCell.mobile.d.ts +11 -0
  68. package/bundle/components/ComparisonTable/TableCarouselContainer.d.ts +7 -0
  69. package/bundle/components/ComparisonTable/TableCell.d.ts +9 -0
  70. package/bundle/components/ComparisonTable/TableCell.mobile.d.ts +9 -0
  71. package/bundle/components/ComparisonTable/TableColumn.d.ts +15 -0
  72. package/bundle/components/ComparisonTable/TableRow.d.ts +14 -0
  73. package/bundle/components/ComparisonTable/TableRowContainer.d.ts +1 -0
  74. package/bundle/components/ComparisonTable/constants.d.ts +6 -0
  75. package/bundle/components/ContentPage/ContentPage.d.ts +10 -0
  76. package/bundle/components/ContentPage/ContentPageContext.d.ts +17 -0
  77. package/bundle/components/ContentPage/ContentPageHead.d.ts +7 -0
  78. package/bundle/components/ContentPage/computeAPIFallback.d.ts +5 -0
  79. package/bundle/components/ContentPage/filterBlocks.d.ts +12 -0
  80. package/bundle/components/ContentPage/filterBlocks.mobile.d.ts +12 -0
  81. package/bundle/components/ContentPage/isBlockInRegistry.d.ts +2 -0
  82. package/bundle/components/ContentPage/normalizeBlock.d.ts +11 -0
  83. package/bundle/components/ContentPage/normalizeBlock.mobile.d.ts +2 -0
  84. package/bundle/components/ContentPage/normalizePage.d.ts +3 -0
  85. package/bundle/components/ContentPage/renderBlock.d.ts +13 -0
  86. package/bundle/components/ErrorBlock/ErrorBlock.d.ts +5 -0
  87. package/bundle/components/ErrorBlock/ErrorBlockContent.d.ts +48 -0
  88. package/bundle/components/ExchangeRateTile/CurrencyProps.d.ts +5 -0
  89. package/bundle/components/ExchangeRateTile/CurrencyTable.d.ts +7 -0
  90. package/bundle/components/ExchangeRateTile/CurrentLocation.d.ts +7 -0
  91. package/bundle/components/ExchangeRateTile/ExchangeCurrencyCalculator.d.ts +21 -0
  92. package/bundle/components/ExchangeRateTile/ExchangeRateTile.d.ts +5 -0
  93. package/bundle/components/ExchangeRateTile/ExchangeRateTileContent.d.ts +8 -0
  94. package/bundle/components/ExchangeRateTile/calculateResult.d.ts +2 -0
  95. package/bundle/components/ExchangeRateTile/callbackCurrencySelect.d.ts +8 -0
  96. package/bundle/components/ExchangeRateTile/formatCurrency.d.ts +1 -0
  97. package/bundle/components/ExchangeRateTile/renderInput.d.ts +13 -0
  98. package/bundle/components/Footer/Contacts.d.ts +7 -0
  99. package/bundle/components/Footer/Footer.d.ts +5 -0
  100. package/bundle/components/Footer/Footer.mobile.d.ts +5 -0
  101. package/bundle/components/Footer/FooterContent.d.ts +44 -0
  102. package/bundle/components/Footer/FooterLink.d.ts +5 -0
  103. package/bundle/components/Footer/HorizontalNavigation.d.ts +6 -0
  104. package/bundle/components/Footer/HorizontalNavigation.mobile.d.ts +6 -0
  105. package/bundle/components/Footer/HorizontalNavigationLink.d.ts +8 -0
  106. package/bundle/components/Footer/MediaButton.d.ts +7 -0
  107. package/bundle/components/Footer/Sitemap.d.ts +8 -0
  108. package/bundle/components/Footer/SocialMedia.d.ts +8 -0
  109. package/bundle/components/Footer/SocialMedia.mobile.d.ts +8 -0
  110. package/bundle/components/Footer/TextInformation.d.ts +2 -0
  111. package/bundle/components/Footer/TextInformation.mobile.d.ts +2 -0
  112. package/bundle/components/Footer/TextInformationLink.d.ts +8 -0
  113. package/bundle/components/Gallery/Gallery.d.ts +2 -0
  114. package/bundle/components/Gallery/Gallery.mobile.d.ts +2 -0
  115. package/bundle/components/Gallery/GalleryCardInner.d.ts +2 -0
  116. package/bundle/components/Gallery/GalleryContainer.d.ts +13 -0
  117. package/bundle/components/Gallery/GalleryContent.d.ts +64 -0
  118. package/bundle/components/Gallery/GalleryInner.d.ts +7 -0
  119. package/bundle/components/Gallery/GalleryProps.d.ts +4 -0
  120. package/bundle/components/Gallery/constants.d.ts +4 -0
  121. package/bundle/components/GracePeriod/GracePeriod.d.ts +5 -0
  122. package/bundle/components/GracePeriod/GracePeriodContent.d.ts +32 -0
  123. package/bundle/components/Header/DropdownMenu.d.ts +14 -0
  124. package/bundle/components/Header/Header.d.ts +5 -0
  125. package/bundle/components/Header/Header.fallback.d.ts +2 -0
  126. package/bundle/components/Header/Header.mobile.d.ts +5 -0
  127. package/bundle/components/Header/HeaderBurger.d.ts +11 -0
  128. package/bundle/components/Header/HeaderContent.d.ts +41 -0
  129. package/bundle/components/Header/HeaderSecondaryMenu.d.ts +10 -0
  130. package/bundle/components/Header/HeaderSecondaryMenuButton.d.ts +6 -0
  131. package/bundle/components/Header/HeaderSubMenu.d.ts +9 -0
  132. package/bundle/components/Header/HeaderTop.d.ts +6 -0
  133. package/bundle/components/Headline/Headline.d.ts +5 -0
  134. package/bundle/components/Headline/Headline.mobile.d.ts +5 -0
  135. package/bundle/components/Headline/HeadlineContent.d.ts +15 -0
  136. package/bundle/components/Headline/constants.d.ts +20 -0
  137. package/bundle/components/InsuranceAmountBlock/InsuranceAmountBlock.d.ts +5 -0
  138. package/bundle/components/InsuranceAmountBlock/InsuranceAmountBlockContent.d.ts +30 -0
  139. package/bundle/components/InsuranceAmountBlock/InsuranceAmountBlockInner.d.ts +7 -0
  140. package/bundle/components/LikeControl/LikeControl.d.ts +2 -0
  141. package/bundle/components/LinkDocs/LinkDocs.d.ts +5 -0
  142. package/bundle/components/LinkDocs/LinkDocs.mobile.d.ts +5 -0
  143. package/bundle/components/LinkDocs/LinkDocsContent.d.ts +43 -0
  144. package/bundle/components/LinkDocs/LinkDocsHorizontalList.d.ts +6 -0
  145. package/bundle/components/LinkDocs/LinkDocsList.d.ts +9 -0
  146. package/bundle/components/LinkDocs/LinkDocsListItem.d.ts +2 -0
  147. package/bundle/components/LinkDocs/LinkDocsListItem.mobile.d.ts +2 -0
  148. package/bundle/components/LinkDocs/LinkDocsListItemBase.d.ts +13 -0
  149. package/bundle/components/LinkDocs/LinkDocsVerticalList.d.ts +8 -0
  150. package/bundle/components/LinkDocs/linkDocsContentExample.d.ts +2 -0
  151. package/bundle/components/LinkList/LinkList.d.ts +5 -0
  152. package/bundle/components/LinkList/LinkListContent.d.ts +8 -0
  153. package/bundle/components/LinkList/linkListContentExample.d.ts +2 -0
  154. package/bundle/components/MiniGallery/MiniGallery.d.ts +5 -0
  155. package/bundle/components/MiniGallery/MiniGalleryContent.d.ts +12 -0
  156. package/bundle/components/MobileAppTile/MobileAppTile.d.ts +5 -0
  157. package/bundle/components/MobileAppTile/MobileAppTile.mobile.d.ts +5 -0
  158. package/bundle/components/MobileAppTile/MobileAppTileContent.d.ts +31 -0
  159. package/bundle/components/OfficeServicesBlock/OfficeServicesBlock.d.ts +5 -0
  160. package/bundle/components/OfficeServicesBlock/OfficeServicesBlockContent.d.ts +10 -0
  161. package/bundle/components/OtherProducts/OtherProducts.d.ts +5 -0
  162. package/bundle/components/OtherProducts/OtherProductsContent.d.ts +25 -0
  163. package/bundle/components/OtherProducts/OtherProductsItem.d.ts +6 -0
  164. package/bundle/components/PictureText/PictureText.d.ts +5 -0
  165. package/bundle/components/PictureText/PictureTextContent.d.ts +34 -0
  166. package/bundle/components/Placeholder/Placeholder.d.ts +6 -0
  167. package/bundle/components/Placeholder/PlaceholderContent.d.ts +5 -0
  168. package/bundle/components/ProductBlock/ProductBlock.d.ts +5 -0
  169. package/bundle/components/ProductBlock/ProductBlock.mobile.d.ts +5 -0
  170. package/bundle/components/ProductBlock/ProductBlockContent.d.ts +54 -0
  171. package/bundle/components/ProductBlock/ProductBlockInner.d.ts +4 -0
  172. package/bundle/components/ProductBlock/ProductBlockInner.mobile.d.ts +4 -0
  173. package/bundle/components/ProductBlock/renderBackwardButton.d.ts +4 -0
  174. package/bundle/components/ProductBlock/renderBenefit.d.ts +5 -0
  175. package/bundle/components/ProductGallery/ProductGallery.d.ts +5 -0
  176. package/bundle/components/ProductGallery/ProductGallery.mobile.d.ts +5 -0
  177. package/bundle/components/ProductGallery/ProductGalleryBlock.d.ts +8 -0
  178. package/bundle/components/ProductGallery/ProductGalleryContent.d.ts +29 -0
  179. package/bundle/components/ProductTile/ProductTile.d.ts +5 -0
  180. package/bundle/components/ProductTile/ProductTileContent.d.ts +33 -0
  181. package/bundle/components/PromoTile/PromoTile.d.ts +5 -0
  182. package/bundle/components/PromoTile/PromoTileContent.d.ts +12 -0
  183. package/bundle/components/Recommendation/Recommendation.d.ts +5 -0
  184. package/bundle/components/Recommendation/RecommendationCard.d.ts +7 -0
  185. package/bundle/components/Recommendation/RecommendationContent.d.ts +43 -0
  186. package/bundle/components/SafeDepositRental/RegionsAndBranches.d.ts +12 -0
  187. package/bundle/components/SafeDepositRental/RenderRadioButtons.d.ts +2 -0
  188. package/bundle/components/SafeDepositRental/RentalPeriod.d.ts +6 -0
  189. package/bundle/components/SafeDepositRental/SafeBoxCases.d.ts +11 -0
  190. package/bundle/components/SafeDepositRental/SafeDepositRental.d.ts +5 -0
  191. package/bundle/components/SafeDepositRental/SafeDepositRentalContent.d.ts +9 -0
  192. package/bundle/components/SafeDepositRental/SafeDepositRentalFields.d.ts +12 -0
  193. package/bundle/components/SafeDepositRental/SafeDepositRentalForm.d.ts +11 -0
  194. package/bundle/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +6 -0
  195. package/bundle/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +8 -0
  196. package/bundle/components/SafeDepositRental/WrapperSelect.d.ts +11 -0
  197. package/bundle/components/SafeDepositRental/YandexMap.d.ts +5 -0
  198. package/bundle/components/SafeDepositRental/renderClusterer.d.ts +2 -0
  199. package/bundle/components/SafeDepositRental/useGetRegions.d.ts +6 -0
  200. package/bundle/components/SafeDepositRental/useYandexMaps.d.ts +2 -0
  201. package/bundle/components/SafeDepositRental/utils.d.ts +3 -0
  202. package/bundle/components/StepsBlock/StepsBlock.d.ts +5 -0
  203. package/bundle/components/StepsBlock/StepsBlock.mobile.d.ts +5 -0
  204. package/bundle/components/StepsBlock/StepsBlockContent.d.ts +43 -0
  205. package/bundle/components/StepsBlock/StepsBlockStyleMaps.d.ts +11 -0
  206. package/bundle/components/StepsBlock/renderItems.d.ts +3 -0
  207. package/bundle/components/Tabs/Tabs.d.ts +13 -0
  208. package/bundle/components/Tabs/TabsContent.d.ts +36 -0
  209. package/bundle/components/Tabs/renderGroupTab.d.ts +4 -0
  210. package/bundle/components/Tabs/renderLinkTab.d.ts +9 -0
  211. package/bundle/components/Tabs/renderTab.d.ts +12 -0
  212. package/bundle/components/Tabs/tabItemClasses.d.ts +6 -0
  213. package/bundle/components/TariffsTable/EmbeddableCellData.d.ts +14 -0
  214. package/bundle/components/TariffsTable/EmbeddableCellData.mobile.d.ts +12 -0
  215. package/bundle/components/TariffsTable/TableTileHeader.d.ts +2 -0
  216. package/bundle/components/TariffsTable/TariffsTable.d.ts +5 -0
  217. package/bundle/components/TariffsTable/TariffsTable.mobile.d.ts +5 -0
  218. package/bundle/components/TariffsTable/TariffsTableCell.d.ts +9 -0
  219. package/bundle/components/TariffsTable/TariffsTableContent.d.ts +95 -0
  220. package/bundle/components/TariffsTable/TariffsTableHorizontal.d.ts +6 -0
  221. package/bundle/components/TariffsTable/TariffsTableRow.d.ts +9 -0
  222. package/bundle/components/TariffsTable/TariffsTableRowContainer.d.ts +7 -0
  223. package/bundle/components/TariffsTable/TariffsTableTileCell.d.ts +8 -0
  224. package/bundle/components/TariffsTable/TariffsTableVertical.d.ts +6 -0
  225. package/bundle/components/TariffsTable/constants.d.ts +4 -0
  226. package/bundle/components/TariffsTable/dataFixture.d.ts +5 -0
  227. package/bundle/components/TariffsTable/utils/getButtonAriaLabel.d.ts +2 -0
  228. package/bundle/components/TextBlock/TextBlock.d.ts +5 -0
  229. package/bundle/components/TextBlock/TextBlock.mobile.d.ts +5 -0
  230. package/bundle/components/TextBlock/TextBlockContent.d.ts +22 -0
  231. package/bundle/components/Tile/Tile.d.ts +6 -0
  232. package/bundle/components/Tile/TileContent.d.ts +34 -0
  233. package/bundle/content-page-repository/ContentPageRepository.d.ts +11 -0
  234. package/bundle/content-page-repository/TransformationOptions.d.ts +4 -0
  235. package/bundle/content-page-repository/index.d.ts +2 -0
  236. package/bundle/content-page-repository/mapJSON.d.ts +1 -0
  237. package/bundle/content-page-repository/transformContentPage.d.ts +3 -0
  238. package/bundle/content-page-repository/transformImg.d.ts +11 -0
  239. package/bundle/content-page-repository/transformMarkdown.d.ts +1 -0
  240. package/bundle/content-page-repository/transformPicture.d.ts +3 -0
  241. package/bundle/content-page-repository/transformSrc.d.ts +3 -0
  242. package/bundle/hooks/useExchangeRates.d.ts +2 -0
  243. package/bundle/hooks/useExternalNS.d.ts +2 -0
  244. package/bundle/hooks/useGeolocation.d.ts +1 -0
  245. package/bundle/hooks/useLikeService.d.ts +5 -0
  246. package/bundle/hooks/useLink.d.ts +18 -0
  247. package/bundle/hooks/useOutsideClick.d.ts +5 -0
  248. package/{dist/hooks/useFetchSafeBoxes.d.ts → bundle/hooks/useSafeBoxes.d.ts} +1 -3
  249. package/bundle/hooks/useSearch.d.ts +4 -0
  250. package/bundle/hooks/useTableArrowScrollControl.d.ts +7 -0
  251. package/bundle/hooks/useTariffsInnerTableData.d.ts +1 -0
  252. package/bundle/icons/IconName.d.ts +194 -0
  253. package/bundle/index.d.ts +9 -0
  254. package/bundle/model/AlignType.d.ts +9 -0
  255. package/bundle/model/BgColorVersion.d.ts +8 -0
  256. package/bundle/model/BlockDecorator.d.ts +14 -0
  257. package/bundle/model/BlockVersion.d.ts +11 -0
  258. package/bundle/model/BlocksRegistry.d.ts +5 -0
  259. package/bundle/model/ButtonVersion.d.ts +6 -0
  260. package/bundle/model/ContentPageDef.d.ts +52 -0
  261. package/bundle/model/EmptyOptionType.d.ts +4 -0
  262. package/bundle/model/Fallback.d.ts +5 -0
  263. package/bundle/model/Footnote.d.ts +4 -0
  264. package/bundle/model/GalleryVersion.d.ts +1 -0
  265. package/bundle/model/HeadlineType.d.ts +29 -0
  266. package/bundle/model/IconVersion.d.ts +9 -0
  267. package/bundle/model/ImageSize.d.ts +6 -0
  268. package/bundle/model/InputTypes.d.ts +1 -0
  269. package/bundle/model/LinkProps.d.ts +24 -0
  270. package/bundle/model/ListOrientation.d.ts +8 -0
  271. package/bundle/model/Picture.d.ts +59 -0
  272. package/bundle/model/ProductColorVersion.d.ts +4 -0
  273. package/bundle/model/SitemapProps.d.ts +24 -0
  274. package/bundle/model/SizeVersion.d.ts +8 -0
  275. package/bundle/model/TableVersion.d.ts +1 -0
  276. package/bundle/model/VNode.d.ts +1 -0
  277. package/bundle/react/setup-fixture.d.ts +4 -0
  278. package/bundle/services/sitemap/SitemapProps.d.ts +24 -0
  279. package/bundle/services/sitemap/checkIsHrefSameOrigin.d.ts +4 -0
  280. package/bundle/services/sitemap/findActiveSubItem.d.ts +3 -0
  281. package/bundle/services/sitemap/isHrefActive.d.ts +4 -0
  282. package/bundle/services/sitemap/isSubItemActive.d.ts +3 -0
  283. package/bundle/services/sitemap/isTopItemActive.d.ts +3 -0
  284. package/bundle/services/sitemap/mergeTopItems.d.ts +2 -0
  285. package/bundle/services/sitemap/useSitemap.d.ts +3 -0
  286. package/bundle/ui-kit/BenefitItem/BenefitItem.d.ts +4 -0
  287. package/bundle/ui-kit/BenefitItem/BenefitItemProps.d.ts +20 -0
  288. package/bundle/ui-kit/BlockWrapper.d.ts +7 -0
  289. package/bundle/ui-kit/BlocksList/BlocksListProps.d.ts +96 -0
  290. package/bundle/ui-kit/BlocksList/EmbeddableBlocks.d.ts +12 -0
  291. package/bundle/ui-kit/BlocksList/EmbeddableBlocks.mobile.d.ts +8 -0
  292. package/bundle/ui-kit/BlocksList/renderBlocksList.d.ts +9 -0
  293. package/bundle/ui-kit/Breadcrumb.d.ts +6 -0
  294. package/bundle/ui-kit/Button/ArrowButton.d.ts +2 -0
  295. package/bundle/ui-kit/Button/Button.d.ts +2 -0
  296. package/bundle/ui-kit/Button/Button.mobile.d.ts +2 -0
  297. package/bundle/ui-kit/Button/ButtonInner.d.ts +7 -0
  298. package/bundle/ui-kit/Button/ButtonProps.d.ts +54 -0
  299. package/bundle/ui-kit/Button/ButtonSection.d.ts +5 -0
  300. package/bundle/ui-kit/Button/GetButtonClassParams.d.ts +6 -0
  301. package/bundle/ui-kit/Button/LikeButton.d.ts +6 -0
  302. package/bundle/ui-kit/Button/buttonClassNameConstants.d.ts +5 -0
  303. package/bundle/ui-kit/Button/getDisabledButtonClasses.d.ts +2 -0
  304. package/bundle/ui-kit/Button/getRegularButtonClasses.d.ts +2 -0
  305. package/bundle/ui-kit/Button/renderArrows.d.ts +9 -0
  306. package/bundle/ui-kit/Checkbox/Checkbox.d.ts +2 -0
  307. package/bundle/ui-kit/Checkbox/CheckboxProps.d.ts +7 -0
  308. package/bundle/ui-kit/CurrencyInput/CurrencyInput.d.ts +2 -0
  309. package/bundle/ui-kit/CurrencyInput/CurrencyInputProps.d.ts +5 -0
  310. package/bundle/ui-kit/CurrencyInput/adjustValue .d.ts +3 -0
  311. package/bundle/ui-kit/Description/Description.d.ts +5 -0
  312. package/bundle/ui-kit/Foldable/DefaultButton.d.ts +2 -0
  313. package/bundle/ui-kit/Foldable/FoldButtonProps.d.ts +12 -0
  314. package/bundle/ui-kit/Foldable/Foldable.d.ts +16 -0
  315. package/bundle/ui-kit/HeaderItem/HeaderItem.d.ts +2 -0
  316. package/bundle/ui-kit/HeaderItem/HeaderItem.mobile.d.ts +3 -0
  317. package/bundle/ui-kit/Heading/Heading.d.ts +2 -0
  318. package/bundle/ui-kit/Heading/Heading.mobile.d.ts +2 -0
  319. package/bundle/ui-kit/Heading/HeadingProps.d.ts +23 -0
  320. package/bundle/ui-kit/Icon/Icon.d.ts +2 -0
  321. package/bundle/ui-kit/Icon/IconProps.d.ts +21 -0
  322. package/bundle/ui-kit/Img/Img.d.ts +1 -0
  323. package/bundle/ui-kit/Img/Img.mobile.d.ts +2 -0
  324. package/bundle/ui-kit/Img/ImgAsPicture.d.ts +4 -0
  325. package/bundle/ui-kit/Img/ImgInner.d.ts +2 -0
  326. package/bundle/ui-kit/Img/ImgProps.d.ts +11 -0
  327. package/bundle/ui-kit/Img/getIconVersion.d.ts +1 -0
  328. package/bundle/ui-kit/InnerTable/InnerTable.d.ts +5 -0
  329. package/bundle/ui-kit/InnerTable/InnerTableBody.d.ts +7 -0
  330. package/bundle/ui-kit/InnerTable/InnerTableBodyItem.d.ts +6 -0
  331. package/bundle/ui-kit/InnerTable/InnerTableButton.d.ts +6 -0
  332. package/bundle/ui-kit/InnerTable/InnerTableHeader.d.ts +7 -0
  333. package/bundle/ui-kit/InnerTable/InnerTableProps.d.ts +24 -0
  334. package/bundle/ui-kit/Input/Input.d.ts +2 -0
  335. package/bundle/ui-kit/Input/InputProps.d.ts +16 -0
  336. package/bundle/ui-kit/InputRange/InputRange.d.ts +2 -0
  337. package/bundle/ui-kit/InputRange/InputRangeProps.d.ts +11 -0
  338. package/bundle/ui-kit/IntersectionObserverTag.d.ts +11 -0
  339. package/bundle/ui-kit/List/List.d.ts +2 -0
  340. package/bundle/ui-kit/List/ListContent.d.ts +4 -0
  341. package/bundle/ui-kit/List/ListItem.d.ts +12 -0
  342. package/bundle/ui-kit/List/ListProps.d.ts +26 -0
  343. package/bundle/ui-kit/Logo/Logo.d.ts +13 -0
  344. package/bundle/ui-kit/Logo/Logo.mobile.d.ts +8 -0
  345. package/bundle/ui-kit/Radio/Radio.d.ts +2 -0
  346. package/bundle/ui-kit/Radio/RadioProps.d.ts +9 -0
  347. package/bundle/ui-kit/RadioButtonGroup/RadioButtonGroup.d.ts +12 -0
  348. package/bundle/ui-kit/SVG.d.ts +19 -0
  349. package/bundle/ui-kit/SearchBar/SearchBar.d.ts +2 -0
  350. package/bundle/ui-kit/SearchBar/SearchBar.mobile.d.ts +2 -0
  351. package/bundle/ui-kit/SearchBar/SearchBarInner.d.ts +5 -0
  352. package/bundle/ui-kit/Select/Select.d.ts +14 -0
  353. package/bundle/ui-kit/SwipeListControl/SwipeListControl.d.ts +2 -0
  354. package/bundle/ui-kit/SwipeListControl/SwipeListControlDots.d.ts +6 -0
  355. package/bundle/ui-kit/SwipeListControl/SwipeListControlItem.d.ts +9 -0
  356. package/bundle/ui-kit/SwipeListControl/SwipeListControlList.d.ts +10 -0
  357. package/bundle/ui-kit/SwipeListControl/SwipeListControlProps.d.ts +18 -0
  358. package/bundle/ui-kit/SwipeListControl/constants.d.ts +2 -0
  359. package/bundle/ui-kit/SwipeListControl/utils/getContainerStyle.d.ts +1 -0
  360. package/bundle/ui-kit/SwipeListControl/utils/getIndexParts.d.ts +4 -0
  361. package/bundle/ui-kit/SwipeListControl/utils/getScrollPoints.d.ts +8 -0
  362. package/bundle/ui-kit/TableArrowScrollControl/TableArrowScrollControl.d.ts +2 -0
  363. package/bundle/ui-kit/TableArrowScrollControl/TableArrowScrollControlProps.d.ts +7 -0
  364. package/bundle/ui-kit/TopItem/TopItem.d.ts +14 -0
  365. package/bundle/utils/addSpacesBetweenNumbers.d.ts +1 -0
  366. package/bundle/utils/adjustHref.d.ts +4 -0
  367. package/bundle/utils/assertUnreachable.d.ts +1 -0
  368. package/bundle/utils/changeHashOnObserve.d.ts +9 -0
  369. package/bundle/utils/checkIsIconRenderable.d.ts +2 -0
  370. package/bundle/utils/clamp.d.ts +1 -0
  371. package/bundle/utils/fetchJSON.d.ts +2 -0
  372. package/bundle/utils/getAccordionItems.d.ts +1 -0
  373. package/bundle/utils/getColSpan.d.ts +1 -0
  374. package/bundle/utils/getCurrentDate.d.ts +1 -0
  375. package/bundle/utils/getGeolocation.d.ts +1 -0
  376. package/bundle/utils/getSanitizedValue.d.ts +1 -0
  377. package/bundle/utils/isPictureSizeEmpty.d.ts +2 -0
  378. package/bundle/utils/joinList.d.ts +1 -0
  379. package/bundle/utils/maxBy.d.ts +2 -0
  380. package/bundle/utils/roundTo.d.ts +1 -0
  381. package/bundle/utils/style2className.d.ts +1 -0
  382. package/bundle/utils/tableFunc.d.ts +2 -0
  383. package/bundle/utils/url.d.ts +5 -0
  384. package/bundle/utils/withoutMobilePath.d.ts +2 -0
  385. package/dist/components/Accordion/AccordionItem.d.ts +1 -1
  386. package/dist/components/Accordion/AccordionItem.js +9 -10
  387. package/dist/components/Accordion/AccordionItem.js.map +1 -1
  388. package/dist/components/Accordion/AccordionItem.mobile.d.ts +1 -1
  389. package/dist/components/Accordion/AccordionItem.mobile.js +9 -7
  390. package/dist/components/Accordion/AccordionItem.mobile.js.map +1 -1
  391. package/dist/components/BenefitsBlock/BenefitsBlock.js +1 -1
  392. package/dist/components/BenefitsBlock/BenefitsBlock.js.map +1 -1
  393. package/dist/components/Blocks.mobile.d.ts +0 -1
  394. package/dist/components/Blocks.mobile.js +0 -2
  395. package/dist/components/Blocks.mobile.js.map +1 -1
  396. package/dist/components/Calculator/CalculatorContent.d.ts +1 -1
  397. package/dist/components/CardTransfer/CardTransfer.js +3 -2
  398. package/dist/components/CardTransfer/CardTransfer.js.map +1 -1
  399. package/dist/components/Catalog/Catalog.js +1 -1
  400. package/dist/components/Catalog/Catalog.js.map +1 -1
  401. package/dist/components/Catalog/CatalogCard.js +1 -23
  402. package/dist/components/Catalog/CatalogCard.js.map +1 -1
  403. package/dist/components/ComparisonTable/ComparisonTable.js +1 -1
  404. package/dist/components/ComparisonTable/ComparisonTable.js.map +1 -1
  405. package/dist/components/ComparisonTable/ComparisonTable.mobile.js +13 -48
  406. package/dist/components/ComparisonTable/ComparisonTable.mobile.js.map +1 -1
  407. package/dist/components/ComparisonTable/TableCell.d.ts +1 -1
  408. package/dist/components/ComparisonTable/TableCell.js.map +1 -1
  409. package/dist/components/ComparisonTable/TableColumn.d.ts +5 -8
  410. package/dist/components/ComparisonTable/TableColumn.js +2 -8
  411. package/dist/components/ComparisonTable/TableColumn.js.map +1 -1
  412. package/dist/components/ContentPage/ContentPageContext.d.ts +0 -11
  413. package/dist/components/ErrorBlock/ErrorBlock.js +1 -1
  414. package/dist/components/ErrorBlock/ErrorBlock.js.map +1 -1
  415. package/dist/components/ExchangeRateTile/renderInput.js +1 -1
  416. package/dist/components/ExchangeRateTile/renderInput.js.map +1 -1
  417. package/dist/components/Footer/Contacts.js +1 -1
  418. package/dist/components/Footer/Contacts.js.map +1 -1
  419. package/dist/components/Footer/FooterContent.d.ts +5 -9
  420. package/dist/components/Gallery/Gallery.mobile.js +7 -3
  421. package/dist/components/Gallery/Gallery.mobile.js.map +1 -1
  422. package/dist/components/Gallery/GalleryCardInner.js +14 -17
  423. package/dist/components/Gallery/GalleryCardInner.js.map +1 -1
  424. package/dist/components/Gallery/GalleryContainer.js +2 -2
  425. package/dist/components/Gallery/GalleryContainer.js.map +1 -1
  426. package/dist/components/Gallery/GalleryContent.d.ts +11 -3
  427. package/dist/components/Header/HeaderSubMenu.js +3 -2
  428. package/dist/components/Header/HeaderSubMenu.js.map +1 -1
  429. package/dist/components/Headline/constants.d.ts +2 -1
  430. package/dist/components/Headline/constants.js +10 -1
  431. package/dist/components/Headline/constants.js.map +1 -1
  432. package/dist/components/MiniGallery/MiniGalleryContent.d.ts +1 -0
  433. package/dist/components/MobileAppTile/MobileAppTile.js +1 -1
  434. package/dist/components/MobileAppTile/MobileAppTile.js.map +1 -1
  435. package/dist/components/OtherProducts/OtherProductsItem.js +4 -2
  436. package/dist/components/OtherProducts/OtherProductsItem.js.map +1 -1
  437. package/dist/components/ProductGallery/ProductGallery.js +2 -2
  438. package/dist/components/ProductGallery/ProductGallery.js.map +1 -1
  439. package/dist/components/ProductTile/ProductTile.js +1 -1
  440. package/dist/components/ProductTile/ProductTile.js.map +1 -1
  441. package/dist/components/Recommendation/RecommendationContent.d.ts +5 -0
  442. package/dist/components/SafeDepositRental/RegionsAndBranches.d.ts +1 -1
  443. package/dist/components/SafeDepositRental/SafeBoxCases.d.ts +1 -1
  444. package/dist/components/SafeDepositRental/SafeDepositRental.d.ts +1 -1
  445. package/dist/components/SafeDepositRental/SafeDepositRental.js +17 -3
  446. package/dist/components/SafeDepositRental/SafeDepositRental.js.map +1 -1
  447. package/dist/components/SafeDepositRental/SafeDepositRentalFields.d.ts +7 -4
  448. package/dist/components/SafeDepositRental/SafeDepositRentalFields.js +3 -5
  449. package/dist/components/SafeDepositRental/SafeDepositRentalFields.js.map +1 -1
  450. package/dist/components/SafeDepositRental/SafeDepositRentalForm.d.ts +7 -3
  451. package/dist/components/SafeDepositRental/SafeDepositRentalForm.js +7 -28
  452. package/dist/components/SafeDepositRental/SafeDepositRentalForm.js.map +1 -1
  453. package/dist/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +1 -1
  454. package/dist/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +0 -2
  455. package/dist/components/SafeDepositRental/utils.d.ts +1 -1
  456. package/dist/components/StepsBlock/StepsBlock.js +9 -4
  457. package/dist/components/StepsBlock/StepsBlock.js.map +1 -1
  458. package/dist/components/StepsBlock/StepsBlockContent.d.ts +9 -2
  459. package/dist/components/StepsBlock/StepsBlockStyleMaps.d.ts +1 -0
  460. package/dist/components/StepsBlock/StepsBlockStyleMaps.js +2 -0
  461. package/dist/components/StepsBlock/StepsBlockStyleMaps.js.map +1 -1
  462. package/dist/components/StepsBlock/renderItems.d.ts +3 -0
  463. package/dist/components/StepsBlock/renderItems.js +6 -0
  464. package/dist/components/StepsBlock/renderItems.js.map +1 -0
  465. package/dist/components/TariffsTable/EmbeddableCellData.js +4 -5
  466. package/dist/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  467. package/dist/components/TariffsTable/EmbeddableCellData.mobile.js +1 -2
  468. package/dist/components/TariffsTable/EmbeddableCellData.mobile.js.map +1 -1
  469. package/dist/components/TariffsTable/TariffsTable.js +1 -1
  470. package/dist/components/TariffsTable/TariffsTable.js.map +1 -1
  471. package/dist/components/TariffsTable/TariffsTableCell.js +1 -1
  472. package/dist/components/TariffsTable/TariffsTableCell.js.map +1 -1
  473. package/dist/components/TariffsTable/TariffsTableRow.js +1 -2
  474. package/dist/components/TariffsTable/TariffsTableRow.js.map +1 -1
  475. package/dist/components/TariffsTable/dataFixture.js +4 -2
  476. package/dist/components/TariffsTable/dataFixture.js.map +1 -1
  477. package/dist/components/TariffsTable/utils/getButtonAriaLabel.d.ts +1 -1
  478. package/dist/components/TariffsTable/utils/getButtonAriaLabel.js +1 -2
  479. package/dist/components/TariffsTable/utils/getButtonAriaLabel.js.map +1 -1
  480. package/dist/components/Tile/Tile.js +2 -3
  481. package/dist/components/Tile/Tile.js.map +1 -1
  482. package/dist/hooks/useOutsideClick.d.ts +5 -0
  483. package/dist/hooks/useOutsideClick.js +21 -0
  484. package/dist/hooks/useOutsideClick.js.map +1 -0
  485. package/{mobile/dist/hooks/useFetchSafeBoxes.d.ts → dist/hooks/useSafeBoxes.d.ts} +1 -3
  486. package/{mobile/dist/hooks/useFetchSafeBoxes.js → dist/hooks/useSafeBoxes.js} +9 -10
  487. package/dist/hooks/useSafeBoxes.js.map +1 -0
  488. package/dist/icons/IconName.d.ts +1 -92
  489. package/dist/icons/IconName.js +4 -4
  490. package/dist/icons/IconName.js.map +1 -1
  491. package/dist/model/HeadlineType.d.ts +8 -0
  492. package/dist/model/Picture.d.ts +1 -0
  493. package/dist/react/setup-fixture.js +0 -2
  494. package/dist/react/setup-fixture.js.map +1 -1
  495. package/dist/ui-kit/BenefitItem/BenefitItem.js +3 -1
  496. package/dist/ui-kit/BenefitItem/BenefitItem.js.map +1 -1
  497. package/dist/ui-kit/BlockWrapper.d.ts +0 -3
  498. package/dist/ui-kit/BlockWrapper.js +5 -5
  499. package/dist/ui-kit/BlockWrapper.js.map +1 -1
  500. package/dist/ui-kit/BlocksList/renderBlocksList.d.ts +1 -1
  501. package/dist/ui-kit/BlocksList/renderBlocksList.js +1 -1
  502. package/dist/ui-kit/BlocksList/renderBlocksList.js.map +1 -1
  503. package/dist/ui-kit/Button/Button.js +6 -10
  504. package/dist/ui-kit/Button/Button.js.map +1 -1
  505. package/dist/ui-kit/Button/Button.mobile.js +1 -1
  506. package/dist/ui-kit/Button/Button.mobile.js.map +1 -1
  507. package/dist/ui-kit/Button/ButtonInner.js +3 -2
  508. package/dist/ui-kit/Button/ButtonInner.js.map +1 -1
  509. package/dist/ui-kit/Button/ButtonProps.d.ts +1 -7
  510. package/dist/ui-kit/Button/ButtonSection.js +5 -10
  511. package/dist/ui-kit/Button/ButtonSection.js.map +1 -1
  512. package/dist/ui-kit/Button/buttonClassNameConstants.d.ts +1 -0
  513. package/dist/ui-kit/Button/buttonClassNameConstants.js +7 -1
  514. package/dist/ui-kit/Button/buttonClassNameConstants.js.map +1 -1
  515. package/dist/ui-kit/CurrencyInput/CurrencyInput.js +7 -1
  516. package/dist/ui-kit/CurrencyInput/CurrencyInput.js.map +1 -1
  517. package/dist/ui-kit/CurrencyInput/adjustValue .d.ts +2 -0
  518. package/dist/ui-kit/CurrencyInput/adjustValue .js +11 -2
  519. package/dist/ui-kit/CurrencyInput/adjustValue .js.map +1 -1
  520. package/dist/ui-kit/Foldable/DefaultButton.d.ts +2 -0
  521. package/dist/ui-kit/Foldable/DefaultButton.js +12 -0
  522. package/dist/ui-kit/Foldable/DefaultButton.js.map +1 -0
  523. package/dist/ui-kit/Foldable/FoldButtonProps.d.ts +12 -0
  524. package/dist/ui-kit/Foldable/FoldButtonProps.js +2 -0
  525. package/dist/ui-kit/Foldable/FoldButtonProps.js.map +1 -0
  526. package/dist/ui-kit/Foldable/Foldable.d.ts +11 -17
  527. package/dist/ui-kit/Foldable/Foldable.js +22 -14
  528. package/dist/ui-kit/Foldable/Foldable.js.map +1 -1
  529. package/dist/ui-kit/Icon/Icon.js +4 -5
  530. package/dist/ui-kit/Icon/Icon.js.map +1 -1
  531. package/dist/ui-kit/Icon/IconProps.d.ts +0 -1
  532. package/dist/ui-kit/Img/Img.d.ts +1 -2
  533. package/dist/ui-kit/Img/Img.js +2 -6
  534. package/dist/ui-kit/Img/Img.js.map +1 -1
  535. package/dist/ui-kit/Img/Img.mobile.js +1 -3
  536. package/dist/ui-kit/Img/Img.mobile.js.map +1 -1
  537. package/dist/ui-kit/InnerTable/InnerTableBody.js +1 -1
  538. package/dist/ui-kit/InnerTable/InnerTableBody.js.map +1 -1
  539. package/dist/ui-kit/InnerTable/InnerTableBodyItem.js +6 -2
  540. package/dist/ui-kit/InnerTable/InnerTableBodyItem.js.map +1 -1
  541. package/dist/ui-kit/InnerTable/InnerTableButton.js +1 -1
  542. package/dist/ui-kit/InnerTable/InnerTableButton.js.map +1 -1
  543. package/dist/ui-kit/InnerTable/InnerTableHeader.js +1 -1
  544. package/dist/ui-kit/InnerTable/InnerTableHeader.js.map +1 -1
  545. package/dist/ui-kit/Input/Input.js +12 -3
  546. package/dist/ui-kit/Input/Input.js.map +1 -1
  547. package/dist/ui-kit/Input/InputProps.d.ts +2 -0
  548. package/dist/ui-kit/InputRange/InputRange.js +2 -2
  549. package/dist/ui-kit/InputRange/InputRange.js.map +1 -1
  550. package/dist/ui-kit/IntersectionObserverTag.d.ts +11 -0
  551. package/dist/ui-kit/IntersectionObserverTag.js +22 -0
  552. package/dist/ui-kit/IntersectionObserverTag.js.map +1 -0
  553. package/dist/ui-kit/List/List.js +13 -8
  554. package/dist/ui-kit/List/List.js.map +1 -1
  555. package/dist/ui-kit/List/ListItem.d.ts +2 -2
  556. package/dist/ui-kit/List/ListItem.js +8 -23
  557. package/dist/ui-kit/List/ListItem.js.map +1 -1
  558. package/dist/ui-kit/List/ListProps.d.ts +5 -3
  559. package/dist/ui-kit/Radio/Radio.js +1 -1
  560. package/dist/ui-kit/Radio/Radio.js.map +1 -1
  561. package/dist/ui-kit/Select/Select.js +4 -1
  562. package/dist/ui-kit/Select/Select.js.map +1 -1
  563. package/dist/utils/getSanitizedValue.d.ts +1 -0
  564. package/dist/utils/getSanitizedValue.js +5 -0
  565. package/dist/utils/getSanitizedValue.js.map +1 -0
  566. package/lib/common.css +1 -1
  567. package/lib/components/Accordion/AccordionItem.d.ts +1 -1
  568. package/lib/components/Accordion/AccordionItem.js +9 -10
  569. package/lib/components/Accordion/AccordionItem.js.map +1 -1
  570. package/lib/components/Accordion/AccordionItem.mobile.d.ts +1 -1
  571. package/lib/components/Accordion/AccordionItem.mobile.js +9 -7
  572. package/lib/components/Accordion/AccordionItem.mobile.js.map +1 -1
  573. package/lib/components/BenefitsBlock/BenefitsBlock.js +1 -1
  574. package/lib/components/BenefitsBlock/BenefitsBlock.js.map +1 -1
  575. package/lib/components/Blocks.mobile.d.ts +0 -1
  576. package/lib/components/Blocks.mobile.js +0 -2
  577. package/lib/components/Blocks.mobile.js.map +1 -1
  578. package/lib/components/Calculator/CalculatorContent.d.ts +1 -1
  579. package/lib/components/CardTransfer/CardTransfer.js +3 -2
  580. package/lib/components/CardTransfer/CardTransfer.js.map +1 -1
  581. package/lib/components/Catalog/Catalog.js +1 -1
  582. package/lib/components/Catalog/Catalog.js.map +1 -1
  583. package/lib/components/Catalog/CatalogCard.js +1 -23
  584. package/lib/components/Catalog/CatalogCard.js.map +1 -1
  585. package/lib/components/ComparisonTable/ComparisonTable.js +1 -1
  586. package/lib/components/ComparisonTable/ComparisonTable.js.map +1 -1
  587. package/lib/components/ComparisonTable/ComparisonTable.mobile.js +14 -49
  588. package/lib/components/ComparisonTable/ComparisonTable.mobile.js.map +1 -1
  589. package/lib/components/ComparisonTable/TableCell.d.ts +1 -1
  590. package/lib/components/ComparisonTable/TableCell.js.map +1 -1
  591. package/lib/components/ComparisonTable/TableColumn.d.ts +5 -8
  592. package/lib/components/ComparisonTable/TableColumn.js +2 -8
  593. package/lib/components/ComparisonTable/TableColumn.js.map +1 -1
  594. package/lib/components/ContentPage/ContentPageContext.d.ts +0 -11
  595. package/lib/components/ErrorBlock/ErrorBlock.js +1 -1
  596. package/lib/components/ErrorBlock/ErrorBlock.js.map +1 -1
  597. package/lib/components/ExchangeRateTile/renderInput.js +1 -1
  598. package/lib/components/ExchangeRateTile/renderInput.js.map +1 -1
  599. package/lib/components/Footer/Contacts.js +1 -1
  600. package/lib/components/Footer/Contacts.js.map +1 -1
  601. package/lib/components/Footer/FooterContent.d.ts +5 -9
  602. package/lib/components/Gallery/Gallery.mobile.js +7 -3
  603. package/lib/components/Gallery/Gallery.mobile.js.map +1 -1
  604. package/lib/components/Gallery/GalleryCardInner.js +15 -18
  605. package/lib/components/Gallery/GalleryCardInner.js.map +1 -1
  606. package/lib/components/Gallery/GalleryContainer.js +2 -2
  607. package/lib/components/Gallery/GalleryContainer.js.map +1 -1
  608. package/lib/components/Gallery/GalleryContent.d.ts +11 -3
  609. package/lib/components/Header/HeaderSubMenu.js +2 -1
  610. package/lib/components/Header/HeaderSubMenu.js.map +1 -1
  611. package/lib/components/Headline/constants.d.ts +2 -1
  612. package/lib/components/Headline/constants.js +9 -0
  613. package/lib/components/Headline/constants.js.map +1 -1
  614. package/lib/components/MiniGallery/MiniGallery.fixture.d.ts +1 -0
  615. package/lib/components/MiniGallery/MiniGalleryContent.d.ts +1 -0
  616. package/lib/components/MobileAppTile/MobileAppTile.js +1 -1
  617. package/lib/components/MobileAppTile/MobileAppTile.js.map +1 -1
  618. package/lib/components/OtherProducts/OtherProductsItem.js +4 -2
  619. package/lib/components/OtherProducts/OtherProductsItem.js.map +1 -1
  620. package/lib/components/ProductGallery/ProductGallery.js +2 -2
  621. package/lib/components/ProductGallery/ProductGallery.js.map +1 -1
  622. package/lib/components/ProductTile/ProductTile.js +1 -1
  623. package/lib/components/ProductTile/ProductTile.js.map +1 -1
  624. package/lib/components/Recommendation/RecommendationContent.d.ts +5 -0
  625. package/lib/components/SafeDepositRental/RegionsAndBranches.d.ts +1 -1
  626. package/lib/components/SafeDepositRental/SafeBoxCases.d.ts +1 -1
  627. package/lib/components/SafeDepositRental/SafeDepositRental.d.ts +1 -1
  628. package/lib/components/SafeDepositRental/SafeDepositRental.js +18 -4
  629. package/lib/components/SafeDepositRental/SafeDepositRental.js.map +1 -1
  630. package/lib/components/SafeDepositRental/SafeDepositRentalFields.d.ts +7 -4
  631. package/lib/components/SafeDepositRental/SafeDepositRentalFields.js +3 -5
  632. package/lib/components/SafeDepositRental/SafeDepositRentalFields.js.map +1 -1
  633. package/lib/components/SafeDepositRental/SafeDepositRentalForm.d.ts +7 -3
  634. package/lib/components/SafeDepositRental/SafeDepositRentalForm.js +9 -30
  635. package/lib/components/SafeDepositRental/SafeDepositRentalForm.js.map +1 -1
  636. package/lib/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +1 -1
  637. package/lib/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +0 -2
  638. package/lib/components/SafeDepositRental/utils.d.ts +1 -1
  639. package/lib/components/StepsBlock/StepsBlock.fixture.d.ts +1 -0
  640. package/lib/components/StepsBlock/StepsBlock.js +9 -4
  641. package/lib/components/StepsBlock/StepsBlock.js.map +1 -1
  642. package/lib/components/StepsBlock/StepsBlockContent.d.ts +9 -2
  643. package/lib/components/StepsBlock/StepsBlockStyleMaps.d.ts +1 -0
  644. package/lib/components/StepsBlock/StepsBlockStyleMaps.js +2 -0
  645. package/lib/components/StepsBlock/StepsBlockStyleMaps.js.map +1 -1
  646. package/lib/components/StepsBlock/renderItems.d.ts +3 -0
  647. package/lib/components/StepsBlock/renderItems.js +3 -0
  648. package/lib/components/StepsBlock/renderItems.js.map +1 -0
  649. package/lib/components/TariffsTable/EmbeddableCellData.js +4 -5
  650. package/lib/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  651. package/lib/components/TariffsTable/EmbeddableCellData.mobile.js +1 -2
  652. package/lib/components/TariffsTable/EmbeddableCellData.mobile.js.map +1 -1
  653. package/lib/components/TariffsTable/TariffsTable.js +1 -1
  654. package/lib/components/TariffsTable/TariffsTable.js.map +1 -1
  655. package/lib/components/TariffsTable/TariffsTableCell.js +1 -1
  656. package/lib/components/TariffsTable/TariffsTableCell.js.map +1 -1
  657. package/lib/components/TariffsTable/TariffsTableRow.js +1 -2
  658. package/lib/components/TariffsTable/TariffsTableRow.js.map +1 -1
  659. package/lib/components/TariffsTable/dataFixture.js +4 -2
  660. package/lib/components/TariffsTable/dataFixture.js.map +1 -1
  661. package/lib/components/TariffsTable/utils/getButtonAriaLabel.d.ts +1 -1
  662. package/lib/components/TariffsTable/utils/getButtonAriaLabel.js +1 -2
  663. package/lib/components/TariffsTable/utils/getButtonAriaLabel.js.map +1 -1
  664. package/lib/components/Tile/Tile.js +2 -3
  665. package/lib/components/Tile/Tile.js.map +1 -1
  666. package/lib/hooks/useOutsideClick.d.ts +5 -0
  667. package/lib/hooks/useOutsideClick.js +18 -0
  668. package/lib/hooks/useOutsideClick.js.map +1 -0
  669. package/{mobile/lib/hooks/useFetchSafeBoxes.d.ts → lib/hooks/useSafeBoxes.d.ts} +1 -3
  670. package/lib/hooks/{useFetchSafeBoxes.js → useSafeBoxes.js} +7 -8
  671. package/lib/hooks/useSafeBoxes.js.map +1 -0
  672. package/lib/icons/IconName.d.ts +1 -92
  673. package/lib/icons/IconName.js +3 -3
  674. package/lib/icons/IconName.js.map +1 -1
  675. package/lib/model/HeadlineType.d.ts +8 -0
  676. package/lib/model/Picture.d.ts +1 -0
  677. package/lib/react/setup-fixture.js +0 -2
  678. package/lib/react/setup-fixture.js.map +1 -1
  679. package/lib/ui-kit/BenefitItem/BenefitItem.js +3 -1
  680. package/lib/ui-kit/BenefitItem/BenefitItem.js.map +1 -1
  681. package/lib/ui-kit/BlockWrapper.d.ts +0 -3
  682. package/lib/ui-kit/BlockWrapper.js +4 -4
  683. package/lib/ui-kit/BlockWrapper.js.map +1 -1
  684. package/lib/ui-kit/BlocksList/renderBlocksList.d.ts +1 -1
  685. package/lib/ui-kit/BlocksList/renderBlocksList.js +1 -1
  686. package/lib/ui-kit/BlocksList/renderBlocksList.js.map +1 -1
  687. package/lib/ui-kit/Button/Button.js +6 -10
  688. package/lib/ui-kit/Button/Button.js.map +1 -1
  689. package/lib/ui-kit/Button/Button.mobile.js +1 -1
  690. package/lib/ui-kit/Button/Button.mobile.js.map +1 -1
  691. package/lib/ui-kit/Button/ButtonInner.js +3 -2
  692. package/lib/ui-kit/Button/ButtonInner.js.map +1 -1
  693. package/lib/ui-kit/Button/ButtonProps.d.ts +1 -7
  694. package/lib/ui-kit/Button/ButtonSection.js +5 -10
  695. package/lib/ui-kit/Button/ButtonSection.js.map +1 -1
  696. package/lib/ui-kit/Button/buttonClassNameConstants.d.ts +1 -0
  697. package/lib/ui-kit/Button/buttonClassNameConstants.js +6 -0
  698. package/lib/ui-kit/Button/buttonClassNameConstants.js.map +1 -1
  699. package/lib/ui-kit/CurrencyInput/CurrencyInput.js +8 -2
  700. package/lib/ui-kit/CurrencyInput/CurrencyInput.js.map +1 -1
  701. package/lib/ui-kit/CurrencyInput/adjustValue .d.ts +2 -0
  702. package/lib/ui-kit/CurrencyInput/adjustValue .js +9 -2
  703. package/lib/ui-kit/CurrencyInput/adjustValue .js.map +1 -1
  704. package/lib/ui-kit/Foldable/DefaultButton.d.ts +2 -0
  705. package/lib/ui-kit/Foldable/DefaultButton.js +10 -0
  706. package/lib/ui-kit/Foldable/DefaultButton.js.map +1 -0
  707. package/lib/ui-kit/Foldable/FoldButtonProps.d.ts +12 -0
  708. package/lib/ui-kit/Foldable/FoldButtonProps.js +2 -0
  709. package/lib/ui-kit/Foldable/FoldButtonProps.js.map +1 -0
  710. package/lib/ui-kit/Foldable/Foldable.d.ts +11 -17
  711. package/lib/ui-kit/Foldable/Foldable.js +22 -14
  712. package/lib/ui-kit/Foldable/Foldable.js.map +1 -1
  713. package/lib/ui-kit/Icon/Icon.js +4 -5
  714. package/lib/ui-kit/Icon/Icon.js.map +1 -1
  715. package/lib/ui-kit/Icon/IconProps.d.ts +0 -1
  716. package/lib/ui-kit/Img/Img.d.ts +1 -2
  717. package/lib/ui-kit/Img/Img.js +1 -6
  718. package/lib/ui-kit/Img/Img.js.map +1 -1
  719. package/lib/ui-kit/Img/Img.mobile.js +1 -3
  720. package/lib/ui-kit/Img/Img.mobile.js.map +1 -1
  721. package/lib/ui-kit/InnerTable/InnerTableBody.js +1 -1
  722. package/lib/ui-kit/InnerTable/InnerTableBody.js.map +1 -1
  723. package/lib/ui-kit/InnerTable/InnerTableBodyItem.js +6 -2
  724. package/lib/ui-kit/InnerTable/InnerTableBodyItem.js.map +1 -1
  725. package/lib/ui-kit/InnerTable/InnerTableButton.js +1 -1
  726. package/lib/ui-kit/InnerTable/InnerTableButton.js.map +1 -1
  727. package/lib/ui-kit/InnerTable/InnerTableHeader.js +1 -1
  728. package/lib/ui-kit/InnerTable/InnerTableHeader.js.map +1 -1
  729. package/lib/ui-kit/Input/Input.js +12 -3
  730. package/lib/ui-kit/Input/Input.js.map +1 -1
  731. package/lib/ui-kit/Input/InputProps.d.ts +2 -0
  732. package/lib/ui-kit/InputRange/InputRange.js +2 -2
  733. package/lib/ui-kit/InputRange/InputRange.js.map +1 -1
  734. package/lib/ui-kit/IntersectionObserverTag.d.ts +11 -0
  735. package/lib/ui-kit/IntersectionObserverTag.js +20 -0
  736. package/lib/ui-kit/IntersectionObserverTag.js.map +1 -0
  737. package/lib/ui-kit/List/List.fixture.d.ts +0 -4
  738. package/lib/ui-kit/List/List.js +13 -8
  739. package/lib/ui-kit/List/List.js.map +1 -1
  740. package/lib/ui-kit/List/ListItem.d.ts +2 -2
  741. package/lib/ui-kit/List/ListItem.js +7 -21
  742. package/lib/ui-kit/List/ListItem.js.map +1 -1
  743. package/lib/ui-kit/List/ListProps.d.ts +5 -3
  744. package/lib/ui-kit/Radio/Radio.js +1 -1
  745. package/lib/ui-kit/Radio/Radio.js.map +1 -1
  746. package/lib/ui-kit/Select/Select.js +5 -2
  747. package/lib/ui-kit/Select/Select.js.map +1 -1
  748. package/lib/utils/getSanitizedValue.d.ts +1 -0
  749. package/lib/utils/getSanitizedValue.js +2 -0
  750. package/lib/utils/getSanitizedValue.js.map +1 -0
  751. package/mobile/bundle/EventBus/EventBus.d.ts +10 -0
  752. package/mobile/bundle/EventBus/EventMap.d.ts +7 -0
  753. package/mobile/bundle/ProjectSettings.d.ts +24 -0
  754. package/mobile/bundle/api/DaDataAPI.d.ts +15 -0
  755. package/mobile/bundle/api/LikeAPI.d.ts +9 -0
  756. package/mobile/bundle/bundle.umd.js +202 -648
  757. package/mobile/bundle/bundle.umd.min.js +1 -1
  758. package/mobile/bundle/components/Accordion/Accordion.d.ts +5 -0
  759. package/mobile/bundle/components/Accordion/AccordionContent.d.ts +43 -0
  760. package/mobile/bundle/components/Accordion/AccordionItem.d.ts +5 -0
  761. package/mobile/bundle/components/BaseTile/BaseTile.d.ts +5 -0
  762. package/mobile/bundle/components/BaseTile/BaseTileProps.d.ts +15 -0
  763. package/mobile/bundle/components/BaseTile/getTileHeadingType.d.ts +1 -0
  764. package/mobile/bundle/components/BaseTile/getTileMinHeight.d.ts +1 -0
  765. package/mobile/bundle/components/BaseTile/getTileRightPadding.d.ts +1 -0
  766. package/mobile/bundle/components/BenefitsBlock/BenefitsBlock.d.ts +5 -0
  767. package/mobile/bundle/components/BenefitsBlock/BenefitsBlockContent.d.ts +52 -0
  768. package/mobile/bundle/components/Blocks.d.ts +17 -0
  769. package/mobile/bundle/components/Bonus/Bonus.d.ts +5 -0
  770. package/mobile/bundle/components/Bonus/BonusContent.d.ts +45 -0
  771. package/mobile/bundle/components/BonusBenefitsBlock/BonusBenefitsBlock.d.ts +5 -0
  772. package/mobile/bundle/components/BonusBenefitsBlock/BonusBenefitsBlockContent.d.ts +15 -0
  773. package/mobile/bundle/components/BonusBenefitsBlock/getElementsColsValue.d.ts +1 -0
  774. package/mobile/bundle/components/Calculator/BonusCalculatorForm.d.ts +5 -0
  775. package/mobile/bundle/components/Calculator/Calculator.d.ts +5 -0
  776. package/mobile/bundle/components/Calculator/CalculatorContent.d.ts +129 -0
  777. package/mobile/bundle/components/Calculator/CalculatorValueBlock.d.ts +8 -0
  778. package/mobile/bundle/components/Calculator/CreditCalculatorForm.d.ts +7 -0
  779. package/mobile/bundle/components/Calculator/DepositCalculatorForm.d.ts +5 -0
  780. package/mobile/bundle/components/Calculator/EmbeddableCalcBlocks.d.ts +9 -0
  781. package/mobile/bundle/components/Calculator/Rate.d.ts +7 -0
  782. package/mobile/bundle/components/Calculator/constants.d.ts +16 -0
  783. package/mobile/bundle/components/Calculator/getBonus.d.ts +2 -0
  784. package/mobile/bundle/components/Calculator/getCreditRate.d.ts +7 -0
  785. package/mobile/bundle/components/Calculator/getDefaultMonths.d.ts +1 -0
  786. package/mobile/bundle/components/Calculator/getDefaultSum.d.ts +1 -0
  787. package/mobile/bundle/components/Calculator/getMonthlyPayment.d.ts +6 -0
  788. package/mobile/bundle/components/Calculator/renderButtonSection.d.ts +2 -0
  789. package/mobile/bundle/components/Calculator/renderCalculatorBlock.d.ts +3 -0
  790. package/mobile/bundle/components/Calculator/renderFootnote.d.ts +2 -0
  791. package/mobile/bundle/components/Calculator/renderInitialFeeInput.d.ts +6 -0
  792. package/mobile/bundle/components/Calculator/renderMonthsInput.d.ts +8 -0
  793. package/mobile/bundle/components/Calculator/renderPaymentTypeSelector.d.ts +6 -0
  794. package/mobile/bundle/components/Calculator/renderProposal.d.ts +2 -0
  795. package/mobile/bundle/components/Calculator/renderProposalMortgage.d.ts +8 -0
  796. package/mobile/bundle/components/Calculator/renderRealEstateValue.d.ts +6 -0
  797. package/mobile/bundle/components/Calculator/renderWantedSumInput.d.ts +11 -0
  798. package/mobile/bundle/components/Calculator/useBonusCalculatorParams.d.ts +36 -0
  799. package/mobile/bundle/components/Calculator/useCalculatorParams.d.ts +1 -0
  800. package/mobile/bundle/components/Calculator/useCreditCalculatorParams.d.ts +27 -0
  801. package/mobile/bundle/components/CardTransfer/CardTransfer.d.ts +5 -0
  802. package/mobile/bundle/components/CardTransfer/CardTransferContent.d.ts +10 -0
  803. package/mobile/bundle/components/Catalog/Catalog.d.ts +5 -0
  804. package/mobile/bundle/components/Catalog/CatalogCard.d.ts +7 -0
  805. package/mobile/bundle/components/Catalog/CatalogContent.d.ts +25 -0
  806. package/mobile/bundle/components/ComparisonTable/ComparisonTable.d.ts +5 -0
  807. package/mobile/bundle/components/ComparisonTable/ComparisonTableBody.d.ts +12 -0
  808. package/mobile/bundle/components/ComparisonTable/ComparisonTableColumnHeaders.d.ts +10 -0
  809. package/mobile/bundle/components/ComparisonTable/ComparisonTableContent.d.ts +50 -0
  810. package/mobile/bundle/components/ComparisonTable/ComparisonTableRows.d.ts +13 -0
  811. package/mobile/bundle/components/ComparisonTable/HeaderCell.d.ts +11 -0
  812. package/mobile/bundle/components/ComparisonTable/TableCarouselContainer.d.ts +7 -0
  813. package/mobile/bundle/components/ComparisonTable/TableCell.d.ts +9 -0
  814. package/mobile/bundle/components/ComparisonTable/TableColumn.d.ts +15 -0
  815. package/mobile/bundle/components/ComparisonTable/TableRow.d.ts +14 -0
  816. package/mobile/bundle/components/ComparisonTable/TableRowContainer.d.ts +1 -0
  817. package/mobile/bundle/components/ComparisonTable/constants.d.ts +6 -0
  818. package/mobile/bundle/components/ContentPage/ContentPage.d.ts +10 -0
  819. package/mobile/bundle/components/ContentPage/ContentPageContext.d.ts +17 -0
  820. package/mobile/bundle/components/ContentPage/ContentPageHead.d.ts +7 -0
  821. package/mobile/bundle/components/ContentPage/computeAPIFallback.d.ts +5 -0
  822. package/mobile/bundle/components/ContentPage/filterBlocks.d.ts +3 -0
  823. package/mobile/bundle/components/ContentPage/isBlockInRegistry.d.ts +2 -0
  824. package/mobile/bundle/components/ContentPage/normalizeBlock.d.ts +2 -0
  825. package/mobile/bundle/components/ContentPage/normalizePage.d.ts +3 -0
  826. package/mobile/bundle/components/ContentPage/renderBlock.d.ts +13 -0
  827. package/mobile/bundle/components/ErrorBlock/ErrorBlock.d.ts +5 -0
  828. package/mobile/bundle/components/ErrorBlock/ErrorBlockContent.d.ts +48 -0
  829. package/mobile/bundle/components/ExchangeRateTile/CurrencyProps.d.ts +5 -0
  830. package/mobile/bundle/components/ExchangeRateTile/CurrencyTable.d.ts +7 -0
  831. package/mobile/bundle/components/ExchangeRateTile/CurrentLocation.d.ts +7 -0
  832. package/mobile/bundle/components/ExchangeRateTile/ExchangeCurrencyCalculator.d.ts +21 -0
  833. package/mobile/bundle/components/ExchangeRateTile/ExchangeRateTile.d.ts +5 -0
  834. package/mobile/bundle/components/ExchangeRateTile/ExchangeRateTileContent.d.ts +8 -0
  835. package/mobile/bundle/components/ExchangeRateTile/calculateResult.d.ts +2 -0
  836. package/mobile/bundle/components/ExchangeRateTile/callbackCurrencySelect.d.ts +8 -0
  837. package/mobile/bundle/components/ExchangeRateTile/formatCurrency.d.ts +1 -0
  838. package/mobile/bundle/components/ExchangeRateTile/renderInput.d.ts +13 -0
  839. package/mobile/bundle/components/Footer/Contacts.d.ts +7 -0
  840. package/mobile/bundle/components/Footer/Footer.d.ts +5 -0
  841. package/mobile/bundle/components/Footer/FooterContent.d.ts +44 -0
  842. package/mobile/bundle/components/Footer/FooterLink.d.ts +5 -0
  843. package/mobile/bundle/components/Footer/HorizontalNavigation.d.ts +6 -0
  844. package/mobile/bundle/components/Footer/HorizontalNavigationLink.d.ts +8 -0
  845. package/mobile/bundle/components/Footer/MediaButton.d.ts +7 -0
  846. package/mobile/bundle/components/Footer/Sitemap.d.ts +8 -0
  847. package/mobile/bundle/components/Footer/SocialMedia.d.ts +8 -0
  848. package/mobile/bundle/components/Footer/TextInformation.d.ts +2 -0
  849. package/mobile/bundle/components/Footer/TextInformationLink.d.ts +8 -0
  850. package/mobile/bundle/components/Gallery/Gallery.d.ts +2 -0
  851. package/mobile/bundle/components/Gallery/GalleryCardInner.d.ts +2 -0
  852. package/mobile/bundle/components/Gallery/GalleryContainer.d.ts +13 -0
  853. package/mobile/bundle/components/Gallery/GalleryContent.d.ts +64 -0
  854. package/mobile/bundle/components/Gallery/GalleryInner.d.ts +7 -0
  855. package/mobile/bundle/components/Gallery/GalleryProps.d.ts +4 -0
  856. package/mobile/bundle/components/Gallery/constants.d.ts +4 -0
  857. package/mobile/bundle/components/GracePeriod/GracePeriod.d.ts +5 -0
  858. package/mobile/bundle/components/GracePeriod/GracePeriodContent.d.ts +32 -0
  859. package/mobile/bundle/components/Header/DropdownMenu.d.ts +14 -0
  860. package/mobile/bundle/components/Header/Header.d.ts +5 -0
  861. package/mobile/bundle/components/Header/Header.fallback.d.ts +2 -0
  862. package/mobile/bundle/components/Header/HeaderBurger.d.ts +11 -0
  863. package/mobile/bundle/components/Header/HeaderContent.d.ts +41 -0
  864. package/mobile/bundle/components/Header/HeaderSecondaryMenu.d.ts +10 -0
  865. package/mobile/bundle/components/Header/HeaderSecondaryMenuButton.d.ts +6 -0
  866. package/mobile/bundle/components/Header/HeaderSubMenu.d.ts +9 -0
  867. package/mobile/bundle/components/Header/HeaderTop.d.ts +6 -0
  868. package/mobile/bundle/components/Headline/Headline.d.ts +5 -0
  869. package/mobile/bundle/components/Headline/HeadlineContent.d.ts +15 -0
  870. package/mobile/bundle/components/Headline/constants.d.ts +20 -0
  871. package/mobile/bundle/components/InsuranceAmountBlock/InsuranceAmountBlock.d.ts +5 -0
  872. package/mobile/bundle/components/InsuranceAmountBlock/InsuranceAmountBlockContent.d.ts +30 -0
  873. package/mobile/bundle/components/InsuranceAmountBlock/InsuranceAmountBlockInner.d.ts +7 -0
  874. package/mobile/bundle/components/LikeControl/LikeControl.d.ts +2 -0
  875. package/mobile/bundle/components/LinkDocs/LinkDocs.d.ts +5 -0
  876. package/mobile/bundle/components/LinkDocs/LinkDocsContent.d.ts +43 -0
  877. package/mobile/bundle/components/LinkDocs/LinkDocsHorizontalList.d.ts +6 -0
  878. package/mobile/bundle/components/LinkDocs/LinkDocsList.d.ts +9 -0
  879. package/mobile/bundle/components/LinkDocs/LinkDocsListItem.d.ts +2 -0
  880. package/mobile/bundle/components/LinkDocs/LinkDocsListItemBase.d.ts +13 -0
  881. package/mobile/bundle/components/LinkDocs/LinkDocsVerticalList.d.ts +8 -0
  882. package/mobile/bundle/components/LinkDocs/linkDocsContentExample.d.ts +2 -0
  883. package/mobile/bundle/components/LinkList/LinkList.d.ts +5 -0
  884. package/mobile/bundle/components/LinkList/LinkListContent.d.ts +8 -0
  885. package/mobile/bundle/components/LinkList/linkListContentExample.d.ts +2 -0
  886. package/mobile/bundle/components/MiniGallery/MiniGallery.d.ts +5 -0
  887. package/mobile/bundle/components/MiniGallery/MiniGalleryContent.d.ts +12 -0
  888. package/mobile/bundle/components/MobileAppTile/MobileAppTile.d.ts +5 -0
  889. package/mobile/bundle/components/MobileAppTile/MobileAppTileContent.d.ts +31 -0
  890. package/mobile/bundle/components/OfficeServicesBlock/OfficeServicesBlock.d.ts +5 -0
  891. package/mobile/bundle/components/OfficeServicesBlock/OfficeServicesBlockContent.d.ts +10 -0
  892. package/mobile/bundle/components/OtherProducts/OtherProducts.d.ts +5 -0
  893. package/mobile/bundle/components/OtherProducts/OtherProductsContent.d.ts +25 -0
  894. package/mobile/bundle/components/OtherProducts/OtherProductsItem.d.ts +6 -0
  895. package/mobile/bundle/components/PictureText/PictureText.d.ts +5 -0
  896. package/mobile/bundle/components/PictureText/PictureTextContent.d.ts +34 -0
  897. package/mobile/bundle/components/Placeholder/Placeholder.d.ts +6 -0
  898. package/mobile/bundle/components/Placeholder/PlaceholderContent.d.ts +5 -0
  899. package/mobile/bundle/components/ProductBlock/ProductBlock.d.ts +5 -0
  900. package/mobile/bundle/components/ProductBlock/ProductBlockContent.d.ts +54 -0
  901. package/mobile/bundle/components/ProductBlock/ProductBlockInner.d.ts +4 -0
  902. package/mobile/bundle/components/ProductBlock/renderBackwardButton.d.ts +4 -0
  903. package/mobile/bundle/components/ProductBlock/renderBenefit.d.ts +5 -0
  904. package/mobile/bundle/components/ProductGallery/ProductGallery.d.ts +5 -0
  905. package/mobile/bundle/components/ProductGallery/ProductGalleryBlock.d.ts +8 -0
  906. package/mobile/bundle/components/ProductGallery/ProductGalleryContent.d.ts +29 -0
  907. package/mobile/bundle/components/ProductTile/ProductTile.d.ts +5 -0
  908. package/mobile/bundle/components/ProductTile/ProductTileContent.d.ts +33 -0
  909. package/mobile/bundle/components/PromoTile/PromoTile.d.ts +5 -0
  910. package/mobile/bundle/components/PromoTile/PromoTileContent.d.ts +12 -0
  911. package/mobile/bundle/components/Recommendation/Recommendation.d.ts +5 -0
  912. package/mobile/bundle/components/Recommendation/RecommendationCard.d.ts +7 -0
  913. package/mobile/bundle/components/Recommendation/RecommendationContent.d.ts +43 -0
  914. package/mobile/bundle/components/SafeDepositRental/RegionsAndBranches.d.ts +12 -0
  915. package/mobile/bundle/components/SafeDepositRental/RenderRadioButtons.d.ts +2 -0
  916. package/mobile/bundle/components/SafeDepositRental/RentalPeriod.d.ts +6 -0
  917. package/mobile/bundle/components/SafeDepositRental/SafeBoxCases.d.ts +11 -0
  918. package/mobile/bundle/components/SafeDepositRental/SafeDepositRental.d.ts +5 -0
  919. package/mobile/bundle/components/SafeDepositRental/SafeDepositRentalContent.d.ts +9 -0
  920. package/mobile/bundle/components/SafeDepositRental/SafeDepositRentalFields.d.ts +12 -0
  921. package/mobile/bundle/components/SafeDepositRental/SafeDepositRentalForm.d.ts +11 -0
  922. package/mobile/bundle/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +6 -0
  923. package/mobile/bundle/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +8 -0
  924. package/mobile/bundle/components/SafeDepositRental/WrapperSelect.d.ts +11 -0
  925. package/mobile/bundle/components/SafeDepositRental/YandexMap.d.ts +5 -0
  926. package/mobile/bundle/components/SafeDepositRental/renderClusterer.d.ts +2 -0
  927. package/mobile/bundle/components/SafeDepositRental/useGetRegions.d.ts +6 -0
  928. package/mobile/bundle/components/SafeDepositRental/useYandexMaps.d.ts +2 -0
  929. package/mobile/bundle/components/SafeDepositRental/utils.d.ts +3 -0
  930. package/mobile/bundle/components/StepsBlock/StepsBlock.d.ts +5 -0
  931. package/mobile/bundle/components/StepsBlock/StepsBlockContent.d.ts +43 -0
  932. package/mobile/bundle/components/StepsBlock/StepsBlockStyleMaps.d.ts +11 -0
  933. package/mobile/bundle/components/StepsBlock/renderItems.d.ts +3 -0
  934. package/mobile/bundle/components/Tabs/Tabs.d.ts +13 -0
  935. package/mobile/bundle/components/Tabs/TabsContent.d.ts +36 -0
  936. package/mobile/bundle/components/Tabs/renderGroupTab.d.ts +4 -0
  937. package/mobile/bundle/components/Tabs/renderLinkTab.d.ts +9 -0
  938. package/mobile/bundle/components/Tabs/renderTab.d.ts +12 -0
  939. package/mobile/bundle/components/Tabs/tabItemClasses.d.ts +6 -0
  940. package/mobile/bundle/components/TariffsTable/EmbeddableCellData.d.ts +12 -0
  941. package/mobile/bundle/components/TariffsTable/TableTileHeader.d.ts +2 -0
  942. package/mobile/bundle/components/TariffsTable/TariffsTable.d.ts +5 -0
  943. package/mobile/bundle/components/TariffsTable/TariffsTableCell.d.ts +9 -0
  944. package/mobile/bundle/components/TariffsTable/TariffsTableContent.d.ts +95 -0
  945. package/mobile/bundle/components/TariffsTable/TariffsTableHorizontal.d.ts +6 -0
  946. package/mobile/bundle/components/TariffsTable/TariffsTableRow.d.ts +9 -0
  947. package/mobile/bundle/components/TariffsTable/TariffsTableRowContainer.d.ts +7 -0
  948. package/mobile/bundle/components/TariffsTable/TariffsTableTileCell.d.ts +8 -0
  949. package/mobile/bundle/components/TariffsTable/TariffsTableVertical.d.ts +6 -0
  950. package/mobile/bundle/components/TariffsTable/constants.d.ts +4 -0
  951. package/mobile/bundle/components/TariffsTable/dataFixture.d.ts +5 -0
  952. package/mobile/bundle/components/TariffsTable/utils/getButtonAriaLabel.d.ts +2 -0
  953. package/mobile/bundle/components/TextBlock/TextBlock.d.ts +5 -0
  954. package/mobile/bundle/components/TextBlock/TextBlockContent.d.ts +22 -0
  955. package/mobile/bundle/components/Tile/Tile.d.ts +6 -0
  956. package/mobile/bundle/components/Tile/TileContent.d.ts +34 -0
  957. package/mobile/bundle/content-page-repository/ContentPageRepository.d.ts +11 -0
  958. package/mobile/bundle/content-page-repository/TransformationOptions.d.ts +4 -0
  959. package/mobile/bundle/content-page-repository/index.d.ts +2 -0
  960. package/mobile/bundle/content-page-repository/mapJSON.d.ts +1 -0
  961. package/mobile/bundle/content-page-repository/transformContentPage.d.ts +3 -0
  962. package/mobile/bundle/content-page-repository/transformImg.d.ts +11 -0
  963. package/mobile/bundle/content-page-repository/transformMarkdown.d.ts +1 -0
  964. package/mobile/bundle/content-page-repository/transformPicture.d.ts +3 -0
  965. package/mobile/bundle/content-page-repository/transformSrc.d.ts +3 -0
  966. package/mobile/bundle/hooks/useExchangeRates.d.ts +2 -0
  967. package/mobile/bundle/hooks/useExternalNS.d.ts +2 -0
  968. package/mobile/bundle/hooks/useGeolocation.d.ts +1 -0
  969. package/mobile/bundle/hooks/useLikeService.d.ts +5 -0
  970. package/mobile/bundle/hooks/useLink.d.ts +18 -0
  971. package/mobile/bundle/hooks/useOutsideClick.d.ts +5 -0
  972. package/{lib/hooks/useFetchSafeBoxes.d.ts → mobile/bundle/hooks/useSafeBoxes.d.ts} +1 -3
  973. package/mobile/bundle/hooks/useSearch.d.ts +4 -0
  974. package/mobile/bundle/hooks/useTableArrowScrollControl.d.ts +7 -0
  975. package/mobile/bundle/hooks/useTariffsInnerTableData.d.ts +1 -0
  976. package/mobile/bundle/icons/IconName.d.ts +194 -0
  977. package/mobile/bundle/index.d.ts +9 -0
  978. package/mobile/bundle/model/AlignType.d.ts +9 -0
  979. package/mobile/bundle/model/BgColorVersion.d.ts +8 -0
  980. package/mobile/bundle/model/BlockDecorator.d.ts +14 -0
  981. package/mobile/bundle/model/BlockVersion.d.ts +11 -0
  982. package/mobile/bundle/model/BlocksRegistry.d.ts +5 -0
  983. package/mobile/bundle/model/ButtonVersion.d.ts +6 -0
  984. package/mobile/bundle/model/ContentPageDef.d.ts +52 -0
  985. package/mobile/bundle/model/EmptyOptionType.d.ts +4 -0
  986. package/mobile/bundle/model/Fallback.d.ts +5 -0
  987. package/mobile/bundle/model/Footnote.d.ts +4 -0
  988. package/mobile/bundle/model/GalleryVersion.d.ts +1 -0
  989. package/mobile/bundle/model/HeadlineType.d.ts +29 -0
  990. package/mobile/bundle/model/IconVersion.d.ts +9 -0
  991. package/mobile/bundle/model/ImageSize.d.ts +6 -0
  992. package/mobile/bundle/model/InputTypes.d.ts +1 -0
  993. package/mobile/bundle/model/LinkProps.d.ts +24 -0
  994. package/mobile/bundle/model/ListOrientation.d.ts +8 -0
  995. package/mobile/bundle/model/Picture.d.ts +59 -0
  996. package/mobile/bundle/model/ProductColorVersion.d.ts +4 -0
  997. package/mobile/bundle/model/SitemapProps.d.ts +24 -0
  998. package/mobile/bundle/model/SizeVersion.d.ts +8 -0
  999. package/mobile/bundle/model/TableVersion.d.ts +1 -0
  1000. package/mobile/bundle/model/VNode.d.ts +1 -0
  1001. package/mobile/bundle/react/setup-fixture.d.ts +4 -0
  1002. package/mobile/bundle/services/sitemap/SitemapProps.d.ts +24 -0
  1003. package/mobile/bundle/services/sitemap/checkIsHrefSameOrigin.d.ts +4 -0
  1004. package/mobile/bundle/services/sitemap/findActiveSubItem.d.ts +3 -0
  1005. package/mobile/bundle/services/sitemap/isHrefActive.d.ts +4 -0
  1006. package/mobile/bundle/services/sitemap/isSubItemActive.d.ts +3 -0
  1007. package/mobile/bundle/services/sitemap/isTopItemActive.d.ts +3 -0
  1008. package/mobile/bundle/services/sitemap/mergeTopItems.d.ts +2 -0
  1009. package/mobile/bundle/services/sitemap/useSitemap.d.ts +3 -0
  1010. package/mobile/bundle/ui-kit/BenefitItem/BenefitItem.d.ts +4 -0
  1011. package/mobile/bundle/ui-kit/BenefitItem/BenefitItemProps.d.ts +20 -0
  1012. package/mobile/bundle/ui-kit/BlockWrapper.d.ts +7 -0
  1013. package/mobile/bundle/ui-kit/BlocksList/BlocksListProps.d.ts +96 -0
  1014. package/mobile/bundle/ui-kit/BlocksList/EmbeddableBlocks.d.ts +8 -0
  1015. package/mobile/bundle/ui-kit/BlocksList/renderBlocksList.d.ts +9 -0
  1016. package/mobile/bundle/ui-kit/Breadcrumb.d.ts +6 -0
  1017. package/mobile/bundle/ui-kit/Button/ArrowButton.d.ts +2 -0
  1018. package/mobile/bundle/ui-kit/Button/Button.d.ts +2 -0
  1019. package/mobile/bundle/ui-kit/Button/ButtonInner.d.ts +7 -0
  1020. package/mobile/bundle/ui-kit/Button/ButtonProps.d.ts +54 -0
  1021. package/mobile/bundle/ui-kit/Button/ButtonSection.d.ts +5 -0
  1022. package/mobile/bundle/ui-kit/Button/GetButtonClassParams.d.ts +6 -0
  1023. package/mobile/bundle/ui-kit/Button/LikeButton.d.ts +6 -0
  1024. package/mobile/bundle/ui-kit/Button/buttonClassNameConstants.d.ts +5 -0
  1025. package/mobile/bundle/ui-kit/Button/getDisabledButtonClasses.d.ts +2 -0
  1026. package/mobile/bundle/ui-kit/Button/getRegularButtonClasses.d.ts +2 -0
  1027. package/mobile/bundle/ui-kit/Button/renderArrows.d.ts +9 -0
  1028. package/mobile/bundle/ui-kit/Checkbox/Checkbox.d.ts +2 -0
  1029. package/mobile/bundle/ui-kit/Checkbox/CheckboxProps.d.ts +7 -0
  1030. package/mobile/bundle/ui-kit/CurrencyInput/CurrencyInput.d.ts +2 -0
  1031. package/mobile/bundle/ui-kit/CurrencyInput/CurrencyInputProps.d.ts +5 -0
  1032. package/mobile/bundle/ui-kit/CurrencyInput/adjustValue .d.ts +3 -0
  1033. package/mobile/bundle/ui-kit/Description/Description.d.ts +5 -0
  1034. package/mobile/bundle/ui-kit/Foldable/DefaultButton.d.ts +2 -0
  1035. package/mobile/bundle/ui-kit/Foldable/FoldButtonProps.d.ts +12 -0
  1036. package/mobile/bundle/ui-kit/Foldable/Foldable.d.ts +16 -0
  1037. package/mobile/bundle/ui-kit/HeaderItem/HeaderItem.d.ts +3 -0
  1038. package/mobile/bundle/ui-kit/Heading/Heading.d.ts +2 -0
  1039. package/mobile/bundle/ui-kit/Heading/HeadingProps.d.ts +23 -0
  1040. package/mobile/bundle/ui-kit/Icon/Icon.d.ts +2 -0
  1041. package/mobile/bundle/ui-kit/Icon/IconProps.d.ts +21 -0
  1042. package/mobile/bundle/ui-kit/Img/Img.d.ts +2 -0
  1043. package/mobile/bundle/ui-kit/Img/ImgAsPicture.d.ts +4 -0
  1044. package/mobile/bundle/ui-kit/Img/ImgInner.d.ts +2 -0
  1045. package/mobile/bundle/ui-kit/Img/ImgProps.d.ts +11 -0
  1046. package/mobile/bundle/ui-kit/Img/getIconVersion.d.ts +1 -0
  1047. package/mobile/bundle/ui-kit/InnerTable/InnerTable.d.ts +5 -0
  1048. package/mobile/bundle/ui-kit/InnerTable/InnerTableBody.d.ts +7 -0
  1049. package/mobile/bundle/ui-kit/InnerTable/InnerTableBodyItem.d.ts +6 -0
  1050. package/mobile/bundle/ui-kit/InnerTable/InnerTableButton.d.ts +6 -0
  1051. package/mobile/bundle/ui-kit/InnerTable/InnerTableHeader.d.ts +7 -0
  1052. package/mobile/bundle/ui-kit/InnerTable/InnerTableProps.d.ts +24 -0
  1053. package/mobile/bundle/ui-kit/Input/Input.d.ts +2 -0
  1054. package/mobile/bundle/ui-kit/Input/InputProps.d.ts +16 -0
  1055. package/mobile/bundle/ui-kit/InputRange/InputRange.d.ts +2 -0
  1056. package/mobile/bundle/ui-kit/InputRange/InputRangeProps.d.ts +11 -0
  1057. package/mobile/bundle/ui-kit/IntersectionObserverTag.d.ts +11 -0
  1058. package/mobile/bundle/ui-kit/List/List.d.ts +2 -0
  1059. package/mobile/bundle/ui-kit/List/ListContent.d.ts +4 -0
  1060. package/mobile/bundle/ui-kit/List/ListItem.d.ts +12 -0
  1061. package/mobile/bundle/ui-kit/List/ListProps.d.ts +26 -0
  1062. package/mobile/bundle/ui-kit/Logo/Logo.d.ts +8 -0
  1063. package/mobile/bundle/ui-kit/Radio/Radio.d.ts +2 -0
  1064. package/mobile/bundle/ui-kit/Radio/RadioProps.d.ts +9 -0
  1065. package/mobile/bundle/ui-kit/RadioButtonGroup/RadioButtonGroup.d.ts +12 -0
  1066. package/mobile/bundle/ui-kit/SVG.d.ts +19 -0
  1067. package/mobile/bundle/ui-kit/SearchBar/SearchBar.d.ts +2 -0
  1068. package/mobile/bundle/ui-kit/SearchBar/SearchBarInner.d.ts +5 -0
  1069. package/mobile/bundle/ui-kit/Select/Select.d.ts +14 -0
  1070. package/mobile/bundle/ui-kit/SwipeListControl/SwipeListControl.d.ts +2 -0
  1071. package/mobile/bundle/ui-kit/SwipeListControl/SwipeListControlDots.d.ts +6 -0
  1072. package/mobile/bundle/ui-kit/SwipeListControl/SwipeListControlItem.d.ts +9 -0
  1073. package/mobile/bundle/ui-kit/SwipeListControl/SwipeListControlList.d.ts +10 -0
  1074. package/mobile/bundle/ui-kit/SwipeListControl/SwipeListControlProps.d.ts +18 -0
  1075. package/mobile/bundle/ui-kit/SwipeListControl/constants.d.ts +2 -0
  1076. package/mobile/bundle/ui-kit/SwipeListControl/utils/getContainerStyle.d.ts +1 -0
  1077. package/mobile/bundle/ui-kit/SwipeListControl/utils/getIndexParts.d.ts +4 -0
  1078. package/mobile/bundle/ui-kit/SwipeListControl/utils/getScrollPoints.d.ts +8 -0
  1079. package/mobile/bundle/ui-kit/TableArrowScrollControl/TableArrowScrollControl.d.ts +2 -0
  1080. package/mobile/bundle/ui-kit/TableArrowScrollControl/TableArrowScrollControlProps.d.ts +7 -0
  1081. package/mobile/bundle/ui-kit/TopItem/TopItem.d.ts +14 -0
  1082. package/mobile/bundle/utils/addSpacesBetweenNumbers.d.ts +1 -0
  1083. package/mobile/bundle/utils/adjustHref.d.ts +4 -0
  1084. package/mobile/bundle/utils/assertUnreachable.d.ts +1 -0
  1085. package/mobile/bundle/utils/changeHashOnObserve.d.ts +9 -0
  1086. package/mobile/bundle/utils/checkIsIconRenderable.d.ts +2 -0
  1087. package/mobile/bundle/utils/clamp.d.ts +1 -0
  1088. package/mobile/bundle/utils/fetchJSON.d.ts +2 -0
  1089. package/mobile/bundle/utils/getAccordionItems.d.ts +1 -0
  1090. package/mobile/bundle/utils/getColSpan.d.ts +1 -0
  1091. package/mobile/bundle/utils/getCurrentDate.d.ts +1 -0
  1092. package/mobile/bundle/utils/getGeolocation.d.ts +1 -0
  1093. package/mobile/bundle/utils/getSanitizedValue.d.ts +1 -0
  1094. package/mobile/bundle/utils/isPictureSizeEmpty.d.ts +2 -0
  1095. package/mobile/bundle/utils/joinList.d.ts +1 -0
  1096. package/mobile/bundle/utils/maxBy.d.ts +2 -0
  1097. package/mobile/bundle/utils/roundTo.d.ts +1 -0
  1098. package/mobile/bundle/utils/style2className.d.ts +1 -0
  1099. package/mobile/bundle/utils/tableFunc.d.ts +2 -0
  1100. package/mobile/bundle/utils/url.d.ts +5 -0
  1101. package/mobile/bundle/utils/withoutMobilePath.d.ts +2 -0
  1102. package/mobile/dist/components/Accordion/AccordionItem.d.ts +1 -1
  1103. package/mobile/dist/components/Accordion/AccordionItem.js +9 -7
  1104. package/mobile/dist/components/Accordion/AccordionItem.js.map +1 -1
  1105. package/mobile/dist/components/BenefitsBlock/BenefitsBlock.js +1 -1
  1106. package/mobile/dist/components/BenefitsBlock/BenefitsBlock.js.map +1 -1
  1107. package/mobile/dist/components/Blocks.d.ts +0 -1
  1108. package/mobile/dist/components/Blocks.js +0 -2
  1109. package/mobile/dist/components/Blocks.js.map +1 -1
  1110. package/mobile/dist/components/Calculator/CalculatorContent.d.ts +1 -1
  1111. package/mobile/dist/components/CardTransfer/CardTransfer.js +3 -2
  1112. package/mobile/dist/components/CardTransfer/CardTransfer.js.map +1 -1
  1113. package/mobile/dist/components/Catalog/Catalog.js +1 -1
  1114. package/mobile/dist/components/Catalog/Catalog.js.map +1 -1
  1115. package/mobile/dist/components/Catalog/CatalogCard.js +1 -23
  1116. package/mobile/dist/components/Catalog/CatalogCard.js.map +1 -1
  1117. package/mobile/dist/components/ComparisonTable/ComparisonTable.js +13 -48
  1118. package/mobile/dist/components/ComparisonTable/ComparisonTable.js.map +1 -1
  1119. package/mobile/dist/components/ComparisonTable/TableColumn.d.ts +5 -8
  1120. package/mobile/dist/components/ComparisonTable/TableColumn.js +2 -8
  1121. package/mobile/dist/components/ComparisonTable/TableColumn.js.map +1 -1
  1122. package/mobile/dist/components/ContentPage/ContentPageContext.d.ts +0 -11
  1123. package/mobile/dist/components/ErrorBlock/ErrorBlock.js +1 -1
  1124. package/mobile/dist/components/ErrorBlock/ErrorBlock.js.map +1 -1
  1125. package/mobile/dist/components/ExchangeRateTile/renderInput.js +1 -1
  1126. package/mobile/dist/components/ExchangeRateTile/renderInput.js.map +1 -1
  1127. package/mobile/dist/components/Footer/Contacts.js +1 -1
  1128. package/mobile/dist/components/Footer/Contacts.js.map +1 -1
  1129. package/mobile/dist/components/Footer/FooterContent.d.ts +5 -9
  1130. package/mobile/dist/components/Gallery/Gallery.js +7 -3
  1131. package/mobile/dist/components/Gallery/Gallery.js.map +1 -1
  1132. package/mobile/dist/components/Gallery/GalleryCardInner.js +14 -17
  1133. package/mobile/dist/components/Gallery/GalleryCardInner.js.map +1 -1
  1134. package/mobile/dist/components/Gallery/GalleryContainer.js +2 -2
  1135. package/mobile/dist/components/Gallery/GalleryContainer.js.map +1 -1
  1136. package/mobile/dist/components/Gallery/GalleryContent.d.ts +11 -3
  1137. package/mobile/dist/components/Header/HeaderSubMenu.js +3 -2
  1138. package/mobile/dist/components/Header/HeaderSubMenu.js.map +1 -1
  1139. package/mobile/dist/components/Headline/constants.d.ts +2 -1
  1140. package/mobile/dist/components/Headline/constants.js +10 -1
  1141. package/mobile/dist/components/Headline/constants.js.map +1 -1
  1142. package/mobile/dist/components/MiniGallery/MiniGalleryContent.d.ts +1 -0
  1143. package/mobile/dist/components/OtherProducts/OtherProductsItem.js +4 -2
  1144. package/mobile/dist/components/OtherProducts/OtherProductsItem.js.map +1 -1
  1145. package/mobile/dist/components/ProductTile/ProductTile.js +1 -1
  1146. package/mobile/dist/components/ProductTile/ProductTile.js.map +1 -1
  1147. package/mobile/dist/components/Recommendation/RecommendationContent.d.ts +5 -0
  1148. package/mobile/dist/components/SafeDepositRental/RegionsAndBranches.d.ts +1 -1
  1149. package/mobile/dist/components/SafeDepositRental/SafeBoxCases.d.ts +1 -1
  1150. package/mobile/dist/components/SafeDepositRental/SafeDepositRental.d.ts +1 -1
  1151. package/mobile/dist/components/SafeDepositRental/SafeDepositRental.js +17 -3
  1152. package/mobile/dist/components/SafeDepositRental/SafeDepositRental.js.map +1 -1
  1153. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalFields.d.ts +7 -4
  1154. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalFields.js +3 -5
  1155. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalFields.js.map +1 -1
  1156. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalForm.d.ts +7 -3
  1157. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalForm.js +7 -28
  1158. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalForm.js.map +1 -1
  1159. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +1 -1
  1160. package/mobile/dist/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +0 -2
  1161. package/mobile/dist/components/SafeDepositRental/utils.d.ts +1 -1
  1162. package/mobile/dist/components/StepsBlock/StepsBlockContent.d.ts +9 -2
  1163. package/mobile/dist/components/StepsBlock/StepsBlockStyleMaps.d.ts +1 -0
  1164. package/mobile/dist/components/StepsBlock/StepsBlockStyleMaps.js +2 -0
  1165. package/mobile/dist/components/StepsBlock/StepsBlockStyleMaps.js.map +1 -1
  1166. package/mobile/dist/components/StepsBlock/renderItems.d.ts +3 -0
  1167. package/mobile/dist/components/StepsBlock/renderItems.js +6 -0
  1168. package/mobile/dist/components/StepsBlock/renderItems.js.map +1 -0
  1169. package/mobile/dist/components/TariffsTable/EmbeddableCellData.js +1 -2
  1170. package/mobile/dist/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  1171. package/mobile/dist/components/TariffsTable/TariffsTableCell.js +1 -1
  1172. package/mobile/dist/components/TariffsTable/TariffsTableCell.js.map +1 -1
  1173. package/mobile/dist/components/TariffsTable/TariffsTableRow.js +1 -2
  1174. package/mobile/dist/components/TariffsTable/TariffsTableRow.js.map +1 -1
  1175. package/mobile/dist/components/TariffsTable/dataFixture.js +4 -2
  1176. package/mobile/dist/components/TariffsTable/dataFixture.js.map +1 -1
  1177. package/mobile/dist/components/TariffsTable/utils/getButtonAriaLabel.d.ts +1 -1
  1178. package/mobile/dist/components/TariffsTable/utils/getButtonAriaLabel.js +1 -2
  1179. package/mobile/dist/components/TariffsTable/utils/getButtonAriaLabel.js.map +1 -1
  1180. package/mobile/dist/components/Tile/Tile.js +2 -3
  1181. package/mobile/dist/components/Tile/Tile.js.map +1 -1
  1182. package/mobile/dist/hooks/useOutsideClick.d.ts +5 -0
  1183. package/mobile/dist/hooks/useOutsideClick.js +21 -0
  1184. package/mobile/dist/hooks/useOutsideClick.js.map +1 -0
  1185. package/mobile/dist/hooks/useSafeBoxes.d.ts +20 -0
  1186. package/{dist/hooks/useFetchSafeBoxes.js → mobile/dist/hooks/useSafeBoxes.js} +9 -10
  1187. package/mobile/dist/hooks/useSafeBoxes.js.map +1 -0
  1188. package/mobile/dist/icons/IconName.d.ts +1 -92
  1189. package/mobile/dist/icons/IconName.js +4 -4
  1190. package/mobile/dist/icons/IconName.js.map +1 -1
  1191. package/mobile/dist/model/HeadlineType.d.ts +8 -0
  1192. package/mobile/dist/model/Picture.d.ts +1 -0
  1193. package/mobile/dist/react/setup-fixture.js +0 -2
  1194. package/mobile/dist/react/setup-fixture.js.map +1 -1
  1195. package/mobile/dist/ui-kit/BenefitItem/BenefitItem.js +3 -1
  1196. package/mobile/dist/ui-kit/BenefitItem/BenefitItem.js.map +1 -1
  1197. package/mobile/dist/ui-kit/BlockWrapper.d.ts +0 -3
  1198. package/mobile/dist/ui-kit/BlockWrapper.js +5 -5
  1199. package/mobile/dist/ui-kit/BlockWrapper.js.map +1 -1
  1200. package/mobile/dist/ui-kit/BlocksList/renderBlocksList.d.ts +1 -1
  1201. package/mobile/dist/ui-kit/BlocksList/renderBlocksList.js +1 -1
  1202. package/mobile/dist/ui-kit/BlocksList/renderBlocksList.js.map +1 -1
  1203. package/mobile/dist/ui-kit/Button/Button.js +1 -1
  1204. package/mobile/dist/ui-kit/Button/Button.js.map +1 -1
  1205. package/mobile/dist/ui-kit/Button/ButtonInner.js +3 -2
  1206. package/mobile/dist/ui-kit/Button/ButtonInner.js.map +1 -1
  1207. package/mobile/dist/ui-kit/Button/ButtonProps.d.ts +1 -7
  1208. package/mobile/dist/ui-kit/Button/ButtonSection.js +5 -10
  1209. package/mobile/dist/ui-kit/Button/ButtonSection.js.map +1 -1
  1210. package/mobile/dist/ui-kit/Button/buttonClassNameConstants.d.ts +1 -0
  1211. package/mobile/dist/ui-kit/Button/buttonClassNameConstants.js +7 -1
  1212. package/mobile/dist/ui-kit/Button/buttonClassNameConstants.js.map +1 -1
  1213. package/mobile/dist/ui-kit/CurrencyInput/CurrencyInput.js +7 -1
  1214. package/mobile/dist/ui-kit/CurrencyInput/CurrencyInput.js.map +1 -1
  1215. package/mobile/dist/ui-kit/CurrencyInput/adjustValue .d.ts +2 -0
  1216. package/mobile/dist/ui-kit/CurrencyInput/adjustValue .js +11 -2
  1217. package/mobile/dist/ui-kit/CurrencyInput/adjustValue .js.map +1 -1
  1218. package/mobile/dist/ui-kit/Foldable/DefaultButton.d.ts +2 -0
  1219. package/mobile/dist/ui-kit/Foldable/DefaultButton.js +12 -0
  1220. package/mobile/dist/ui-kit/Foldable/DefaultButton.js.map +1 -0
  1221. package/mobile/dist/ui-kit/Foldable/FoldButtonProps.d.ts +12 -0
  1222. package/mobile/dist/ui-kit/Foldable/FoldButtonProps.js +2 -0
  1223. package/mobile/dist/ui-kit/Foldable/FoldButtonProps.js.map +1 -0
  1224. package/mobile/dist/ui-kit/Foldable/Foldable.d.ts +11 -17
  1225. package/mobile/dist/ui-kit/Foldable/Foldable.js +22 -14
  1226. package/mobile/dist/ui-kit/Foldable/Foldable.js.map +1 -1
  1227. package/mobile/dist/ui-kit/Icon/Icon.js +4 -5
  1228. package/mobile/dist/ui-kit/Icon/Icon.js.map +1 -1
  1229. package/mobile/dist/ui-kit/Icon/IconProps.d.ts +0 -1
  1230. package/mobile/dist/ui-kit/Img/Img.js +1 -3
  1231. package/mobile/dist/ui-kit/Img/Img.js.map +1 -1
  1232. package/mobile/dist/ui-kit/InnerTable/InnerTableBody.js +1 -1
  1233. package/mobile/dist/ui-kit/InnerTable/InnerTableBody.js.map +1 -1
  1234. package/mobile/dist/ui-kit/InnerTable/InnerTableBodyItem.js +6 -2
  1235. package/mobile/dist/ui-kit/InnerTable/InnerTableBodyItem.js.map +1 -1
  1236. package/mobile/dist/ui-kit/InnerTable/InnerTableButton.js +1 -1
  1237. package/mobile/dist/ui-kit/InnerTable/InnerTableButton.js.map +1 -1
  1238. package/mobile/dist/ui-kit/InnerTable/InnerTableHeader.js +1 -1
  1239. package/mobile/dist/ui-kit/InnerTable/InnerTableHeader.js.map +1 -1
  1240. package/mobile/dist/ui-kit/Input/Input.js +12 -3
  1241. package/mobile/dist/ui-kit/Input/Input.js.map +1 -1
  1242. package/mobile/dist/ui-kit/Input/InputProps.d.ts +2 -0
  1243. package/mobile/dist/ui-kit/InputRange/InputRange.js +2 -2
  1244. package/mobile/dist/ui-kit/InputRange/InputRange.js.map +1 -1
  1245. package/mobile/dist/ui-kit/IntersectionObserverTag.d.ts +11 -0
  1246. package/mobile/dist/ui-kit/IntersectionObserverTag.js +22 -0
  1247. package/mobile/dist/ui-kit/IntersectionObserverTag.js.map +1 -0
  1248. package/mobile/dist/ui-kit/List/List.js +13 -8
  1249. package/mobile/dist/ui-kit/List/List.js.map +1 -1
  1250. package/mobile/dist/ui-kit/List/ListItem.d.ts +2 -2
  1251. package/mobile/dist/ui-kit/List/ListItem.js +8 -23
  1252. package/mobile/dist/ui-kit/List/ListItem.js.map +1 -1
  1253. package/mobile/dist/ui-kit/List/ListProps.d.ts +5 -3
  1254. package/mobile/dist/ui-kit/Radio/Radio.js +1 -1
  1255. package/mobile/dist/ui-kit/Radio/Radio.js.map +1 -1
  1256. package/mobile/dist/ui-kit/Select/Select.js +4 -1
  1257. package/mobile/dist/ui-kit/Select/Select.js.map +1 -1
  1258. package/mobile/dist/utils/getSanitizedValue.d.ts +1 -0
  1259. package/mobile/dist/utils/getSanitizedValue.js +5 -0
  1260. package/mobile/dist/utils/getSanitizedValue.js.map +1 -0
  1261. package/mobile/lib/components/Accordion/AccordionItem.d.ts +1 -1
  1262. package/mobile/lib/components/Accordion/AccordionItem.js +9 -7
  1263. package/mobile/lib/components/Accordion/AccordionItem.js.map +1 -1
  1264. package/mobile/lib/components/BenefitsBlock/BenefitsBlock.js +1 -1
  1265. package/mobile/lib/components/BenefitsBlock/BenefitsBlock.js.map +1 -1
  1266. package/mobile/lib/components/Blocks.d.ts +0 -1
  1267. package/mobile/lib/components/Blocks.js +0 -2
  1268. package/mobile/lib/components/Blocks.js.map +1 -1
  1269. package/mobile/lib/components/Calculator/CalculatorContent.d.ts +1 -1
  1270. package/mobile/lib/components/CardTransfer/CardTransfer.js +3 -2
  1271. package/mobile/lib/components/CardTransfer/CardTransfer.js.map +1 -1
  1272. package/mobile/lib/components/Catalog/Catalog.js +1 -1
  1273. package/mobile/lib/components/Catalog/Catalog.js.map +1 -1
  1274. package/mobile/lib/components/Catalog/CatalogCard.js +1 -23
  1275. package/mobile/lib/components/Catalog/CatalogCard.js.map +1 -1
  1276. package/mobile/lib/components/ComparisonTable/ComparisonTable.js +14 -49
  1277. package/mobile/lib/components/ComparisonTable/ComparisonTable.js.map +1 -1
  1278. package/mobile/lib/components/ComparisonTable/TableColumn.d.ts +5 -8
  1279. package/mobile/lib/components/ComparisonTable/TableColumn.js +2 -8
  1280. package/mobile/lib/components/ComparisonTable/TableColumn.js.map +1 -1
  1281. package/mobile/lib/components/ContentPage/ContentPageContext.d.ts +0 -11
  1282. package/mobile/lib/components/ErrorBlock/ErrorBlock.js +1 -1
  1283. package/mobile/lib/components/ErrorBlock/ErrorBlock.js.map +1 -1
  1284. package/mobile/lib/components/ExchangeRateTile/renderInput.js +1 -1
  1285. package/mobile/lib/components/ExchangeRateTile/renderInput.js.map +1 -1
  1286. package/mobile/lib/components/Footer/Contacts.js +1 -1
  1287. package/mobile/lib/components/Footer/Contacts.js.map +1 -1
  1288. package/mobile/lib/components/Footer/FooterContent.d.ts +5 -9
  1289. package/mobile/lib/components/Gallery/Gallery.js +7 -3
  1290. package/mobile/lib/components/Gallery/Gallery.js.map +1 -1
  1291. package/mobile/lib/components/Gallery/GalleryCardInner.js +15 -18
  1292. package/mobile/lib/components/Gallery/GalleryCardInner.js.map +1 -1
  1293. package/mobile/lib/components/Gallery/GalleryContainer.js +2 -2
  1294. package/mobile/lib/components/Gallery/GalleryContainer.js.map +1 -1
  1295. package/mobile/lib/components/Gallery/GalleryContent.d.ts +11 -3
  1296. package/mobile/lib/components/Header/HeaderSubMenu.js +2 -1
  1297. package/mobile/lib/components/Header/HeaderSubMenu.js.map +1 -1
  1298. package/mobile/lib/components/Headline/constants.d.ts +2 -1
  1299. package/mobile/lib/components/Headline/constants.js +9 -0
  1300. package/mobile/lib/components/Headline/constants.js.map +1 -1
  1301. package/mobile/lib/components/MiniGallery/MiniGalleryContent.d.ts +1 -0
  1302. package/mobile/lib/components/OtherProducts/OtherProductsItem.js +4 -2
  1303. package/mobile/lib/components/OtherProducts/OtherProductsItem.js.map +1 -1
  1304. package/mobile/lib/components/ProductTile/ProductTile.js +1 -1
  1305. package/mobile/lib/components/ProductTile/ProductTile.js.map +1 -1
  1306. package/mobile/lib/components/Recommendation/RecommendationContent.d.ts +5 -0
  1307. package/mobile/lib/components/SafeDepositRental/RegionsAndBranches.d.ts +1 -1
  1308. package/mobile/lib/components/SafeDepositRental/SafeBoxCases.d.ts +1 -1
  1309. package/mobile/lib/components/SafeDepositRental/SafeDepositRental.d.ts +1 -1
  1310. package/mobile/lib/components/SafeDepositRental/SafeDepositRental.js +18 -4
  1311. package/mobile/lib/components/SafeDepositRental/SafeDepositRental.js.map +1 -1
  1312. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalFields.d.ts +7 -4
  1313. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalFields.js +3 -5
  1314. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalFields.js.map +1 -1
  1315. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalForm.d.ts +7 -3
  1316. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalForm.js +9 -30
  1317. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalForm.js.map +1 -1
  1318. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalTotal.d.ts +1 -1
  1319. package/mobile/lib/components/SafeDepositRental/SafeDepositRentalTypes.d.ts +0 -2
  1320. package/mobile/lib/components/SafeDepositRental/utils.d.ts +1 -1
  1321. package/mobile/lib/components/StepsBlock/StepsBlockContent.d.ts +9 -2
  1322. package/mobile/lib/components/StepsBlock/StepsBlockStyleMaps.d.ts +1 -0
  1323. package/mobile/lib/components/StepsBlock/StepsBlockStyleMaps.js +2 -0
  1324. package/mobile/lib/components/StepsBlock/StepsBlockStyleMaps.js.map +1 -1
  1325. package/mobile/lib/components/StepsBlock/renderItems.d.ts +3 -0
  1326. package/mobile/lib/components/StepsBlock/renderItems.js +3 -0
  1327. package/mobile/lib/components/StepsBlock/renderItems.js.map +1 -0
  1328. package/mobile/lib/components/TariffsTable/EmbeddableCellData.js +1 -2
  1329. package/mobile/lib/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  1330. package/mobile/lib/components/TariffsTable/TariffsTableCell.js +1 -1
  1331. package/mobile/lib/components/TariffsTable/TariffsTableCell.js.map +1 -1
  1332. package/mobile/lib/components/TariffsTable/TariffsTableRow.js +1 -2
  1333. package/mobile/lib/components/TariffsTable/TariffsTableRow.js.map +1 -1
  1334. package/mobile/lib/components/TariffsTable/dataFixture.js +4 -2
  1335. package/mobile/lib/components/TariffsTable/dataFixture.js.map +1 -1
  1336. package/mobile/lib/components/TariffsTable/utils/getButtonAriaLabel.d.ts +1 -1
  1337. package/mobile/lib/components/TariffsTable/utils/getButtonAriaLabel.js +1 -2
  1338. package/mobile/lib/components/TariffsTable/utils/getButtonAriaLabel.js.map +1 -1
  1339. package/mobile/lib/components/Tile/Tile.js +2 -3
  1340. package/mobile/lib/components/Tile/Tile.js.map +1 -1
  1341. package/mobile/lib/hooks/useOutsideClick.d.ts +5 -0
  1342. package/mobile/lib/hooks/useOutsideClick.js +18 -0
  1343. package/mobile/lib/hooks/useOutsideClick.js.map +1 -0
  1344. package/mobile/lib/hooks/useSafeBoxes.d.ts +20 -0
  1345. package/mobile/lib/hooks/{useFetchSafeBoxes.js → useSafeBoxes.js} +7 -8
  1346. package/mobile/lib/hooks/useSafeBoxes.js.map +1 -0
  1347. package/mobile/lib/icons/IconName.d.ts +1 -92
  1348. package/mobile/lib/icons/IconName.js +3 -3
  1349. package/mobile/lib/icons/IconName.js.map +1 -1
  1350. package/mobile/lib/model/HeadlineType.d.ts +8 -0
  1351. package/mobile/lib/model/Picture.d.ts +1 -0
  1352. package/mobile/lib/react/setup-fixture.js +0 -2
  1353. package/mobile/lib/react/setup-fixture.js.map +1 -1
  1354. package/mobile/lib/ui-kit/BenefitItem/BenefitItem.js +3 -1
  1355. package/mobile/lib/ui-kit/BenefitItem/BenefitItem.js.map +1 -1
  1356. package/mobile/lib/ui-kit/BlockWrapper.d.ts +0 -3
  1357. package/mobile/lib/ui-kit/BlockWrapper.js +4 -4
  1358. package/mobile/lib/ui-kit/BlockWrapper.js.map +1 -1
  1359. package/mobile/lib/ui-kit/BlocksList/renderBlocksList.d.ts +1 -1
  1360. package/mobile/lib/ui-kit/BlocksList/renderBlocksList.js +1 -1
  1361. package/mobile/lib/ui-kit/BlocksList/renderBlocksList.js.map +1 -1
  1362. package/mobile/lib/ui-kit/Button/Button.js +1 -1
  1363. package/mobile/lib/ui-kit/Button/Button.js.map +1 -1
  1364. package/mobile/lib/ui-kit/Button/ButtonInner.js +3 -2
  1365. package/mobile/lib/ui-kit/Button/ButtonInner.js.map +1 -1
  1366. package/mobile/lib/ui-kit/Button/ButtonProps.d.ts +1 -7
  1367. package/mobile/lib/ui-kit/Button/ButtonSection.js +5 -10
  1368. package/mobile/lib/ui-kit/Button/ButtonSection.js.map +1 -1
  1369. package/mobile/lib/ui-kit/Button/buttonClassNameConstants.d.ts +1 -0
  1370. package/mobile/lib/ui-kit/Button/buttonClassNameConstants.js +6 -0
  1371. package/mobile/lib/ui-kit/Button/buttonClassNameConstants.js.map +1 -1
  1372. package/mobile/lib/ui-kit/CurrencyInput/CurrencyInput.js +8 -2
  1373. package/mobile/lib/ui-kit/CurrencyInput/CurrencyInput.js.map +1 -1
  1374. package/mobile/lib/ui-kit/CurrencyInput/adjustValue .d.ts +2 -0
  1375. package/mobile/lib/ui-kit/CurrencyInput/adjustValue .js +9 -2
  1376. package/mobile/lib/ui-kit/CurrencyInput/adjustValue .js.map +1 -1
  1377. package/mobile/lib/ui-kit/Foldable/DefaultButton.d.ts +2 -0
  1378. package/mobile/lib/ui-kit/Foldable/DefaultButton.js +10 -0
  1379. package/mobile/lib/ui-kit/Foldable/DefaultButton.js.map +1 -0
  1380. package/mobile/lib/ui-kit/Foldable/FoldButtonProps.d.ts +12 -0
  1381. package/mobile/lib/ui-kit/Foldable/FoldButtonProps.js +2 -0
  1382. package/mobile/lib/ui-kit/Foldable/FoldButtonProps.js.map +1 -0
  1383. package/mobile/lib/ui-kit/Foldable/Foldable.d.ts +11 -17
  1384. package/mobile/lib/ui-kit/Foldable/Foldable.js +22 -14
  1385. package/mobile/lib/ui-kit/Foldable/Foldable.js.map +1 -1
  1386. package/mobile/lib/ui-kit/Icon/Icon.js +4 -5
  1387. package/mobile/lib/ui-kit/Icon/Icon.js.map +1 -1
  1388. package/mobile/lib/ui-kit/Icon/IconProps.d.ts +0 -1
  1389. package/mobile/lib/ui-kit/Img/Img.js +1 -3
  1390. package/mobile/lib/ui-kit/Img/Img.js.map +1 -1
  1391. package/mobile/lib/ui-kit/InnerTable/InnerTableBody.js +1 -1
  1392. package/mobile/lib/ui-kit/InnerTable/InnerTableBody.js.map +1 -1
  1393. package/mobile/lib/ui-kit/InnerTable/InnerTableBodyItem.js +6 -2
  1394. package/mobile/lib/ui-kit/InnerTable/InnerTableBodyItem.js.map +1 -1
  1395. package/mobile/lib/ui-kit/InnerTable/InnerTableButton.js +1 -1
  1396. package/mobile/lib/ui-kit/InnerTable/InnerTableButton.js.map +1 -1
  1397. package/mobile/lib/ui-kit/InnerTable/InnerTableHeader.js +1 -1
  1398. package/mobile/lib/ui-kit/InnerTable/InnerTableHeader.js.map +1 -1
  1399. package/mobile/lib/ui-kit/Input/Input.js +12 -3
  1400. package/mobile/lib/ui-kit/Input/Input.js.map +1 -1
  1401. package/mobile/lib/ui-kit/Input/InputProps.d.ts +2 -0
  1402. package/mobile/lib/ui-kit/InputRange/InputRange.js +2 -2
  1403. package/mobile/lib/ui-kit/InputRange/InputRange.js.map +1 -1
  1404. package/mobile/lib/ui-kit/IntersectionObserverTag.d.ts +11 -0
  1405. package/mobile/lib/ui-kit/IntersectionObserverTag.js +20 -0
  1406. package/mobile/lib/ui-kit/IntersectionObserverTag.js.map +1 -0
  1407. package/mobile/lib/ui-kit/List/List.js +13 -8
  1408. package/mobile/lib/ui-kit/List/List.js.map +1 -1
  1409. package/mobile/lib/ui-kit/List/ListItem.d.ts +2 -2
  1410. package/mobile/lib/ui-kit/List/ListItem.js +7 -21
  1411. package/mobile/lib/ui-kit/List/ListItem.js.map +1 -1
  1412. package/mobile/lib/ui-kit/List/ListProps.d.ts +5 -3
  1413. package/mobile/lib/ui-kit/Radio/Radio.js +1 -1
  1414. package/mobile/lib/ui-kit/Radio/Radio.js.map +1 -1
  1415. package/mobile/lib/ui-kit/Select/Select.js +5 -2
  1416. package/mobile/lib/ui-kit/Select/Select.js.map +1 -1
  1417. package/mobile/lib/utils/getSanitizedValue.d.ts +1 -0
  1418. package/mobile/lib/utils/getSanitizedValue.js +2 -0
  1419. package/mobile/lib/utils/getSanitizedValue.js.map +1 -0
  1420. package/mobile/src/components/Accordion/AccordionItem.tsx +50 -26
  1421. package/mobile/src/components/BenefitsBlock/BenefitsBlock.tsx +1 -1
  1422. package/mobile/src/components/Blocks.ts +0 -2
  1423. package/mobile/src/components/Calculator/CalculatorContent.ts +1 -1
  1424. package/mobile/src/components/CardTransfer/CardTransfer.tsx +3 -1
  1425. package/mobile/src/components/Catalog/Catalog.tsx +2 -2
  1426. package/mobile/src/components/Catalog/CatalogCard.tsx +1 -35
  1427. package/mobile/src/components/ComparisonTable/ComparisonTable.tsx +49 -120
  1428. package/mobile/src/components/ComparisonTable/TableColumn.tsx +25 -27
  1429. package/mobile/src/components/ContentPage/ContentPageContext.tsx +0 -14
  1430. package/mobile/src/components/ErrorBlock/ErrorBlock.tsx +1 -3
  1431. package/mobile/src/components/ExchangeRateTile/renderInput.tsx +1 -1
  1432. package/mobile/src/components/Footer/Contacts.tsx +1 -0
  1433. package/mobile/src/components/Footer/FooterContent.ts +5 -10
  1434. package/mobile/src/components/Gallery/Gallery.tsx +15 -5
  1435. package/mobile/src/components/Gallery/GalleryCardInner.tsx +60 -44
  1436. package/mobile/src/components/Gallery/GalleryContainer.tsx +10 -2
  1437. package/mobile/src/components/Gallery/GalleryContent.ts +11 -3
  1438. package/mobile/src/components/Header/HeaderSubMenu.tsx +2 -1
  1439. package/mobile/src/components/Headline/constants.ts +11 -1
  1440. package/mobile/src/components/MiniGallery/MiniGalleryContent.ts +1 -0
  1441. package/mobile/src/components/OtherProducts/OtherProductsItem.tsx +18 -9
  1442. package/mobile/src/components/ProductTile/ProductTile.tsx +3 -3
  1443. package/mobile/src/components/Recommendation/RecommendationContent.ts +5 -0
  1444. package/mobile/src/components/SafeDepositRental/RegionsAndBranches.tsx +1 -1
  1445. package/mobile/src/components/SafeDepositRental/SafeBoxCases.tsx +1 -1
  1446. package/mobile/src/components/SafeDepositRental/SafeDepositRental.tsx +34 -7
  1447. package/mobile/src/components/SafeDepositRental/SafeDepositRentalFields.tsx +13 -21
  1448. package/mobile/src/components/SafeDepositRental/SafeDepositRentalForm.tsx +21 -49
  1449. package/mobile/src/components/SafeDepositRental/SafeDepositRentalTotal.tsx +1 -1
  1450. package/mobile/src/components/SafeDepositRental/SafeDepositRentalTypes.ts +0 -3
  1451. package/mobile/src/components/SafeDepositRental/utils.ts +1 -1
  1452. package/mobile/src/components/StepsBlock/StepsBlock.ui.json +8 -0
  1453. package/mobile/src/components/StepsBlock/StepsBlockContent.ts +9 -2
  1454. package/mobile/src/components/StepsBlock/StepsBlockStyleMaps.ts +3 -0
  1455. package/mobile/src/components/StepsBlock/renderItems.tsx +17 -0
  1456. package/mobile/src/components/TariffsTable/EmbeddableCellData.tsx +4 -8
  1457. package/mobile/src/components/TariffsTable/TariffsTableCell.tsx +1 -1
  1458. package/mobile/src/components/TariffsTable/TariffsTableRow.tsx +1 -4
  1459. package/mobile/src/components/TariffsTable/{dataFixture.ts → dataFixture.tsx} +3 -2
  1460. package/mobile/src/components/TariffsTable/utils/getButtonAriaLabel.ts +1 -3
  1461. package/mobile/src/components/Tile/Tile.tsx +3 -5
  1462. package/mobile/src/hooks/useOutsideClick.ts +25 -0
  1463. package/mobile/src/hooks/{useFetchSafeBoxes.ts → useSafeBoxes.ts} +7 -8
  1464. package/mobile/src/icons/IconName.ts +3 -3
  1465. package/mobile/src/model/HeadlineType.ts +10 -0
  1466. package/mobile/src/model/Picture.ts +1 -0
  1467. package/mobile/src/react/setup-fixture.ts +0 -2
  1468. package/mobile/src/ui-kit/BenefitItem/BenefitItem.tsx +5 -5
  1469. package/mobile/src/ui-kit/BlockWrapper.tsx +5 -9
  1470. package/mobile/src/ui-kit/BlocksList/renderBlocksList.tsx +1 -1
  1471. package/mobile/src/ui-kit/Button/Button.tsx +1 -1
  1472. package/mobile/src/ui-kit/Button/ButtonInner.tsx +4 -3
  1473. package/mobile/src/ui-kit/Button/ButtonProps.ts +1 -7
  1474. package/mobile/src/ui-kit/Button/ButtonSection.tsx +19 -41
  1475. package/mobile/src/ui-kit/Button/buttonClassNameConstants.ts +7 -0
  1476. package/mobile/src/ui-kit/CurrencyInput/CurrencyInput.tsx +19 -3
  1477. package/mobile/src/ui-kit/CurrencyInput/adjustValue .ts +13 -2
  1478. package/mobile/src/ui-kit/Foldable/DefaultButton.tsx +27 -0
  1479. package/mobile/src/ui-kit/Foldable/FoldButtonProps.ts +13 -0
  1480. package/mobile/src/ui-kit/Foldable/Foldable.tsx +66 -70
  1481. package/mobile/src/ui-kit/Icon/Icon.tsx +5 -6
  1482. package/mobile/src/ui-kit/Icon/IconProps.ts +0 -1
  1483. package/mobile/src/ui-kit/Img/Img.tsx +1 -13
  1484. package/mobile/src/ui-kit/InnerTable/InnerTableBody.tsx +1 -1
  1485. package/mobile/src/ui-kit/InnerTable/InnerTableBodyItem.tsx +14 -5
  1486. package/mobile/src/ui-kit/InnerTable/InnerTableButton.tsx +1 -1
  1487. package/mobile/src/ui-kit/InnerTable/InnerTableHeader.tsx +4 -3
  1488. package/mobile/src/ui-kit/Input/Input.tsx +18 -2
  1489. package/mobile/src/ui-kit/Input/InputProps.ts +2 -0
  1490. package/mobile/src/ui-kit/InputRange/InputRange.tsx +2 -3
  1491. package/mobile/src/ui-kit/IntersectionObserverTag.tsx +49 -0
  1492. package/mobile/src/ui-kit/List/List.tsx +29 -18
  1493. package/mobile/src/ui-kit/List/ListItem.tsx +14 -26
  1494. package/mobile/src/ui-kit/List/ListProps.ts +5 -3
  1495. package/mobile/src/ui-kit/Radio/Radio.tsx +3 -2
  1496. package/mobile/src/ui-kit/Select/Select.tsx +8 -3
  1497. package/mobile/src/utils/getSanitizedValue.ts +1 -0
  1498. package/package.json +2 -2
  1499. package/src/components/Accordion/AccordionItem.mobile.tsx +50 -26
  1500. package/src/components/Accordion/AccordionItem.tsx +38 -27
  1501. package/src/components/BenefitsBlock/BenefitsBlock.fixture.tsx +4 -4
  1502. package/src/components/BenefitsBlock/BenefitsBlock.tsx +1 -1
  1503. package/src/components/Blocks.mobile.ts +0 -2
  1504. package/src/components/Calculator/CalculatorContent.ts +1 -1
  1505. package/src/components/CardTransfer/CardTransfer.tsx +3 -1
  1506. package/src/components/Catalog/Catalog.fixture.tsx +10 -3
  1507. package/src/components/Catalog/Catalog.tsx +2 -2
  1508. package/src/components/Catalog/CatalogCard.tsx +1 -35
  1509. package/src/components/ComparisonTable/ComparisonTable.mobile.tsx +49 -120
  1510. package/src/components/ComparisonTable/ComparisonTable.tsx +1 -1
  1511. package/src/components/ComparisonTable/TableCell.tsx +2 -2
  1512. package/src/components/ComparisonTable/TableColumn.tsx +25 -27
  1513. package/src/components/ContentPage/ContentPageContext.tsx +0 -14
  1514. package/src/components/ErrorBlock/ErrorBlock.tsx +1 -3
  1515. package/src/components/ExchangeRateTile/renderInput.tsx +1 -1
  1516. package/src/components/Footer/Contacts.tsx +1 -0
  1517. package/src/components/Footer/FooterContent.ts +5 -10
  1518. package/src/components/Gallery/Gallery.fixture.tsx +2 -2
  1519. package/src/components/Gallery/Gallery.mobile.tsx +15 -5
  1520. package/src/components/Gallery/GalleryCardInner.tsx +60 -44
  1521. package/src/components/Gallery/GalleryContainer.tsx +10 -2
  1522. package/src/components/Gallery/GalleryContent.ts +11 -3
  1523. package/src/components/Header/HeaderSubMenu.tsx +2 -1
  1524. package/src/components/Headline/constants.ts +11 -1
  1525. package/src/components/MiniGallery/MiniGallery.fixture.tsx +45 -0
  1526. package/src/components/MiniGallery/MiniGalleryContent.ts +1 -0
  1527. package/src/components/MobileAppTile/MobileAppTile.fixture.tsx +14 -4
  1528. package/src/components/MobileAppTile/MobileAppTile.tsx +3 -6
  1529. package/src/components/OtherProducts/OtherProductsItem.tsx +18 -9
  1530. package/src/components/ProductGallery/ProductGallery.tsx +2 -2
  1531. package/src/components/ProductTile/ProductTile.tsx +3 -3
  1532. package/src/components/Recommendation/RecommendationContent.ts +5 -0
  1533. package/src/components/SafeDepositRental/RegionsAndBranches.tsx +1 -1
  1534. package/src/components/SafeDepositRental/SafeBoxCases.tsx +1 -1
  1535. package/src/components/SafeDepositRental/SafeDepositRental.tsx +34 -7
  1536. package/src/components/SafeDepositRental/SafeDepositRentalFields.tsx +13 -21
  1537. package/src/components/SafeDepositRental/SafeDepositRentalForm.tsx +21 -49
  1538. package/src/components/SafeDepositRental/SafeDepositRentalTotal.tsx +1 -1
  1539. package/src/components/SafeDepositRental/SafeDepositRentalTypes.ts +0 -3
  1540. package/src/components/SafeDepositRental/utils.ts +1 -1
  1541. package/src/components/StepsBlock/StepsBlock.fixture.tsx +31 -3
  1542. package/src/components/StepsBlock/StepsBlock.tsx +11 -6
  1543. package/src/components/StepsBlock/StepsBlock.ui.json +8 -0
  1544. package/src/components/StepsBlock/StepsBlockContent.ts +9 -2
  1545. package/src/components/StepsBlock/StepsBlockStyleMaps.ts +3 -0
  1546. package/src/components/StepsBlock/renderItems.tsx +17 -0
  1547. package/src/components/TariffsTable/EmbeddableCellData.mobile.tsx +4 -8
  1548. package/src/components/TariffsTable/EmbeddableCellData.tsx +5 -10
  1549. package/src/components/TariffsTable/TariffsTable.tsx +3 -5
  1550. package/src/components/TariffsTable/TariffsTableCell.tsx +1 -1
  1551. package/src/components/TariffsTable/TariffsTableRow.tsx +1 -4
  1552. package/src/components/TariffsTable/{dataFixture.ts → dataFixture.tsx} +3 -2
  1553. package/src/components/TariffsTable/utils/getButtonAriaLabel.ts +1 -3
  1554. package/src/components/Tile/Tile.tsx +3 -5
  1555. package/src/hooks/useOutsideClick.ts +25 -0
  1556. package/src/hooks/{useFetchSafeBoxes.ts → useSafeBoxes.ts} +7 -8
  1557. package/src/icons/IconName.ts +34 -92
  1558. package/src/model/HeadlineType.ts +10 -0
  1559. package/src/model/Picture.ts +1 -0
  1560. package/src/react/setup-fixture.ts +0 -2
  1561. package/src/ui-kit/BenefitItem/BenefitItem.tsx +5 -5
  1562. package/src/ui-kit/BlockWrapper.tsx +5 -9
  1563. package/src/ui-kit/BlocksList/renderBlocksList.tsx +1 -1
  1564. package/src/ui-kit/Button/Button.mobile.tsx +1 -1
  1565. package/src/ui-kit/Button/Button.tsx +55 -27
  1566. package/src/ui-kit/Button/ButtonInner.tsx +4 -3
  1567. package/src/ui-kit/Button/ButtonProps.ts +1 -7
  1568. package/src/ui-kit/Button/ButtonSection.tsx +19 -41
  1569. package/src/ui-kit/Button/buttonClassNameConstants.ts +7 -0
  1570. package/src/ui-kit/CurrencyInput/CurrencyInput.tsx +19 -3
  1571. package/src/ui-kit/CurrencyInput/adjustValue .ts +13 -2
  1572. package/src/ui-kit/Foldable/DefaultButton.tsx +27 -0
  1573. package/src/ui-kit/Foldable/FoldButtonProps.ts +13 -0
  1574. package/src/ui-kit/Foldable/Foldable.tsx +66 -70
  1575. package/src/ui-kit/Icon/Icon.tsx +5 -6
  1576. package/src/ui-kit/Icon/IconProps.ts +0 -1
  1577. package/src/ui-kit/Img/Img.mobile.tsx +1 -13
  1578. package/src/ui-kit/Img/Img.tsx +1 -17
  1579. package/src/ui-kit/InnerTable/InnerTableBody.tsx +1 -1
  1580. package/src/ui-kit/InnerTable/InnerTableBodyItem.tsx +14 -5
  1581. package/src/ui-kit/InnerTable/InnerTableButton.tsx +1 -1
  1582. package/src/ui-kit/InnerTable/InnerTableHeader.tsx +4 -3
  1583. package/src/ui-kit/Input/Input.tsx +18 -2
  1584. package/src/ui-kit/Input/InputProps.ts +2 -0
  1585. package/src/ui-kit/InputRange/InputRange.tsx +2 -3
  1586. package/src/ui-kit/IntersectionObserverTag.tsx +49 -0
  1587. package/src/ui-kit/List/List.fixture.tsx +1 -21
  1588. package/src/ui-kit/List/List.tsx +29 -18
  1589. package/src/ui-kit/List/ListItem.tsx +14 -26
  1590. package/src/ui-kit/List/ListProps.ts +5 -3
  1591. package/src/ui-kit/Radio/Radio.tsx +3 -2
  1592. package/src/ui-kit/Select/Select.tsx +8 -3
  1593. package/src/utils/getSanitizedValue.ts +1 -0
  1594. package/tailwind.config.cjs +1 -1
  1595. package/dist/components/Accordion/AccordionItemInner.d.ts +0 -2
  1596. package/dist/components/Accordion/AccordionItemInner.js +0 -9
  1597. package/dist/components/Accordion/AccordionItemInner.js.map +0 -1
  1598. package/dist/components/Accordion/AccordionItemInner.mobile.d.ts +0 -2
  1599. package/dist/components/Accordion/AccordionItemInner.mobile.js +0 -9
  1600. package/dist/components/Accordion/AccordionItemInner.mobile.js.map +0 -1
  1601. package/dist/components/Accordion/useActiveHandler.d.ts +0 -7
  1602. package/dist/components/Accordion/useActiveHandler.js +0 -22
  1603. package/dist/components/Accordion/useActiveHandler.js.map +0 -1
  1604. package/dist/hooks/useFetchSafeBoxes.js.map +0 -1
  1605. package/dist/react/IntersectionObserverTag.d.ts +0 -2
  1606. package/dist/react/IntersectionObserverTag.js +0 -43
  1607. package/dist/react/IntersectionObserverTag.js.map +0 -1
  1608. package/dist/ui-kit/Foldable/useActiveHandler.d.ts +0 -9
  1609. package/dist/ui-kit/Foldable/useActiveHandler.js +0 -23
  1610. package/dist/ui-kit/Foldable/useActiveHandler.js.map +0 -1
  1611. package/lib/components/Accordion/AccordionItemInner.d.ts +0 -2
  1612. package/lib/components/Accordion/AccordionItemInner.js +0 -7
  1613. package/lib/components/Accordion/AccordionItemInner.js.map +0 -1
  1614. package/lib/components/Accordion/AccordionItemInner.mobile.d.ts +0 -2
  1615. package/lib/components/Accordion/AccordionItemInner.mobile.js +0 -7
  1616. package/lib/components/Accordion/AccordionItemInner.mobile.js.map +0 -1
  1617. package/lib/components/Accordion/useActiveHandler.d.ts +0 -7
  1618. package/lib/components/Accordion/useActiveHandler.js +0 -19
  1619. package/lib/components/Accordion/useActiveHandler.js.map +0 -1
  1620. package/lib/hooks/useFetchSafeBoxes.js.map +0 -1
  1621. package/lib/react/IntersectionObserverTag.d.ts +0 -2
  1622. package/lib/react/IntersectionObserverTag.js +0 -17
  1623. package/lib/react/IntersectionObserverTag.js.map +0 -1
  1624. package/lib/ui-kit/Foldable/useActiveHandler.d.ts +0 -9
  1625. package/lib/ui-kit/Foldable/useActiveHandler.js +0 -20
  1626. package/lib/ui-kit/Foldable/useActiveHandler.js.map +0 -1
  1627. package/mobile/dist/components/Accordion/AccordionItemInner.d.ts +0 -2
  1628. package/mobile/dist/components/Accordion/AccordionItemInner.js +0 -9
  1629. package/mobile/dist/components/Accordion/AccordionItemInner.js.map +0 -1
  1630. package/mobile/dist/components/Accordion/useActiveHandler.d.ts +0 -7
  1631. package/mobile/dist/components/Accordion/useActiveHandler.js +0 -22
  1632. package/mobile/dist/components/Accordion/useActiveHandler.js.map +0 -1
  1633. package/mobile/dist/hooks/useFetchSafeBoxes.js.map +0 -1
  1634. package/mobile/dist/react/IntersectionObserverTag.d.ts +0 -2
  1635. package/mobile/dist/react/IntersectionObserverTag.js +0 -43
  1636. package/mobile/dist/react/IntersectionObserverTag.js.map +0 -1
  1637. package/mobile/dist/ui-kit/Foldable/useActiveHandler.d.ts +0 -9
  1638. package/mobile/dist/ui-kit/Foldable/useActiveHandler.js +0 -23
  1639. package/mobile/dist/ui-kit/Foldable/useActiveHandler.js.map +0 -1
  1640. package/mobile/lib/components/Accordion/AccordionItemInner.d.ts +0 -2
  1641. package/mobile/lib/components/Accordion/AccordionItemInner.js +0 -7
  1642. package/mobile/lib/components/Accordion/AccordionItemInner.js.map +0 -1
  1643. package/mobile/lib/components/Accordion/useActiveHandler.d.ts +0 -7
  1644. package/mobile/lib/components/Accordion/useActiveHandler.js +0 -19
  1645. package/mobile/lib/components/Accordion/useActiveHandler.js.map +0 -1
  1646. package/mobile/lib/hooks/useFetchSafeBoxes.js.map +0 -1
  1647. package/mobile/lib/react/IntersectionObserverTag.d.ts +0 -2
  1648. package/mobile/lib/react/IntersectionObserverTag.js +0 -17
  1649. package/mobile/lib/react/IntersectionObserverTag.js.map +0 -1
  1650. package/mobile/lib/ui-kit/Foldable/useActiveHandler.d.ts +0 -9
  1651. package/mobile/lib/ui-kit/Foldable/useActiveHandler.js +0 -20
  1652. package/mobile/lib/ui-kit/Foldable/useActiveHandler.js.map +0 -1
  1653. package/mobile/src/components/Accordion/AccordionItemInner.tsx +0 -11
  1654. package/mobile/src/components/Accordion/useActiveHandler.ts +0 -25
  1655. package/mobile/src/react/IntersectionObserverTag.tsx +0 -33
  1656. package/mobile/src/ui-kit/Foldable/useActiveHandler.ts +0 -33
  1657. package/src/components/Accordion/AccordionItemInner.mobile.tsx +0 -11
  1658. package/src/components/Accordion/AccordionItemInner.tsx +0 -11
  1659. package/src/components/Accordion/useActiveHandler.ts +0 -25
  1660. package/src/react/IntersectionObserverTag.tsx +0 -33
  1661. package/src/ui-kit/Foldable/useActiveHandler.ts +0 -33
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IntersectionObserverTag.js","sourceRoot":"","sources":["../../src/ui-kit/IntersectionObserverTag.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AACxC,OAAO,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,6BAA6B,CAAC;AAYlE,MAAM,CAAC,MAAM,uBAAuB,GAAG,GAAG,CAA+B,CAAC,KAAK,EAAE,EAAE;IACjF,MAAM,EACJ,GAAG,GAAG,SAAS,EACf,gBAAgB,EAChB,eAAe,EACf,SAAS,GAAG,EAAE,EACd,MAAM,GAAG,IAAI,EACb,QAAQ,GACT,GAAG,KAAK,CAAC;IAEV,MAAM,oBAAoB,GAAG,MAAM,CAA8B,IAAI,CAAC,CAAC;IAEvE,MAAM,GAAG,GAAG,WAAW,CACrB,CAAC,OAA2B,EAAE,EAAE;QAC9B,IAAI,CAAC,OAAO,EAAE;YACZ,OAAO;SACR;QAED,IAAI,oBAAoB,CAAC,OAAO,EAAE;YAChC,oBAAoB,CAAC,OAAO,CAAC,UAAU,EAAE,CAAC;SAC3C;QAED,oBAAoB,CAAC,OAAO,GAAG,IAAI,oBAAoB,CAAC,gBAAgB,EAAE,eAAe,CAAC,CAAC;QAC3F,oBAAoB,CAAC,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;IAChD,CAAC,EACD,CAAC,gBAAgB,EAAE,eAAe,CAAC,CACpC,CAAC;IAEF,MAAM,GAAG,GAAG,GAAU,CAAC;IAEvB,OAAO,CACL,KAAC,GAAG,IAAC,GAAG,EAAE,GAAG,EAAE,SAAS,EAAE,SAAS,EAAE,EAAE,EAAE,MAAM,YAC5C,QAAQ,GACL,CACP,CAAC;AACJ,CAAC,CAAC,CAAC"}
@@ -5,17 +5,22 @@ const TEXT_STYLE_MAP = {
5
5
  primary: 'text-primary-text',
6
6
  secondary: 'text-white',
7
7
  gray: 'text-secondary-text',
8
- tile: 'text-primary-text',
9
- 'tile-white': 'text-white',
10
8
  };
11
9
  const TEXT_SIZE_MAP = {
12
- M: 'text-xl-light',
13
- L: 'text-h5-light',
10
+ S: 'text-l-light',
11
+ M: 'text-h6',
12
+ L: 'text-h5',
13
+ };
14
+ const ITEM_INDENT_MAP = {
15
+ S: 'ml-2',
16
+ M: 'ml-3',
17
+ L: 'ml-4',
14
18
  };
15
19
  export const List = JSX((props) => {
16
- const { className = '', itemClassName, isDotted, items, listItemSize = 'M', version = 'primary', } = props;
17
- return (_jsx("section", { className: `${TEXT_STYLE_MAP[version]} ${TEXT_SIZE_MAP[listItemSize]} ${className}`, role: "list", children: items?.length
18
- ? items.map((_, i) => (_jsx(ListItem, { className: itemClassName, isDotted: isDotted, version: version, children: _ }, String(i))))
19
- : null }));
20
+ const { className = '', hasIndent, isDotted, itemClassName = '', items, listItemSize = 'M', version = 'primary', } = props;
21
+ if (!items?.length) {
22
+ return null;
23
+ }
24
+ return (_jsx("section", { className: `${TEXT_STYLE_MAP[version]} ${TEXT_SIZE_MAP[listItemSize]} ${className} ${hasIndent ? ITEM_INDENT_MAP[listItemSize] : ''}`, role: "list", children: items.map((item, i) => (_jsx(ListItem, { className: `${itemClassName} mb-1.5`, isDotted: isDotted, version: version, size: listItemSize, children: item }, String(i)))) }));
20
25
  });
21
26
  //# sourceMappingURL=List.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"List.js","sourceRoot":"","sources":["../../../src/ui-kit/List/List.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAGtC,MAAM,cAAc,GAAoC;IACtD,OAAO,EAAE,mBAAmB;IAC5B,SAAS,EAAE,YAAY;IACvB,IAAI,EAAE,qBAAqB;IAC3B,IAAI,EAAE,mBAAmB;IACzB,YAAY,EAAE,YAAY;CAC3B,CAAC;AAEF,MAAM,aAAa,GAAiC;IAClD,CAAC,EAAE,eAAe;IAClB,CAAC,EAAE,eAAe;CACnB,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAG,GAAG,CAAY,CAAC,KAAK,EAAE,EAAE;IAC3C,MAAM,EACJ,SAAS,GAAG,EAAE,EACd,aAAa,EACb,QAAQ,EACR,KAAK,EACL,YAAY,GAAG,GAAG,EAClB,OAAO,GAAG,SAAS,GACpB,GAAG,KAAK,CAAC;IAEV,OAAO,CACL,kBACE,SAAS,EAAE,GAAG,cAAc,CAAC,OAAO,CAAC,IAAI,aAAa,CAAC,YAAY,CAAC,IAAI,SAAS,EAAE,EACnF,IAAI,EAAC,MAAM,YAEV,KAAK,EAAE,MAAM;YACZ,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAClB,KAAC,QAAQ,IAEP,SAAS,EAAE,aAAa,EACxB,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,OAAO,YAEf,CAAC,IALG,MAAM,CAAC,CAAC,CAAC,CAML,CACZ,CAAC;YACJ,CAAC,CAAC,IAAI,GACA,CACX,CAAC;AACJ,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"List.js","sourceRoot":"","sources":["../../../src/ui-kit/List/List.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAGtC,MAAM,cAAc,GAAoC;IACtD,OAAO,EAAE,mBAAmB;IAC5B,SAAS,EAAE,YAAY;IACvB,IAAI,EAAE,qBAAqB;CAC5B,CAAC;AAEF,MAAM,aAAa,GAAiC;IAClD,CAAC,EAAE,cAAc;IACjB,CAAC,EAAE,SAAS;IACZ,CAAC,EAAE,SAAS;CACb,CAAC;AAEF,MAAM,eAAe,GAAG;IACtB,CAAC,EAAE,MAAM;IACT,CAAC,EAAE,MAAM;IACT,CAAC,EAAE,MAAM;CACV,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAG,GAAG,CAAY,CAAC,KAAK,EAAE,EAAE;IAC3C,MAAM,EACJ,SAAS,GAAG,EAAE,EACd,SAAS,EACT,QAAQ,EACR,aAAa,GAAG,EAAE,EAClB,KAAK,EACL,YAAY,GAAG,GAAG,EAClB,OAAO,GAAG,SAAS,GACpB,GAAG,KAAK,CAAC;IAEV,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE;QAClB,OAAO,IAAI,CAAC;KACb;IAED,OAAO,CACL,kBACE,SAAS,EAAE,GAAG,cAAc,CAAC,OAAO,CAAC,IAAI,aAAa,CAAC,YAAY,CAAC,IAAI,SAAS,IAC/E,SAAS,CAAC,CAAC,CAAC,eAAe,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,EAC9C,EAAE,EACF,IAAI,EAAC,MAAM,YAEV,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC,CACtB,KAAC,QAAQ,IAEP,SAAS,EAAE,GAAG,aAAa,SAAS,EACpC,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,OAAO,EAChB,IAAI,EAAE,YAAY,YAEjB,IAAI,IANA,MAAM,CAAC,CAAC,CAAC,CAOL,CACZ,CAAC,GACM,CACX,CAAC;AACJ,CAAC,CAAC,CAAC"}
@@ -1,4 +1,4 @@
1
- import type { ListItemVersion } from './ListProps';
1
+ import type { ListItemSize, ListItemVersion } from './ListProps';
2
2
  /**
3
3
  * @title Параметры элемента списка
4
4
  */
@@ -7,6 +7,6 @@ export interface ListItemProps {
7
7
  version?: ListItemVersion;
8
8
  text?: string;
9
9
  isDotted?: boolean;
10
+ size?: ListItemSize;
10
11
  }
11
12
  export declare const ListItem: import("@redneckz/uni-jsx").UNIComponent<ListItemProps, any, any>;
12
- export declare const getListStyle: (version: ListItemVersion) => string;
@@ -1,30 +1,16 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "@redneckz/uni-jsx/jsx-runtime";
2
2
  import { JSX } from '@redneckz/uni-jsx';
3
- const LIST_STYLE_CLASSES = {
4
- primary: 'rounded-full inline-block mr-3 mt-2',
5
- secondary: 'rounded-full inline-block mr-3 mt-2',
6
- gray: 'rounded-full inline-block mr-3 mt-2',
7
- tile: 'rounded-full inline-block mr-4 mt-3',
8
- 'tile-white': 'rounded-full inline-block mr-4 mt-3',
9
- };
10
3
  const LIST_DOT_STYLE_MAP = {
11
4
  primary: 'bg-primary-text',
12
5
  secondary: 'bg-white',
13
6
  gray: 'bg-secondary-text',
14
- tile: 'bg-black',
15
- 'tile-white': 'bg-white',
16
7
  };
17
- export const ListItem = JSX(({ className = '', isDotted = true, children, version = 'primary' }) => {
18
- return (_jsxs("div", { className: `font-sans flex items-start ${className}`, role: "listitem", children: [isDotted ? _jsx("div", { className: getListStyle(version) }) : null, _jsx("span", { children: children })] }));
19
- });
20
- export const getListStyle = (version) => {
21
- const size = {
22
- primary: 'w-2 h-2 min-w-2 min-h-2',
23
- secondary: 'w-2 h-2 min-w-2 min-h-2',
24
- gray: 'w-1.5 h-1.5 min-w-1.5 min-h-1.5',
25
- tile: 'w-[7px] h-[7px] min-w-[7px] min-h-[7px]',
26
- 'tile-white': 'w-[7px] h-[7px] min-w-[7px] min-h-[7px]',
27
- };
28
- return `${LIST_STYLE_CLASSES[version]} ${LIST_DOT_STYLE_MAP[version]} ${size[version]}`;
8
+ const DOT_SIZE_MAP = {
9
+ L: 'w-1.5 h-1.5 min-w-1.5 min-h-1.5 mr-4 mt-3',
10
+ M: 'w-1.5 h-1.5 min-w-1.5 min-h-1.5 mr-3 mt-3',
11
+ S: 'w-1 h-1 min-w-1 min-h-1 mr-2 mt-2.5',
29
12
  };
13
+ export const ListItem = JSX(({ className = '', isDotted = true, children, version = 'primary', size = 'M' }) => {
14
+ return (_jsxs("div", { className: `font-sans flex items-start ${className}`, role: "listitem", children: [isDotted ? (_jsx("div", { className: `rounded-full inline-block ${LIST_DOT_STYLE_MAP[version]} ${DOT_SIZE_MAP[size]}` })) : null, _jsx("span", { children: children })] }));
15
+ });
30
16
  //# sourceMappingURL=ListItem.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ListItem.js","sourceRoot":"","sources":["../../../src/ui-kit/List/ListItem.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AAaxC,MAAM,kBAAkB,GAAG;IACzB,OAAO,EAAE,qCAAqC;IAC9C,SAAS,EAAE,qCAAqC;IAChD,IAAI,EAAE,qCAAqC;IAC3C,IAAI,EAAE,qCAAqC;IAC3C,YAAY,EAAE,qCAAqC;CACpD,CAAC;AAEF,MAAM,kBAAkB,GAAoC;IAC1D,OAAO,EAAE,iBAAiB;IAC1B,SAAS,EAAE,UAAU;IACrB,IAAI,EAAE,mBAAmB;IACzB,IAAI,EAAE,UAAU;IAChB,YAAY,EAAE,UAAU;CACzB,CAAC;AAEF,MAAM,CAAC,MAAM,QAAQ,GAAG,GAAG,CACzB,CAAC,EAAE,SAAS,GAAG,EAAE,EAAE,QAAQ,GAAG,IAAI,EAAE,QAAQ,EAAE,OAAO,GAAG,SAAS,EAAE,EAAE,EAAE;IACrE,OAAO,CACL,eAAK,SAAS,EAAE,8BAA8B,SAAS,EAAE,EAAE,IAAI,EAAC,UAAU,aACvE,QAAQ,CAAC,CAAC,CAAC,cAAK,SAAS,EAAE,YAAY,CAAC,OAAO,CAAC,GAAI,CAAC,CAAC,CAAC,IAAI,EAC5D,yBAAO,QAAQ,GAAQ,IACnB,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,OAAwB,EAAE,EAAE;IACvD,MAAM,IAAI,GAAG;QACX,OAAO,EAAE,yBAAyB;QAClC,SAAS,EAAE,yBAAyB;QACpC,IAAI,EAAE,iCAAiC;QACvC,IAAI,EAAE,yCAAyC;QAC/C,YAAY,EAAE,yCAAyC;KACxD,CAAC;IAEF,OAAO,GAAG,kBAAkB,CAAC,OAAO,CAAC,IAAI,kBAAkB,CAAC,OAAO,CAAC,IAAI,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC;AAC1F,CAAC,CAAC"}
1
+ {"version":3,"file":"ListItem.js","sourceRoot":"","sources":["../../../src/ui-kit/List/ListItem.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AAaxC,MAAM,kBAAkB,GAAoC;IAC1D,OAAO,EAAE,iBAAiB;IAC1B,SAAS,EAAE,UAAU;IACrB,IAAI,EAAE,mBAAmB;CAC1B,CAAC;AAEF,MAAM,YAAY,GAAG;IACnB,CAAC,EAAE,2CAA2C;IAC9C,CAAC,EAAE,2CAA2C;IAC9C,CAAC,EAAE,qCAAqC;CACzC,CAAC;AAEF,MAAM,CAAC,MAAM,QAAQ,GAAG,GAAG,CACzB,CAAC,EAAE,SAAS,GAAG,EAAE,EAAE,QAAQ,GAAG,IAAI,EAAE,QAAQ,EAAE,OAAO,GAAG,SAAS,EAAE,IAAI,GAAG,GAAG,EAAE,EAAE,EAAE;IACjF,OAAO,CACL,eAAK,SAAS,EAAE,8BAA8B,SAAS,EAAE,EAAE,IAAI,EAAC,UAAU,aACvE,QAAQ,CAAC,CAAC,CAAC,CACV,cACE,SAAS,EAAE,6BAA6B,kBAAkB,CAAC,OAAO,CAAC,IAAI,YAAY,CAAC,IAAI,CAAC,EAAE,GAC3F,CACH,CAAC,CAAC,CAAC,IAAI,EACR,yBAAO,QAAQ,GAAQ,IACnB,CACP,CAAC;AACJ,CAAC,CACF,CAAC"}
@@ -1,20 +1,22 @@
1
1
  import type { ListContent } from './ListContent';
2
2
  /**
3
3
  * @title Размер пунктов списка
4
- * @enumNames ["Средний", "Большой"]
4
+ * @enumNames ["Маленький", "Средний", "Большой"]
5
5
  */
6
- export declare type ListItemSize = 'M' | 'L';
6
+ export declare type ListItemSize = 'S' | 'M' | 'L';
7
7
  /**
8
8
  * @title Версия списка
9
9
  * @enumNames ["Основной", "Второстепенный", "Серый"]
10
10
  */
11
- export declare type ListItemVersion = 'primary' | 'secondary' | 'gray' | 'tile' | 'tile-white';
11
+ export declare type ListItemVersion = 'primary' | 'secondary' | 'gray';
12
12
  /**
13
13
  * @title Содержимое списка
14
14
  */
15
15
  export interface ListProps extends ListContent {
16
16
  /** @hidden */
17
17
  className?: string;
18
+ /** @title Отступ */
19
+ hasIndent?: boolean;
18
20
  /** @hidden */
19
21
  itemClassName?: string;
20
22
  /** @title Буллиты */
@@ -1,4 +1,4 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "@redneckz/uni-jsx/jsx-runtime";
2
2
  import { JSX } from '@redneckz/uni-jsx';
3
- export const Radio = JSX(({ name, text, value, checked, onChange, className }) => (_jsx("div", { className: className, children: _jsxs("label", { className: "flex items-center relative cursor-pointer", children: [_jsx("input", { className: "appearance-none flex justify-center items-center shrink-0 w-5 h-5 border-2 border-primary-main\n rounded-full cursor-pointer after:block after:w-2.5 after:h-2.5 after:rounded-full checked:after:bg-primary-main", type: "radio", value: value, name: name, checked: checked, onChange: onChange }), text ? _jsx("span", { className: "font-sans ml-3 cursor-pointer", children: text }) : null] }) })));
3
+ export const Radio = JSX(({ name, text, value, checked, onChange, className }) => (_jsx("div", { className: className, children: _jsxs("label", { className: "flex items-center relative cursor-pointer", children: [_jsx("input", { className: "appearance-none flex justify-center items-center shrink-0 w-5 h-5 border border-gray hover:border-checkbox-hover\n checked:border-2 checked:!border-primary-main focus:checked:border-primary-main focus:border-primary-text active:border-primary-text\n after:block after:w-2.5 after:h-2.5 after:rounded-full checked:after:bg-primary-main outline-none rounded-full cursor-pointer", type: "radio", value: value, name: name, checked: checked, onChange: onChange }), text ? _jsx("span", { className: "font-sans ml-3 cursor-pointer", children: text }) : null] }) })));
4
4
  //# sourceMappingURL=Radio.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Radio.js","sourceRoot":"","sources":["../../../src/ui-kit/Radio/Radio.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AAGxC,MAAM,CAAC,MAAM,KAAK,GAAG,GAAG,CAAa,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,EAAE,EAAE,CAAC,CAC5F,cAAK,SAAS,EAAE,SAAS,YACvB,iBAAO,SAAS,EAAC,2CAA2C,aAC1D,gBACE,SAAS,EAAC,0NACuG,EACjH,IAAI,EAAC,OAAO,EACZ,KAAK,EAAE,KAAK,EACZ,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,OAAO,EAChB,QAAQ,EAAE,QAAQ,GAClB,EACD,IAAI,CAAC,CAAC,CAAC,eAAM,SAAS,EAAC,+BAA+B,YAAE,IAAI,GAAQ,CAAC,CAAC,CAAC,IAAI,IACtE,GACJ,CACP,CAAC,CAAC"}
1
+ {"version":3,"file":"Radio.js","sourceRoot":"","sources":["../../../src/ui-kit/Radio/Radio.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AAGxC,MAAM,CAAC,MAAM,KAAK,GAAG,GAAG,CAAa,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,EAAE,EAAE,CAAC,CAC5F,cAAK,SAAS,EAAE,SAAS,YACvB,iBAAO,SAAS,EAAC,2CAA2C,aAC1D,gBACE,SAAS,EAAC,uYAEoH,EAC9H,IAAI,EAAC,OAAO,EACZ,KAAK,EAAE,KAAK,EACZ,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,OAAO,EAChB,QAAQ,EAAE,QAAQ,GAClB,EACD,IAAI,CAAC,CAAC,CAAC,eAAM,SAAS,EAAC,+BAA+B,YAAE,IAAI,GAAQ,CAAC,CAAC,CAAC,IAAI,IACtE,GACJ,CACP,CAAC,CAAC"}
@@ -1,10 +1,13 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "@redneckz/uni-jsx/jsx-runtime";
2
2
  import { JSX } from '@redneckz/uni-jsx';
3
3
  import { Icon } from '../Icon/Icon.js';
4
- import { useState, useEffect } from '@redneckz/uni-jsx/lib/hooks';
4
+ import { useState, useEffect, useRef } from '@redneckz/uni-jsx/lib/hooks';
5
+ import { useOutsideClick } from '../../hooks/useOutsideClick.js';
5
6
  export const Select = JSX(({ className = '', isBorder = true, label, options = [], value, onChange, placeholder = '' }) => {
6
7
  const [selectedItem, setSelectedItem] = useState(options[0] || { key: '', text: '' });
7
8
  const [isOpen, setIsOpen] = useState(false);
9
+ const wrapperRef = useRef(null);
10
+ useOutsideClick(wrapperRef, setIsOpen);
8
11
  const choiceOption = (option) => {
9
12
  setSelectedItem(option);
10
13
  setIsOpen(false);
@@ -14,7 +17,7 @@ export const Select = JSX(({ className = '', isBorder = true, label, options = [
14
17
  useEffect(() => {
15
18
  setSelectedItem(value || { key: '', text: '' });
16
19
  }, [value]);
17
- return (_jsxs("div", { className: `${className}`, children: [label ? _jsx("span", { className: "mb-2 flex", children: label }) : null, _jsxs("div", { className: `relative ${isOpen ? 'z-20' : 'z-10'}`, children: [_jsxs("div", { className: `text-m-light flex justify-between items-center mb-0.5 text-primary-text cursor-pointer
20
+ return (_jsxs("div", { className: `${className}`, ref: wrapperRef, children: [label ? _jsx("span", { className: "mb-2 flex", children: label }) : null, _jsxs("div", { className: `relative ${isOpen ? 'z-20' : 'z-10'}`, children: [_jsxs("div", { className: `text-l flex justify-between items-center mb-0.5 text-primary-text cursor-pointer
18
21
  ${getBorderStyle(isBorder)}`, onClick: () => setIsOpen(!isOpen), children: [_jsx("p", { className: "p-4 pr-8 h-[56px] overflow-hidden text-ellipsis whitespace-nowrap", children: selectedItem?.text || placeholder }), _jsx(Icon, { name: "ArrowUpIcon", width: "16", height: "16", className: `absolute right-3 ${isOpen ? '' : 'rotate-180'}` })] }), options?.length ? (_jsx("div", { className: `h-0 ${renderOptionsStyle(isOpen)}`, children: _jsx("div", { className: `bg-white text-l max-h-[256px] overflow-y-auto overflow-x-hidden rounded-md shadow-[0_4px_25px_rgba(0,0,0,0.07)]`, children: options.map(renderOption(choiceOption, isOpen, isSelected)) }) })) : null] })] }));
19
22
  });
20
23
  const renderOptionsStyle = (isOpen) => (isOpen ? '' : 'overflow-hidden');
@@ -1 +1 @@
1
- {"version":3,"file":"Select.js","sourceRoot":"","sources":["../../../src/ui-kit/Select/Select.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AACxC,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACpC,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AAiBlE,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CACvB,CAAC,EAAE,SAAS,GAAG,EAAE,EAAE,QAAQ,GAAG,IAAI,EAAE,KAAK,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE,WAAW,GAAG,EAAE,EAAE,EAAE,EAAE;IAC9F,MAAM,CAAC,YAAY,EAAE,eAAe,CAAC,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC;IACtF,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;IAE5C,MAAM,YAAY,GAAG,CAAC,MAAmB,EAAE,EAAE;QAC3C,eAAe,CAAC,MAAM,CAAC,CAAC;QACxB,SAAS,CAAC,KAAK,CAAC,CAAC;QACjB,QAAQ,CAAC,MAAM,CAAC,CAAC;IACnB,CAAC,CAAC;IAEF,MAAM,UAAU,GAAG,CAAC,MAAM,EAAE,EAAE,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,KAAK,YAAY,CAAC,GAAG,CAAC,CAAC;IAExE,SAAS,CAAC,GAAG,EAAE;QACb,eAAe,CAAC,KAAK,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC;IAClD,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC;IAEZ,OAAO,CACL,eAAK,SAAS,EAAE,GAAG,SAAS,EAAE,aAC3B,KAAK,CAAC,CAAC,CAAC,eAAM,SAAS,EAAC,WAAW,YAAE,KAAK,GAAQ,CAAC,CAAC,CAAC,IAAI,EAC1D,eAAK,SAAS,EAAE,YAAY,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,aACpD,eACE,SAAS,EAAE;cACT,cAAc,CAAC,QAAQ,CAAC,EAAE,EAC5B,OAAO,EAAE,GAAG,EAAE,CAAC,SAAS,CAAC,CAAC,MAAM,CAAC,aAEjC,YAAG,SAAS,EAAC,mEAAmE,YAC7E,YAAY,EAAE,IAAI,IAAI,WAAW,GAChC,EACJ,KAAC,IAAI,IACH,IAAI,EAAC,aAAa,EAClB,KAAK,EAAC,IAAI,EACV,MAAM,EAAC,IAAI,EACX,SAAS,EAAE,oBAAoB,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE,GAC3D,IACE,EACL,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC,CACjB,cAAK,SAAS,EAAE,OAAO,kBAAkB,CAAC,MAAM,CAAC,EAAE,YACjD,cACE,SAAS,EAAE,iHAAiH,YAE3H,OAAO,CAAC,GAAG,CAAC,YAAY,CAAC,YAAY,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC,GACxD,GACF,CACP,CAAC,CAAC,CAAC,IAAI,IACJ,IACF,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,MAAM,kBAAkB,GAAG,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,iBAAiB,CAAC,CAAC;AAEzE,MAAM,YAAY,GAChB,CAAC,YAAY,EAAE,MAAe,EAAE,UAAU,EAAE,EAAE,CAAC,CAAC,MAAmB,EAAE,CAAS,EAAE,EAAE;IAChF,OAAO,CACL,eAEE,OAAO,EAAE,GAAG,EAAE;YACZ,YAAY,CAAC,MAAM,CAAC,CAAC;QACvB,CAAC,EACD,SAAS,EAAC,oEAAoE,aAE9E,eAAM,SAAS,EAAC,SAAS,YAAE,MAAM,CAAC,IAAI,GAAQ,EAC9C,KAAC,IAAI,IACH,IAAI,EAAC,gBAAgB,EACrB,KAAK,EAAC,IAAI,EACV,MAAM,EAAC,IAAI,EACX,SAAS,EAAE,CAAC,yBAAyB,EAAE,UAAU,CAAC,MAAM,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,IAAI,CACvF,GAAG,CACJ,GACD,KAdG,MAAM,CAAC,CAAC,CAAC,CAeV,CACP,CAAC;AACJ,CAAC,CAAC;AAEJ,MAAM,cAAc,GAAG,CAAC,QAAQ,EAAE,EAAE,CAClC,QAAQ,CAAC,CAAC,CAAC,iEAAiE,CAAC,CAAC,CAAC,EAAE,CAAC"}
1
+ {"version":3,"file":"Select.js","sourceRoot":"","sources":["../../../src/ui-kit/Select/Select.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AACxC,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACpC,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,6BAA6B,CAAC;AAC1E,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAiB9D,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CACvB,CAAC,EAAE,SAAS,GAAG,EAAE,EAAE,QAAQ,GAAG,IAAI,EAAE,KAAK,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE,WAAW,GAAG,EAAE,EAAE,EAAE,EAAE;IAC9F,MAAM,CAAC,YAAY,EAAE,eAAe,CAAC,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC;IACtF,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;IAE5C,MAAM,UAAU,GAAG,MAAM,CAA0B,IAAI,CAAC,CAAC;IAEzD,eAAe,CAAC,UAAU,EAAE,SAAS,CAAC,CAAC;IAEvC,MAAM,YAAY,GAAG,CAAC,MAAmB,EAAE,EAAE;QAC3C,eAAe,CAAC,MAAM,CAAC,CAAC;QACxB,SAAS,CAAC,KAAK,CAAC,CAAC;QACjB,QAAQ,CAAC,MAAM,CAAC,CAAC;IACnB,CAAC,CAAC;IAEF,MAAM,UAAU,GAAG,CAAC,MAAM,EAAE,EAAE,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,KAAK,YAAY,CAAC,GAAG,CAAC,CAAC;IAExE,SAAS,CAAC,GAAG,EAAE;QACb,eAAe,CAAC,KAAK,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC;IAClD,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC;IAEZ,OAAO,CACL,eAAK,SAAS,EAAE,GAAG,SAAS,EAAE,EAAE,GAAG,EAAE,UAAU,aAC5C,KAAK,CAAC,CAAC,CAAC,eAAM,SAAS,EAAC,WAAW,YAAE,KAAK,GAAQ,CAAC,CAAC,CAAC,IAAI,EAC1D,eAAK,SAAS,EAAE,YAAY,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,aACpD,eACE,SAAS,EAAE;cACT,cAAc,CAAC,QAAQ,CAAC,EAAE,EAC5B,OAAO,EAAE,GAAG,EAAE,CAAC,SAAS,CAAC,CAAC,MAAM,CAAC,aAEjC,YAAG,SAAS,EAAC,mEAAmE,YAC7E,YAAY,EAAE,IAAI,IAAI,WAAW,GAChC,EACJ,KAAC,IAAI,IACH,IAAI,EAAC,aAAa,EAClB,KAAK,EAAC,IAAI,EACV,MAAM,EAAC,IAAI,EACX,SAAS,EAAE,oBAAoB,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE,GAC3D,IACE,EACL,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC,CACjB,cAAK,SAAS,EAAE,OAAO,kBAAkB,CAAC,MAAM,CAAC,EAAE,YACjD,cACE,SAAS,EAAE,iHAAiH,YAE3H,OAAO,CAAC,GAAG,CAAC,YAAY,CAAC,YAAY,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC,GACxD,GACF,CACP,CAAC,CAAC,CAAC,IAAI,IACJ,IACF,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,MAAM,kBAAkB,GAAG,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,iBAAiB,CAAC,CAAC;AAEzE,MAAM,YAAY,GAChB,CAAC,YAAY,EAAE,MAAe,EAAE,UAAU,EAAE,EAAE,CAAC,CAAC,MAAmB,EAAE,CAAS,EAAE,EAAE;IAChF,OAAO,CACL,eAEE,OAAO,EAAE,GAAG,EAAE;YACZ,YAAY,CAAC,MAAM,CAAC,CAAC;QACvB,CAAC,EACD,SAAS,EAAC,oEAAoE,aAE9E,eAAM,SAAS,EAAC,SAAS,YAAE,MAAM,CAAC,IAAI,GAAQ,EAC9C,KAAC,IAAI,IACH,IAAI,EAAC,gBAAgB,EACrB,KAAK,EAAC,IAAI,EACV,MAAM,EAAC,IAAI,EACX,SAAS,EAAE,CAAC,yBAAyB,EAAE,UAAU,CAAC,MAAM,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,IAAI,CACvF,GAAG,CACJ,GACD,KAdG,MAAM,CAAC,CAAC,CAAC,CAeV,CACP,CAAC;AACJ,CAAC,CAAC;AAEJ,MAAM,cAAc,GAAG,CAAC,QAAQ,EAAE,EAAE,CAClC,QAAQ,CAAC,CAAC,CAAC,iEAAiE,CAAC,CAAC,CAAC,EAAE,CAAC"}
@@ -0,0 +1 @@
1
+ export declare const getSanitizedValue: (_: string) => string;
@@ -0,0 +1,2 @@
1
+ export const getSanitizedValue = (_) => _.split(/\s+/).join('');
2
+ //# sourceMappingURL=getSanitizedValue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getSanitizedValue.js","sourceRoot":"","sources":["../../src/utils/getSanitizedValue.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAS,EAAU,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC"}
@@ -1,44 +1,68 @@
1
1
  import { JSX } from '@redneckz/uni-jsx';
2
- import type { UniBlockProps } from '../../model/ContentPageDef';
2
+ import { UniBlockProps } from '../../model/ContentPageDef';
3
+ import { renderBlocksList } from '../../ui-kit/BlocksList/renderBlocksList';
4
+ import { Foldable } from '../../ui-kit/Foldable/Foldable';
5
+ import type { FoldButtonProps } from '../../ui-kit/Foldable/FoldButtonProps';
6
+ import type { IconName } from '../../ui-kit/Icon/IconProps';
3
7
  import { Img } from '../../ui-kit/Img/Img';
4
8
  import type { AccordionItemCommonProps } from './AccordionContent';
5
- import { AccordionItemInner } from './AccordionItemInner';
6
- import { useActiveHandler } from './useActiveHandler';
7
9
 
8
10
  export interface AccordionItemProps extends AccordionItemCommonProps, UniBlockProps {}
9
11
 
12
+ const icons: IconName[] = ['PlusIcon', 'MinusIcon'];
13
+
10
14
  export const AccordionItem = JSX<AccordionItemProps>(
11
- ({ label, labelIcon, blocks, bordered, context }) => {
12
- const { hasContent, icon, handleToggle } = useActiveHandler({ blocks });
15
+ ({ label = '', labelIcon, blocks, bordered, context }) => {
16
+ const foldableBlocks = blocks ? renderBlocksList({ context, blocks, className: '!px-0' }) : [];
13
17
 
14
18
  return (
15
19
  <li className={`${borderedLiClass(bordered)} border-solid border-main-divider`}>
16
- <button
17
- className={`border-none bg-transparent flex justify-between text-left w-full font-sans text-primary-text
18
- ${bordered ? '' : 'py-[14px] px-0'}
19
- ${hasContent ? 'group cursor-pointer' : ''}`}
20
- onClick={handleToggle}
21
- >
22
- <span
23
- className={`text-m-title-xs font-medium pr-2.5 flex ${
24
- hasContent ? 'group-hover:text-primary-main' : ''
25
- }`}
26
- >
27
- {labelIcon ? (
28
- <Img image={labelIcon} className="mr-3 flex-shrink-0" width="24" height="24" asSVG />
29
- ) : null}
30
- {label}
31
- </span>
32
- {hasContent ? (
33
- <Img className="flex-shrink-0" image={icon} width="24" height="24" asSVG />
34
- ) : null}
35
- </button>
36
- {hasContent ? <AccordionItemInner blocks={blocks} context={context} /> : null}
20
+ <Foldable
21
+ hiddenBlocksNum={foldableBlocks.length}
22
+ blocks={foldableBlocks}
23
+ isFoldButtonOnTop
24
+ containerClassName="flex flex-wrap group-last:last:pb-0"
25
+ renderFoldButton={(props) => (
26
+ <FoldButton
27
+ className={bordered ? '' : 'py-[14px] px-0'}
28
+ icon={icons[Number(props.isUnfolded)]}
29
+ label={label}
30
+ primaryIcon={labelIcon}
31
+ hasContent={Boolean(blocks?.length)}
32
+ onClick={props.onToggle}
33
+ />
34
+ )}
35
+ />
37
36
  </li>
38
37
  );
39
38
  },
40
39
  );
41
40
 
41
+ const FoldButton = JSX<FoldButtonProps>(
42
+ ({ className, hasContent, icon, label, primaryIcon, onClick }) => (
43
+ <button
44
+ className={`border-none bg-transparent flex justify-between text-left w-full font-sans text-primary-text
45
+ ${className}
46
+ ${hasContent ? 'group cursor-pointer' : ''}`}
47
+ onClick={onClick}
48
+ >
49
+ <span
50
+ className={`text-m-title-xs font-medium pr-2.5 flex ${
51
+ hasContent ? 'group-hover:text-primary-main' : ''
52
+ }`}
53
+ >
54
+ {primaryIcon ? (
55
+ <Img image={primaryIcon} className="mr-3 flex-shrink-0" width="24" height="24" asSVG />
56
+ ) : null}
57
+ {label}
58
+ </span>
59
+ {hasContent ? (
60
+ <Img className="flex-shrink-0" image={icon} width="24" height="24" asSVG />
61
+ ) : null}
62
+ </button>
63
+ ),
64
+ );
65
+
42
66
  function borderedLiClass(bordered?: boolean) {
43
67
  return bordered ? 'border p-4 rounded mb-4' : 'border-0 border-b last:border-b-0';
44
68
  }
@@ -63,7 +63,7 @@ const renderBenefits = (
63
63
  };
64
64
 
65
65
  const setIconVersion = (benefitIcon: Picture, benefitsBlockVersion: BlockVersion) => {
66
- if (!benefitIcon.icon) {
66
+ if (!benefitIcon.icon || benefitIcon?.iconVersion) {
67
67
  return benefitIcon;
68
68
  }
69
69
  benefitIcon.iconVersion = benefitsBlockVersion === 'secondary' ? 'white' : 'normal';
@@ -1,6 +1,5 @@
1
1
  import { Accordion } from './Accordion/Accordion';
2
2
  import { ComparisonTable } from './ComparisonTable/ComparisonTable';
3
- import { ExchangeRateTile } from './ExchangeRateTile/ExchangeRateTile';
4
3
  import { Footer } from './Footer/Footer';
5
4
  import { Gallery } from './Gallery/Gallery';
6
5
  import { Header } from './Header/Header';
@@ -18,7 +17,6 @@ import { TextBlock } from './TextBlock/TextBlock';
18
17
  export const Blocks = {
19
18
  Accordion,
20
19
  ComparisonTable,
21
- ExchangeRateTile,
22
20
  Footer,
23
21
  Gallery,
24
22
  Header,
@@ -138,7 +138,7 @@ export type CalculatorNav = HeadlineCommonProps & IconProps;
138
138
  /**
139
139
  * @title Вкладка
140
140
  */
141
- export type CalculatorTab = TitleProps & {
141
+ export type CalculatorTab = {
142
142
  nav?: CalculatorNav;
143
143
  calculatorBlock?: CalculatorBlockDef;
144
144
  };
@@ -8,6 +8,7 @@ import { Heading } from '../../ui-kit/Heading/Heading';
8
8
  import { getDisabledButtonClasses } from '../../ui-kit/Button/getDisabledButtonClasses';
9
9
  import { getRegularButtonClasses } from '../../ui-kit/Button/getRegularButtonClasses';
10
10
  import { useLink } from '../../hooks/useLink';
11
+ import { getSanitizedValue } from '../../utils/getSanitizedValue';
11
12
 
12
13
  const AMOUNT_KEY = 'amount';
13
14
  const FORM_URL = 'https://www.rshb.ru/p2p/';
@@ -30,7 +31,7 @@ export const CardTransfer = JSX<CardTransferProps>(
30
31
  const router = context.useRouter();
31
32
  const { handlerDecorator } = context;
32
33
  const [value, setValue] = useState<string>('');
33
- const isDisabled = !Number(value);
34
+ const isDisabled = !Number(getSanitizedValue(value));
34
35
  const buttonStyle = isDisabled
35
36
  ? getDisabledButtonClasses({ version: button?.version })
36
37
  : getRegularButtonClasses({ className: 'text-white', version: button?.version });
@@ -47,6 +48,7 @@ export const CardTransfer = JSX<CardTransferProps>(
47
48
  name={AMOUNT_KEY}
48
49
  value={value}
49
50
  onChange={setValue}
51
+ valid={value === '' || !isDisabled}
50
52
  placeholder={placeholder}
51
53
  label={label}
52
54
  />
@@ -44,8 +44,8 @@ export const Catalog = JSX<CatalogProps>(
44
44
  activeCardIndex,
45
45
  setActiveCardIndex,
46
46
  })}
47
- <div className={`${BLUR_BLOCK_CLASSES} left-0 ${'bg-opacity-from-white'}`} />
48
- <div className={`${BLUR_BLOCK_CLASSES} right-0 ${'bg-opacity-to-white'}`} />
47
+ <div className={`${BLUR_BLOCK_CLASSES} left-0 bg-opacity-from-white`} />
48
+ <div className={`${BLUR_BLOCK_CLASSES} right-0 bg-opacity-to-white`} />
49
49
  </BlockWrapper>
50
50
  );
51
51
  },
@@ -1,10 +1,8 @@
1
1
  import { JSX } from '@redneckz/uni-jsx';
2
2
  import type { BlockVersion } from '../../model/BlockVersion';
3
3
  import type { UniBlockProps } from '../../model/ContentPageDef';
4
- import type { Picture } from '../../model/Picture';
5
4
  import type { ProductColorVersion } from '../../model/ProductColorVersion';
6
5
  import { Button } from '../../ui-kit/Button/Button';
7
- import type { ButtonWithIconProps } from '../../ui-kit/Button/ButtonProps';
8
6
  import { Heading } from '../../ui-kit/Heading/Heading';
9
7
  import { Img } from '../../ui-kit/Img/Img';
10
8
  import type { CatalogCardType } from './CatalogContent';
@@ -13,12 +11,6 @@ export interface CatalogCardProps extends CatalogCardType, UniBlockProps {
13
11
  version?: BlockVersion;
14
12
  }
15
13
 
16
- const iconVersionMap = {
17
- default: 'normal',
18
- primary: 'white',
19
- secondary: 'black',
20
- };
21
-
22
14
  const cardStyleMap: Record<ProductColorVersion, string> = {
23
15
  black: 'bg-black',
24
16
  white: 'bg-white',
@@ -43,7 +35,7 @@ export const CatalogCard = JSX<CatalogCardProps>(
43
35
  </div>
44
36
  ) : null}
45
37
  {price ? <div className="text-h3 text-left">{price}&nbsp;₽</div> : null}
46
- {button ? renderButton(button) : null}
38
+ {button ? <Button className="mt-5 w-full" {...button} /> : null}
47
39
  </section>
48
40
  );
49
41
  },
@@ -55,29 +47,3 @@ const renderColorOption = (color: ProductColorVersion, i: number) => (
55
47
  className={`w-6 h-6 ml-3 border border-solid border-main-divider rounded-full ${cardStyleMap[color]}`}
56
48
  />
57
49
  );
58
-
59
- const renderButton = (button: ButtonWithIconProps) => {
60
- const { icon, iconRight, ...other } = button;
61
-
62
- if (!button?.text) {
63
- return null;
64
- }
65
-
66
- const iconVersion = iconVersionMap[button?.version || 'default'];
67
- const leftIcon = renderButtonIcon({ ...icon, iconVersion });
68
- const rightIcon = renderButtonIcon({ ...iconRight, iconVersion });
69
-
70
- return (
71
- <Button className="mt-5 w-full" appendLeft={leftIcon} appendRight={rightIcon} {...other} />
72
- );
73
- };
74
-
75
- const renderButtonIcon = (buttonIcon?: Picture) => {
76
- if (!buttonIcon || (!buttonIcon?.icon && !buttonIcon?.src)) {
77
- return null;
78
- }
79
-
80
- const iconWidth = buttonIcon?.size?.width ? `${buttonIcon.size.width}` : '24';
81
-
82
- return <Img image={buttonIcon} width={iconWidth} height="24" asSVG />;
83
- };
@@ -1,143 +1,72 @@
1
1
  import { JSX } from '@redneckz/uni-jsx';
2
- import { useState } from '@redneckz/uni-jsx/lib/hooks';
2
+ import { useCallback, useState } from '@redneckz/uni-jsx/lib/hooks';
3
3
  import type { UniBlockProps } from '../../model/ContentPageDef';
4
4
  import { Heading } from '../../ui-kit/Heading/Heading';
5
5
  import { SwipeListControl } from '../../ui-kit/SwipeListControl/SwipeListControl';
6
- import type { ComparisonTableContent } from './ComparisonTableContent';
6
+ import type { CellData, ComparisonTableContent } from './ComparisonTableContent';
7
7
  import { TableColumn } from './TableColumn';
8
8
 
9
9
  export interface ComparisonTableProps extends ComparisonTableContent, UniBlockProps {}
10
10
 
11
- export const ComparisonTable = JSX<ComparisonTableProps>(
12
- ({
13
- className,
14
- context,
15
- title,
16
- rowHeaders,
17
- columns,
18
- visibleRowLength = 0,
19
- isColoredFirstColumn = false,
20
- orientation = 'vertical',
21
- }) => {
22
- const tableData =
23
- columns?.map(({ data, header }) => ({
24
- header,
25
- column: data?.map((cell, i) => ({ cell, rowHeader: rowHeaders?.[i]?.title })),
26
- })) || [];
11
+ export const ComparisonTable = JSX<ComparisonTableProps>((props) => {
12
+ const { className, title } = props;
27
13
 
14
+ return (
15
+ <section
16
+ className={`bg-white font-sans px-4 py-6 overflow-hidden text-primary-text relative ${
17
+ className || ''
18
+ }`}
19
+ >
20
+ {title ? (
21
+ <Heading headingType="h3" className="font-medium text-center m-0 mb-5" title={title} />
22
+ ) : null}
23
+ <div role="table">
24
+ <TableInner {...props} />
25
+ </div>
26
+ </section>
27
+ );
28
+ });
29
+
30
+ const TableInner = JSX<ComparisonTableProps>(
31
+ ({ columns, rowHeaders, isColoredFirstColumn, visibleRowLength, orientation, context }) => {
28
32
  const [columnsViewState, setColumnsViewState] = useState(
29
33
  new Array<boolean>(columns?.length || 0).fill(!visibleRowLength),
30
34
  );
31
35
 
32
- const handleToggleColumn = (i: number) => {
33
- columnsViewState[i] = !columnsViewState[i];
34
- setColumnsViewState([...columnsViewState]);
35
- };
36
+ const handleToggleColumn = useCallback((colIndex: number) => {
37
+ const toggleColState = (colState: boolean, i: number) =>
38
+ i === colIndex ? !colState : colState;
36
39
 
37
- return (
38
- <section
39
- className={`bg-white font-sans px-4 py-6 overflow-hidden text-primary-text relative ${
40
- className || ''
41
- }`}
42
- >
43
- {title ? (
44
- <Heading headingType="h3" className="font-medium text-center m-0 mb-5" title={title} />
45
- ) : null}
40
+ setColumnsViewState((_) => _.map(toggleColState));
41
+ }, []);
46
42
 
47
- {renderColumns({
48
- tableData,
49
- context,
50
- visibleRowLength,
51
- isColoredFirstColumn,
52
- columnsViewState,
53
- handleToggleColumn,
54
- orientation,
55
- setColumnsViewState,
56
- })}
57
- </section>
43
+ const handleSlideChange = useCallback(
44
+ () => setColumnsViewState((_) => new Array(_.length).fill(false)),
45
+ [],
58
46
  );
59
- },
60
- );
61
47
 
62
- const renderColumns = ({
63
- context,
64
- tableData,
65
- visibleRowLength,
66
- isColoredFirstColumn,
67
- columnsViewState,
68
- handleToggleColumn,
69
- orientation = 'horizontal',
70
- setColumnsViewState,
71
- }) => (
72
- <div role="table">
73
- {tableData?.length
74
- ? renderInnerTable({
75
- orientation,
76
- context,
77
- columnsViewState,
78
- setColumnsViewState,
79
- tableData,
80
- visibleRowLength,
81
- isColoredFirstColumn,
82
- handleToggleColumn,
83
- })
84
- : null}
85
- </div>
86
- );
48
+ const getColumnData = (cellData?: CellData[][]) =>
49
+ cellData?.map((cell, i) => ({ cell, rowHeader: rowHeaders?.[i]?.title }));
87
50
 
88
- const renderInnerTable = ({
89
- orientation,
90
- context,
91
- columnsViewState,
92
- setColumnsViewState,
93
- tableData,
94
- visibleRowLength,
95
- isColoredFirstColumn,
96
- handleToggleColumn,
97
- }) =>
98
- orientation === 'horizontal' ? (
99
- <SwipeListControl
100
- context={context}
101
- onSlideChange={onSlideChange(columnsViewState, setColumnsViewState)}
102
- >
103
- {tableData.map(
104
- renderColumn({
105
- context,
106
- visibleRowLength,
107
- isColoredFirstColumn,
108
- columnsViewState,
109
- handleToggleColumn,
110
- }),
111
- )}
112
- </SwipeListControl>
113
- ) : (
114
- tableData.map(
115
- renderColumn({
116
- context,
117
- visibleRowLength,
118
- isColoredFirstColumn,
119
- columnsViewState,
120
- handleToggleColumn,
121
- }),
122
- )
123
- );
124
-
125
- const renderColumn =
126
- ({ context, visibleRowLength, isColoredFirstColumn, columnsViewState, handleToggleColumn }) =>
127
- (columnData, i) =>
128
- (
51
+ const tableColumns = columns?.map(({ data, header }, colIndex) => (
129
52
  <TableColumn
130
- key={String(i)}
53
+ key={String(colIndex)}
131
54
  context={context}
132
55
  visibleRowLength={visibleRowLength}
133
- showRow={columnsViewState[i]}
134
- header={columnData.header}
135
- columnData={columnData.column}
136
- isFillGradient={i === 0 && isColoredFirstColumn}
137
- onToggleColumn={() => handleToggleColumn(i)}
56
+ showRow={columnsViewState[colIndex]}
57
+ header={header}
58
+ columnData={getColumnData(data)}
59
+ isFillGradient={colIndex === 0 && isColoredFirstColumn}
60
+ onToggleColumn={() => handleToggleColumn(colIndex)}
138
61
  />
139
- );
62
+ ));
140
63
 
141
- const onSlideChange = (columnsViewState, setColumnsViewState) => () => {
142
- setColumnsViewState(new Array(columnsViewState.length).fill(false));
143
- };
64
+ return orientation === 'horizontal' ? (
65
+ <SwipeListControl context={context} onSlideChange={handleSlideChange}>
66
+ {tableColumns}
67
+ </SwipeListControl>
68
+ ) : (
69
+ tableColumns
70
+ );
71
+ },
72
+ );