@megafon/ui-shared 6.0.0-beta.5 → 6.1.0

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 (312) hide show
  1. package/CHANGELOG.md +4043 -0
  2. package/dist/es/components/AccordionBox/AccordionBox.css +15 -1
  3. package/dist/es/components/AccordionBox/AccordionBox.d.ts +2 -2
  4. package/dist/es/components/AccordionBox/AccordionBox.js +49 -6
  5. package/dist/es/components/AudioPlayer/AudioPlayer.d.ts +2 -2
  6. package/dist/es/components/AudioPlayer/AudioPlayer.js +27 -11
  7. package/dist/es/components/AudioPlayer/AudioProgress.d.ts +1 -1
  8. package/dist/es/components/AudioPlayer/AudioProgress.js +22 -10
  9. package/dist/es/components/AudioPlayer/AudioRange.d.ts +1 -1
  10. package/dist/es/components/AudioPlayer/AudioRange.js +10 -8
  11. package/dist/es/components/AudioPlayer/AudioVolume.d.ts +1 -1
  12. package/dist/es/components/AudioPlayer/AudioVolume.js +12 -3
  13. package/dist/es/components/AudioPlayer/hooks/useTrackDuration.js +10 -4
  14. package/dist/es/components/AudioPlayer/style/AudioPlayer.css +58 -1
  15. package/dist/es/components/AudioPlayer/style/AudioProgress.css +35 -1
  16. package/dist/es/components/AudioPlayer/style/AudioRange.css +68 -1
  17. package/dist/es/components/AudioPlayer/style/AudioVolume.css +34 -1
  18. package/dist/es/components/AudioPlayer/timerFormatUtil.js +9 -1
  19. package/dist/es/components/BannerBox/BannerBox.d.ts +1 -1
  20. package/dist/es/components/BannerBox/BannerBox.js +12 -3
  21. package/dist/es/components/BenefitsIcons/BenefitsIcons.d.ts +1 -1
  22. package/dist/es/components/BenefitsIcons/BenefitsIcons.js +64 -23
  23. package/dist/es/components/BenefitsIcons/BenefitsIconsTile.d.ts +1 -1
  24. package/dist/es/components/BenefitsIcons/BenefitsIconsTile.js +36 -9
  25. package/dist/es/components/BenefitsIcons/helpers.d.ts +3 -3
  26. package/dist/es/components/BenefitsIcons/helpers.js +20 -6
  27. package/dist/es/components/BenefitsIcons/style/BenefitsIcons.css +38 -1
  28. package/dist/es/components/BenefitsIcons/style/BenefitsIconsTile.css +90 -1
  29. package/dist/es/components/BenefitsIcons/types.d.ts +5 -5
  30. package/dist/es/components/BenefitsPictures/BenefitsPictures.d.ts +1 -1
  31. package/dist/es/components/BenefitsPictures/BenefitsPictures.js +49 -19
  32. package/dist/es/components/BenefitsPictures/BenfitsPictures.css +43 -1
  33. package/dist/es/components/BenefitsPictures/helpers.d.ts +2 -2
  34. package/dist/es/components/BenefitsPictures/helpers.js +14 -0
  35. package/dist/es/components/BenefitsPictures/types.d.ts +3 -3
  36. package/dist/es/components/BenefitsPictures/types.js +0 -1
  37. package/dist/es/components/BlogBox/BlogBox.css +92 -0
  38. package/dist/es/components/BlogBox/BlogBox.d.ts +28 -0
  39. package/dist/es/components/BlogBox/BlogBox.js +101 -0
  40. package/dist/es/components/BlogBox/components/BlogBoxTile.css +197 -0
  41. package/dist/es/components/BlogBox/components/BlogBoxTile.d.ts +9 -0
  42. package/dist/es/components/BlogBox/components/BlogBoxTile.js +67 -0
  43. package/dist/es/components/BlogBox/types.d.ts +37 -0
  44. package/dist/es/components/BlogBox/types.js +0 -0
  45. package/dist/es/components/Breadcrumbs/Breadcrumbs.css +43 -1
  46. package/dist/es/components/Breadcrumbs/Breadcrumbs.d.ts +6 -6
  47. package/dist/es/components/Breadcrumbs/Breadcrumbs.js +39 -10
  48. package/dist/es/components/Breadcrumbs/components/BreadcrumbsItem.css +16 -1
  49. package/dist/es/components/Breadcrumbs/components/BreadcrumbsItem.d.ts +4 -4
  50. package/dist/es/components/Breadcrumbs/components/BreadcrumbsItem.js +36 -11
  51. package/dist/es/components/ButtonBanner/ButtonBanner.css +122 -1
  52. package/dist/es/components/ButtonBanner/ButtonBanner.d.ts +7 -7
  53. package/dist/es/components/ButtonBanner/ButtonBanner.js +53 -22
  54. package/dist/es/components/ButtonLinkBox/ButtonLinkBox.css +19 -1
  55. package/dist/es/components/ButtonLinkBox/ButtonLinkBox.d.ts +3 -3
  56. package/dist/es/components/ButtonLinkBox/ButtonLinkBox.js +51 -20
  57. package/dist/es/components/Card/Card.css +354 -1
  58. package/dist/es/components/Card/Card.d.ts +4 -4
  59. package/dist/es/components/Card/Card.js +115 -25
  60. package/dist/es/components/Card/types.d.ts +10 -10
  61. package/dist/es/components/Card/types.js +0 -1
  62. package/dist/es/components/CardsBox/CardsBox.js +14 -3
  63. package/dist/es/components/CardsBox/helpers.d.ts +2 -2
  64. package/dist/es/components/CardsBox/helpers.js +4 -0
  65. package/dist/es/components/CarouselBox/CarouselBox.d.ts +2 -2
  66. package/dist/es/components/CarouselBox/CarouselBox.js +24 -11
  67. package/dist/es/components/Container/Container.css +3287 -1
  68. package/dist/es/components/Container/Container.d.ts +5 -7
  69. package/dist/es/components/Container/Container.js +25 -10
  70. package/dist/es/components/DownloadLinks/DownloadLink.css +37 -1
  71. package/dist/es/components/DownloadLinks/DownloadLink.d.ts +1 -1
  72. package/dist/es/components/DownloadLinks/DownloadLink.js +44 -13
  73. package/dist/es/components/DownloadLinks/DownloadLinks.css +36 -1
  74. package/dist/es/components/DownloadLinks/DownloadLinks.d.ts +3 -3
  75. package/dist/es/components/DownloadLinks/DownloadLinks.js +13 -2
  76. package/dist/es/components/FaqWrapper/FaqWrapper.d.ts +2 -5
  77. package/dist/es/components/FaqWrapper/FaqWrapper.js +3 -1
  78. package/dist/es/components/ImageBanner/ImageBanner.css +252 -1
  79. package/dist/es/components/ImageBanner/ImageBanner.d.ts +7 -8
  80. package/dist/es/components/ImageBanner/ImageBanner.js +88 -37
  81. package/dist/es/components/Instructions/Instructions.css +827 -1
  82. package/dist/es/components/Instructions/Instructions.d.ts +13 -11
  83. package/dist/es/components/Instructions/Instructions.js +101 -44
  84. package/dist/es/components/NotificationBox/NotificationBox.d.ts +4 -4
  85. package/dist/es/components/NotificationBox/NotificationBox.js +19 -5
  86. package/dist/es/components/NotificationBox/style/NotificationBox.css +28 -0
  87. package/dist/es/components/PageTitle/PageTitle.css +80 -1
  88. package/dist/es/components/PageTitle/PageTitle.d.ts +2 -2
  89. package/dist/es/components/PageTitle/PageTitle.js +37 -12
  90. package/dist/es/components/Partners/Partners.css +53 -1
  91. package/dist/es/components/Partners/Partners.d.ts +2 -2
  92. package/dist/es/components/Partners/Partners.js +48 -17
  93. package/dist/es/components/PictureWithDescription/PictureWithDescription.css +80 -1
  94. package/dist/es/components/PictureWithDescription/PictureWithDescription.d.ts +2 -4
  95. package/dist/es/components/PictureWithDescription/PictureWithDescription.js +28 -10
  96. package/dist/es/components/Property/Property.css +156 -1
  97. package/dist/es/components/Property/Property.d.ts +4 -4
  98. package/dist/es/components/Property/Property.js +81 -37
  99. package/dist/es/components/Property/PropertyDescription.css +17 -1
  100. package/dist/es/components/Property/PropertyDescription.d.ts +3 -3
  101. package/dist/es/components/Property/PropertyDescription.js +28 -8
  102. package/dist/es/components/Property/types.d.ts +5 -7
  103. package/dist/es/components/Property/types.js +0 -1
  104. package/dist/es/components/Steps/Steps.css +41 -1
  105. package/dist/es/components/Steps/Steps.d.ts +1 -2
  106. package/dist/es/components/Steps/Steps.js +19 -4
  107. package/dist/es/components/Steps/StepsItem.css +42 -1
  108. package/dist/es/components/Steps/StepsItem.d.ts +2 -2
  109. package/dist/es/components/Steps/StepsItem.js +9 -2
  110. package/dist/es/components/StoreBanner/StoreBanner.css +346 -1
  111. package/dist/es/components/StoreBanner/StoreBanner.d.ts +5 -5
  112. package/dist/es/components/StoreBanner/StoreBanner.js +97 -41
  113. package/dist/es/components/StoreBanner/doc/img/android-screen.png +0 -0
  114. package/dist/es/components/StoreBanner/doc/img/qr-code.png +0 -0
  115. package/dist/es/components/StoreBanner/doc/img/screen.png +0 -0
  116. package/dist/es/components/StoreButton/StoreButton.css +327 -1
  117. package/dist/es/components/StoreButton/StoreButton.d.ts +3 -3
  118. package/dist/es/components/StoreButton/StoreButton.js +44 -13
  119. package/dist/es/components/Table/Table.css +157 -1
  120. package/dist/es/components/Table/Table.d.ts +1 -1
  121. package/dist/es/components/Table/Table.js +51 -31
  122. package/dist/es/components/Table/TableCell.js +6 -0
  123. package/dist/es/components/Table/TableRow.js +10 -1
  124. package/dist/es/components/TabsBox/TabsBox.d.ts +1 -1
  125. package/dist/es/components/TabsBox/TabsBox.js +13 -4
  126. package/dist/es/components/TextBox/TextBox.css +25 -1
  127. package/dist/es/components/TextBox/TextBox.d.ts +1 -2
  128. package/dist/es/components/TextBox/TextBox.js +23 -8
  129. package/dist/es/components/TextBox/TextBoxPicture.css +27 -1
  130. package/dist/es/components/TextBox/TextBoxPicture.d.ts +2 -2
  131. package/dist/es/components/TextBox/TextBoxPicture.js +14 -5
  132. package/dist/es/components/TextWithIcon/TextWithIcon.css +10 -1
  133. package/dist/es/components/TextWithIcon/TextWithIcon.d.ts +1 -1
  134. package/dist/es/components/TextWithIcon/TextWithIcon.js +24 -6
  135. package/dist/es/components/TextWithIcon/TextWithIconItem.css +29 -1
  136. package/dist/es/components/TextWithIcon/TextWithIconItem.d.ts +1 -1
  137. package/dist/es/components/TextWithIcon/TextWithIconItem.js +21 -6
  138. package/dist/es/components/TitleDescriptionBox/TitleDescriptionBox.css +31 -1
  139. package/dist/es/components/TitleDescriptionBox/TitleDescriptionBox.d.ts +1 -1
  140. package/dist/es/components/TitleDescriptionBox/TitleDescriptionBox.js +23 -6
  141. package/dist/es/components/VideoBanner/VideoBanner.css +225 -1
  142. package/dist/es/components/VideoBanner/VideoBanner.d.ts +7 -7
  143. package/dist/es/components/VideoBanner/VideoBanner.js +110 -47
  144. package/dist/es/components/VideoBlock/VideoBlock.css +106 -1
  145. package/dist/es/components/VideoBlock/VideoBlock.d.ts +4 -4
  146. package/dist/es/components/VideoBlock/VideoBlock.js +75 -35
  147. package/dist/es/helpers/getColumnConfig.d.ts +1 -5
  148. package/dist/es/helpers/setRelAttribute.d.ts +1 -0
  149. package/dist/es/helpers/setRelAttribute.js +11 -0
  150. package/dist/es/hooks/useResolutions.d.ts +7 -0
  151. package/dist/es/hooks/useResolutions.js +60 -0
  152. package/dist/es/index.d.ts +2 -0
  153. package/dist/es/index.js +2 -0
  154. package/dist/lib/components/AccordionBox/AccordionBox.css +15 -1
  155. package/dist/lib/components/AccordionBox/AccordionBox.d.ts +2 -2
  156. package/dist/lib/components/AccordionBox/AccordionBox.js +66 -10
  157. package/dist/lib/components/AudioPlayer/AudioPlayer.d.ts +2 -2
  158. package/dist/lib/components/AudioPlayer/AudioPlayer.js +56 -32
  159. package/dist/lib/components/AudioPlayer/AudioProgress.d.ts +1 -1
  160. package/dist/lib/components/AudioPlayer/AudioProgress.js +43 -12
  161. package/dist/lib/components/AudioPlayer/AudioRange.d.ts +1 -1
  162. package/dist/lib/components/AudioPlayer/AudioRange.js +17 -9
  163. package/dist/lib/components/AudioPlayer/AudioVolume.d.ts +1 -1
  164. package/dist/lib/components/AudioPlayer/AudioVolume.js +23 -4
  165. package/dist/lib/components/AudioPlayer/hooks/useTrackDuration.js +16 -5
  166. package/dist/lib/components/AudioPlayer/style/AudioPlayer.css +58 -1
  167. package/dist/lib/components/AudioPlayer/style/AudioProgress.css +35 -1
  168. package/dist/lib/components/AudioPlayer/style/AudioRange.css +68 -1
  169. package/dist/lib/components/AudioPlayer/style/AudioVolume.css +34 -1
  170. package/dist/lib/components/AudioPlayer/timerFormatUtil.js +13 -2
  171. package/dist/lib/components/BannerBox/BannerBox.d.ts +1 -1
  172. package/dist/lib/components/BannerBox/BannerBox.js +25 -7
  173. package/dist/lib/components/BenefitsIcons/BenefitsIcons.d.ts +1 -1
  174. package/dist/lib/components/BenefitsIcons/BenefitsIcons.js +86 -26
  175. package/dist/lib/components/BenefitsIcons/BenefitsIconsTile.d.ts +1 -1
  176. package/dist/lib/components/BenefitsIcons/BenefitsIconsTile.js +53 -13
  177. package/dist/lib/components/BenefitsIcons/helpers.d.ts +3 -3
  178. package/dist/lib/components/BenefitsIcons/helpers.js +37 -10
  179. package/dist/lib/components/BenefitsIcons/style/BenefitsIcons.css +38 -1
  180. package/dist/lib/components/BenefitsIcons/style/BenefitsIconsTile.css +90 -1
  181. package/dist/lib/components/BenefitsIcons/types.d.ts +5 -5
  182. package/dist/lib/components/BenefitsIcons/types.js +8 -5
  183. package/dist/lib/components/BenefitsPictures/BenefitsPictures.d.ts +1 -1
  184. package/dist/lib/components/BenefitsPictures/BenefitsPictures.js +71 -24
  185. package/dist/lib/components/BenefitsPictures/BenfitsPictures.css +43 -1
  186. package/dist/lib/components/BenefitsPictures/helpers.d.ts +2 -2
  187. package/dist/lib/components/BenefitsPictures/helpers.js +40 -9
  188. package/dist/lib/components/BenefitsPictures/types.d.ts +3 -3
  189. package/dist/lib/components/BenefitsPictures/types.js +1 -5
  190. package/dist/lib/components/BlogBox/BlogBox.css +92 -0
  191. package/dist/lib/components/BlogBox/BlogBox.d.ts +28 -0
  192. package/dist/lib/components/BlogBox/BlogBox.js +120 -0
  193. package/dist/lib/components/BlogBox/components/BlogBoxTile.css +197 -0
  194. package/dist/lib/components/BlogBox/components/BlogBoxTile.d.ts +9 -0
  195. package/dist/lib/components/BlogBox/components/BlogBoxTile.js +80 -0
  196. package/dist/lib/components/BlogBox/types.d.ts +37 -0
  197. package/dist/lib/components/BlogBox/types.js +1 -0
  198. package/dist/lib/components/Breadcrumbs/Breadcrumbs.css +43 -1
  199. package/dist/lib/components/Breadcrumbs/Breadcrumbs.d.ts +6 -6
  200. package/dist/lib/components/Breadcrumbs/Breadcrumbs.js +60 -18
  201. package/dist/lib/components/Breadcrumbs/components/BreadcrumbsItem.css +16 -1
  202. package/dist/lib/components/Breadcrumbs/components/BreadcrumbsItem.d.ts +4 -4
  203. package/dist/lib/components/Breadcrumbs/components/BreadcrumbsItem.js +55 -22
  204. package/dist/lib/components/ButtonBanner/ButtonBanner.css +122 -1
  205. package/dist/lib/components/ButtonBanner/ButtonBanner.d.ts +7 -7
  206. package/dist/lib/components/ButtonBanner/ButtonBanner.js +89 -40
  207. package/dist/lib/components/ButtonLinkBox/ButtonLinkBox.css +19 -1
  208. package/dist/lib/components/ButtonLinkBox/ButtonLinkBox.d.ts +3 -3
  209. package/dist/lib/components/ButtonLinkBox/ButtonLinkBox.js +72 -29
  210. package/dist/lib/components/Card/Card.css +354 -1
  211. package/dist/lib/components/Card/Card.d.ts +4 -4
  212. package/dist/lib/components/Card/Card.js +164 -67
  213. package/dist/lib/components/Card/types.d.ts +10 -10
  214. package/dist/lib/components/Card/types.js +1 -5
  215. package/dist/lib/components/CardsBox/CardsBox.js +31 -7
  216. package/dist/lib/components/CardsBox/helpers.d.ts +2 -2
  217. package/dist/lib/components/CardsBox/helpers.js +8 -1
  218. package/dist/lib/components/CarouselBox/CarouselBox.d.ts +2 -2
  219. package/dist/lib/components/CarouselBox/CarouselBox.js +39 -15
  220. package/dist/lib/components/Container/Container.css +3287 -1
  221. package/dist/lib/components/Container/Container.d.ts +5 -7
  222. package/dist/lib/components/Container/Container.js +40 -18
  223. package/dist/lib/components/DownloadLinks/DownloadLink.css +37 -1
  224. package/dist/lib/components/DownloadLinks/DownloadLink.d.ts +1 -1
  225. package/dist/lib/components/DownloadLinks/DownloadLink.js +60 -17
  226. package/dist/lib/components/DownloadLinks/DownloadLinks.css +36 -1
  227. package/dist/lib/components/DownloadLinks/DownloadLinks.d.ts +3 -3
  228. package/dist/lib/components/DownloadLinks/DownloadLinks.js +33 -8
  229. package/dist/lib/components/FaqWrapper/FaqWrapper.d.ts +2 -5
  230. package/dist/lib/components/FaqWrapper/FaqWrapper.js +9 -6
  231. package/dist/lib/components/ImageBanner/ImageBanner.css +252 -1
  232. package/dist/lib/components/ImageBanner/ImageBanner.d.ts +7 -8
  233. package/dist/lib/components/ImageBanner/ImageBanner.js +138 -61
  234. package/dist/lib/components/Instructions/Instructions.css +827 -1
  235. package/dist/lib/components/Instructions/Instructions.d.ts +13 -11
  236. package/dist/lib/components/Instructions/Instructions.js +193 -106
  237. package/dist/lib/components/NotificationBox/NotificationBox.d.ts +4 -4
  238. package/dist/lib/components/NotificationBox/NotificationBox.js +37 -9
  239. package/dist/lib/components/NotificationBox/style/NotificationBox.css +28 -0
  240. package/dist/lib/components/PageTitle/PageTitle.css +80 -1
  241. package/dist/lib/components/PageTitle/PageTitle.d.ts +2 -2
  242. package/dist/lib/components/PageTitle/PageTitle.js +52 -15
  243. package/dist/lib/components/Partners/Partners.css +53 -1
  244. package/dist/lib/components/Partners/Partners.d.ts +2 -2
  245. package/dist/lib/components/Partners/Partners.js +65 -21
  246. package/dist/lib/components/PictureWithDescription/PictureWithDescription.css +80 -1
  247. package/dist/lib/components/PictureWithDescription/PictureWithDescription.d.ts +2 -4
  248. package/dist/lib/components/PictureWithDescription/PictureWithDescription.js +46 -16
  249. package/dist/lib/components/Property/Property.css +156 -1
  250. package/dist/lib/components/Property/Property.d.ts +4 -4
  251. package/dist/lib/components/Property/Property.js +120 -60
  252. package/dist/lib/components/Property/PropertyDescription.css +17 -1
  253. package/dist/lib/components/Property/PropertyDescription.d.ts +3 -3
  254. package/dist/lib/components/Property/PropertyDescription.js +46 -15
  255. package/dist/lib/components/Property/types.d.ts +5 -7
  256. package/dist/lib/components/Property/types.js +1 -5
  257. package/dist/lib/components/Steps/Steps.css +41 -1
  258. package/dist/lib/components/Steps/Steps.d.ts +1 -2
  259. package/dist/lib/components/Steps/Steps.js +35 -8
  260. package/dist/lib/components/Steps/StepsItem.css +42 -1
  261. package/dist/lib/components/Steps/StepsItem.d.ts +2 -2
  262. package/dist/lib/components/Steps/StepsItem.js +23 -11
  263. package/dist/lib/components/StoreBanner/StoreBanner.css +346 -1
  264. package/dist/lib/components/StoreBanner/StoreBanner.d.ts +5 -5
  265. package/dist/lib/components/StoreBanner/StoreBanner.js +118 -47
  266. package/dist/lib/components/StoreBanner/doc/img/android-screen.png +0 -0
  267. package/dist/lib/components/StoreBanner/doc/img/qr-code.png +0 -0
  268. package/dist/lib/components/StoreBanner/doc/img/screen.png +0 -0
  269. package/dist/lib/components/StoreButton/StoreButton.css +327 -1
  270. package/dist/lib/components/StoreButton/StoreButton.d.ts +3 -3
  271. package/dist/lib/components/StoreButton/StoreButton.js +63 -17
  272. package/dist/lib/components/Table/Table.css +157 -1
  273. package/dist/lib/components/Table/Table.d.ts +1 -1
  274. package/dist/lib/components/Table/Table.js +68 -35
  275. package/dist/lib/components/Table/TableCell.js +16 -4
  276. package/dist/lib/components/Table/TableRow.js +19 -5
  277. package/dist/lib/components/TabsBox/TabBox.js +4 -1
  278. package/dist/lib/components/TabsBox/TabsBox.d.ts +1 -1
  279. package/dist/lib/components/TabsBox/TabsBox.js +26 -8
  280. package/dist/lib/components/TextBox/TextBox.css +25 -1
  281. package/dist/lib/components/TextBox/TextBox.d.ts +1 -2
  282. package/dist/lib/components/TextBox/TextBox.js +36 -12
  283. package/dist/lib/components/TextBox/TextBoxPicture.css +27 -1
  284. package/dist/lib/components/TextBox/TextBoxPicture.d.ts +2 -2
  285. package/dist/lib/components/TextBox/TextBoxPicture.js +29 -11
  286. package/dist/lib/components/TextWithIcon/TextWithIcon.css +10 -1
  287. package/dist/lib/components/TextWithIcon/TextWithIcon.d.ts +1 -1
  288. package/dist/lib/components/TextWithIcon/TextWithIcon.js +39 -10
  289. package/dist/lib/components/TextWithIcon/TextWithIconItem.css +29 -1
  290. package/dist/lib/components/TextWithIcon/TextWithIconItem.d.ts +1 -1
  291. package/dist/lib/components/TextWithIcon/TextWithIconItem.js +37 -10
  292. package/dist/lib/components/TitleDescriptionBox/TitleDescriptionBox.css +31 -1
  293. package/dist/lib/components/TitleDescriptionBox/TitleDescriptionBox.d.ts +1 -1
  294. package/dist/lib/components/TitleDescriptionBox/TitleDescriptionBox.js +40 -10
  295. package/dist/lib/components/VideoBanner/VideoBanner.css +225 -1
  296. package/dist/lib/components/VideoBanner/VideoBanner.d.ts +7 -7
  297. package/dist/lib/components/VideoBanner/VideoBanner.js +176 -83
  298. package/dist/lib/components/VideoBlock/VideoBlock.css +106 -1
  299. package/dist/lib/components/VideoBlock/VideoBlock.d.ts +4 -4
  300. package/dist/lib/components/VideoBlock/VideoBlock.js +114 -58
  301. package/dist/lib/constants/throttleTime.js +3 -2
  302. package/dist/lib/helpers/getColumnConfig.d.ts +1 -5
  303. package/dist/lib/helpers/getColumnConfig.js +5 -2
  304. package/dist/lib/helpers/setRelAttribute.d.ts +1 -0
  305. package/dist/lib/helpers/setRelAttribute.js +20 -0
  306. package/dist/lib/hooks/useResolutions.d.ts +7 -0
  307. package/dist/lib/hooks/useResolutions.js +75 -0
  308. package/dist/lib/index.d.ts +2 -0
  309. package/dist/lib/index.js +73 -10
  310. package/package.json +92 -87
  311. package/dist/es/components/NotificationBox/NotificationBox.css +0 -1
  312. package/dist/lib/components/NotificationBox/NotificationBox.css +0 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,4043 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # [6.1.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@6.0.0...@megafon/ui-shared@6.1.0) (2024-08-19)
7
+
8
+
9
+ ### Features
10
+
11
+ * **blogbox:** create component BlogBox ([11d9f2c](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/11d9f2cfaa885b6788a8ad3486bd997faa788698))
12
+ * **instructions:** add optional mobile numeration ([c7d3525](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/c7d3525aae2b4bb4851ddafd3ce9c9afbecaaee6))
13
+
14
+
15
+
16
+
17
+
18
+ # [6.0.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.17.1...@megafon/ui-shared@6.0.0) (2024-08-05)
19
+
20
+
21
+ ### Documentation
22
+
23
+ * **package:** major version bump for package @megafon/ui-shared ([fd38d58](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/fd38d58fc59413bc91ad2e3d586b684d9c22672d))
24
+
25
+
26
+ ### Features
27
+
28
+ * **container:** add new indents to child components ([1e015be](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/1e015be9e25e7ccfa9537ed0152be789b58c8fa6))
29
+
30
+
31
+ ### BREAKING CHANGES
32
+
33
+ * **package:** Change version for package @megafon/ui-shared to 6 major
34
+
35
+
36
+
37
+
38
+
39
+ ## [5.17.1](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.17.0...@megafon/ui-shared@5.17.1) (2024-08-01)
40
+
41
+ **Note:** Version bump only for package @megafon/ui-shared
42
+
43
+
44
+
45
+
46
+
47
+ # [5.17.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.16.0...@megafon/ui-shared@5.17.0) (2024-07-17)
48
+
49
+
50
+ ### Bug Fixes
51
+
52
+ * **imagebanner:** fix aligning for children ([cafb869](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/cafb8699b601a3bfa2aa149d64e1dbdf4b05b1c5))
53
+ * **imagebanner:** fix image width for mobile ([0bcd718](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/0bcd718e37627f30dfeb440a54786bbcdec1dcc1))
54
+
55
+
56
+ ### Features
57
+
58
+ * **card:** increase root and image border-radius ([45b6796](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/45b6796d9711c2818a6fc40c5e8491c7f978534c))
59
+ * **container:** add layer with background color '--background' ([a4af59e](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/a4af59e7b71363fea59b457f45187bd61b7e84d9))
60
+
61
+
62
+
63
+
64
+
65
+ # [5.16.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.15.0...@megafon/ui-shared@5.16.0) (2024-07-08)
66
+
67
+
68
+ ### Bug Fixes
69
+
70
+ * **imagebanner:** fix size for mobile ([45e6e67](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/45e6e67a914d27f9b91c81a1216917cf399d4973))
71
+ * **imagebanner:** review fixes ([1522d02](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/1522d0292428c7d04636d73b04ed679b81a1771c))
72
+
73
+
74
+ ### Features
75
+
76
+ * **card:** add new props: markerList, badge; add new value hover-shadow to prop view; ([c73c54b](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/c73c54b158e4b6e38a77e569e874763feaa593b4))
77
+ * **container:** add border-radius to root element ([419ec1f](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/419ec1fb16fffe138c772438768eab04e43f3589))
78
+ * **imagebanner:** update badges for ImageBanner ([554e1ad](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/554e1ada1dc9dc7b7e7f9214056cdb83e4af9ba0))
79
+ * **imagebanner:** update classes props for ImageBanner ([8ec0df4](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/8ec0df4ce74e1e4f00fc5edab52357f9f6aa9ede))
80
+ * **imagebanner:** update image size for ImageBanner ([cd0242e](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/cd0242e24085bc2e1e8f0339ae8c7f0781c3fb39))
81
+ * **textwithicon:** add border for icon ([1af5774](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/1af57741ebc67abe503c842ee181f0d36f04db26))
82
+
83
+
84
+
85
+
86
+
87
+ # [5.15.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.14.0...@megafon/ui-shared@5.15.0) (2024-07-01)
88
+
89
+
90
+ ### Bug Fixes
91
+
92
+ * **banner:** fix banner height ([b2315de](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/b2315de6ce1bd08dacf3f80bdf9d07a45de480b5))
93
+
94
+
95
+ ### Features
96
+
97
+ * **banner, imagebanner:** update components ([c6e8d6b](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/c6e8d6bf308a6d179b768aceba23e564d17f3d64))
98
+
99
+
100
+
101
+
102
+
103
+ # [5.14.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.13.0...@megafon/ui-shared@5.14.0) (2024-06-26)
104
+
105
+
106
+ ### Features
107
+
108
+ * **accordion:** add new prop titleTag for change title tag, add classes.title prop" ([6f265f5](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/6f265f53bbd552957454405d8c95cbe1549c72dd))
109
+
110
+
111
+
112
+
113
+
114
+ # [5.13.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.12.0...@megafon/ui-shared@5.13.0) (2024-06-17)
115
+
116
+
117
+ ### Features
118
+
119
+ * **buttonbanner:** add prop buttonType ([adff95d](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/adff95de303e64fd51829001a276fa9696fb4676))
120
+
121
+
122
+
123
+
124
+
125
+ # [5.12.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.11.0...@megafon/ui-shared@5.12.0) (2024-06-10)
126
+
127
+
128
+ ### Bug Fixes
129
+
130
+ * **imagebanner:** fix ad block position ([6f958b4](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/6f958b477cc936bf969e244a07dc0ed63279484b))
131
+
132
+
133
+ ### Features
134
+
135
+ * **benefitsicons:** add dataAttrs and classes ([815db75](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/815db75aece85803a0055a531bd92db49d514652))
136
+ * **benefitsicons:** review fixes ([229c5f7](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/229c5f73fa9609495a146cfa562db2478752c3b4))
137
+ * **imagebanner:** add classes props for ImageBanner ([42d2738](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/42d2738a6c77bf780b9a47fd27353083d0f7d7a0))
138
+ * **insctructions:** add new views ([4470aec](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/4470aec0acaf59ae2d3b0979c59ec7760237221c))
139
+
140
+
141
+
142
+
143
+
144
+ # [5.11.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.10.2...@megafon/ui-shared@5.11.0) (2024-06-03)
145
+
146
+
147
+ ### Features
148
+
149
+ * **storebanner:** change device mask ([4d52954](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/4d52954459b944d100c6cd657808dd23ab7bb674))
150
+
151
+
152
+
153
+
154
+
155
+ ## [5.10.2](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.10.1...@megafon/ui-shared@5.10.2) (2024-05-27)
156
+
157
+ **Note:** Version bump only for package @megafon/ui-shared
158
+
159
+
160
+
161
+
162
+
163
+ ## [5.10.1](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.10.0...@megafon/ui-shared@5.10.1) (2024-05-14)
164
+
165
+ **Note:** Version bump only for package @megafon/ui-shared
166
+
167
+
168
+
169
+
170
+
171
+ # [5.10.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.9.0...@megafon/ui-shared@5.10.0) (2024-05-14)
172
+
173
+
174
+ ### Features
175
+
176
+ * **imagebanner:** add radius property, support html tags ([4516190](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/45161905b593c3e21cdcb8f7383dc48d847e20dc))
177
+
178
+
179
+
180
+
181
+
182
+ # [5.9.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.8.1...@megafon/ui-shared@5.9.0) (2024-05-06)
183
+
184
+
185
+ ### Features
186
+
187
+ * **benefitsicons:** add new prop background, set guide colors for svg icon ([9fc17c0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/9fc17c04ddc10fad823849ea10b5101d26bcbada))
188
+
189
+
190
+
191
+
192
+
193
+ ## [5.8.1](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.8.0...@megafon/ui-shared@5.8.1) (2024-04-24)
194
+
195
+
196
+ ### Bug Fixes
197
+
198
+ * **banner:** fix children background ([a6e3d12](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/a6e3d127dd5b73dcea4d54e96e95ae8189f61824))
199
+
200
+
201
+
202
+
203
+
204
+ # [5.8.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.7.7...@megafon/ui-shared@5.8.0) (2024-04-22)
205
+
206
+
207
+ ### Features
208
+
209
+ * **bannerbox:** update BannerBox component ([0025c97](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/0025c97271ac45d6bef618759922f4d97e6d303f))
210
+ * **imagebanner:** add ImageBanner component ([c8890ff](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/c8890ffffabc31beb0265047c1d53c21be807900))
211
+ * **storebutton:** add sizes for StoreButton component, add docs ([d8b3102](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/d8b31023a04d970c019e47b6e7eaf5dcb03e9cbd))
212
+
213
+
214
+
215
+
216
+
217
+ ## [5.7.7](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.7.6...@megafon/ui-shared@5.7.7) (2024-04-11)
218
+
219
+ **Note:** Version bump only for package @megafon/ui-shared
220
+
221
+
222
+
223
+
224
+
225
+ ## [5.7.6](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.7.5...@megafon/ui-shared@5.7.6) (2024-04-09)
226
+
227
+ **Note:** Version bump only for package @megafon/ui-shared
228
+
229
+
230
+
231
+
232
+
233
+ ## [5.7.5](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.7.4...@megafon/ui-shared@5.7.5) (2024-04-08)
234
+
235
+ **Note:** Version bump only for package @megafon/ui-shared
236
+
237
+
238
+
239
+
240
+
241
+ ## [5.7.4](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.7.3...@megafon/ui-shared@5.7.4) (2024-04-01)
242
+
243
+ **Note:** Version bump only for package @megafon/ui-shared
244
+
245
+
246
+
247
+
248
+
249
+ ## [5.7.3](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.7.2...@megafon/ui-shared@5.7.3) (2024-03-26)
250
+
251
+ **Note:** Version bump only for package @megafon/ui-shared
252
+
253
+
254
+
255
+
256
+
257
+ ## [5.7.2](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.7.1...@megafon/ui-shared@5.7.2) (2024-03-18)
258
+
259
+ **Note:** Version bump only for package @megafon/ui-shared
260
+
261
+
262
+
263
+
264
+
265
+ ## [5.7.1](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.7.0...@megafon/ui-shared@5.7.1) (2024-03-04)
266
+
267
+ **Note:** Version bump only for package @megafon/ui-shared
268
+
269
+
270
+
271
+
272
+
273
+ # [5.7.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.6.1...@megafon/ui-shared@5.7.0) (2024-02-20)
274
+
275
+
276
+ ### Bug Fixes
277
+
278
+ * **instructions:** fix prop types ([e01d353](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/e01d353fc4570b4414240d06bd69dfcfbfda313c))
279
+
280
+
281
+ ### Features
282
+
283
+ * **dowloadlink:** add new props and fix reviews ([90f2d5c](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/90f2d5c8d8c9b99eb988f45edf6530a895f51e4b))
284
+
285
+
286
+
287
+
288
+
289
+ ## [5.6.1](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.6.0...@megafon/ui-shared@5.6.1) (2024-02-13)
290
+
291
+ **Note:** Version bump only for package @megafon/ui-shared
292
+
293
+
294
+
295
+
296
+
297
+ # [5.6.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.5.1...@megafon/ui-shared@5.6.0) (2024-02-07)
298
+
299
+
300
+ ### Features
301
+
302
+ * **instructions:** add background, arrows, qr-code to Instructions component ([6f9d5ca](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/6f9d5ca210d3f5f9aae2f8d2528ce1910c88017c))
303
+ * **instructions:** review fixes ([d036717](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/d0367176329a4e9f875914b6860056c2c8fecd0c))
304
+
305
+
306
+
307
+
308
+
309
+ ## [5.5.1](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.5.0...@megafon/ui-shared@5.5.1) (2024-02-05)
310
+
311
+
312
+ ### Bug Fixes
313
+
314
+ * **storebutton:** fix prop types ([ba0e5e6](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/ba0e5e6cd9fe2c716f6529abba8361e70a24e6c6))
315
+
316
+
317
+
318
+
319
+
320
+ # [5.5.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.4.2...@megafon/ui-shared@5.5.0) (2024-01-30)
321
+
322
+
323
+ ### Features
324
+
325
+ * **storebanner:** add v-appstore button to banner ([b11115e](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/b11115e6436c2f6d8486aea78dd356e4447abefb))
326
+ * **storebutton:** add v-appstore button, add size props ([5096d03](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/5096d039e91623807caf07b9f2d1347b24529bca))
327
+
328
+
329
+
330
+
331
+
332
+ ## [5.4.2](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.4.1...@megafon/ui-shared@5.4.2) (2024-01-22)
333
+
334
+
335
+ ### Bug Fixes
336
+
337
+ * **card:** fix features list ([0fef3cb](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/0fef3cb3609c50e97edba24074562a13f72ffa55))
338
+
339
+
340
+
341
+
342
+
343
+ ## [5.4.1](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.4.0...@megafon/ui-shared@5.4.1) (2024-01-15)
344
+
345
+ **Note:** Version bump only for package @megafon/ui-shared
346
+
347
+
348
+
349
+
350
+
351
+ # [5.4.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.3.0...@megafon/ui-shared@5.4.0) (2024-01-09)
352
+
353
+
354
+ ### Features
355
+
356
+ * **benefitspictures:** add imgAlign and textAlign props, add ReactNode type to item text ([ebb2f3f](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/ebb2f3f0509f436e456a60c01fa362ecf92371e8))
357
+
358
+
359
+
360
+
361
+
362
+ # [5.3.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.2.4...@megafon/ui-shared@5.3.0) (2023-12-14)
363
+
364
+
365
+ ### Bug Fixes
366
+
367
+ * **steps:** added classes props ([e9f1732](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/e9f17329e675ec31efdd74904dcfb2861af90c79))
368
+
369
+
370
+ ### Features
371
+
372
+ * **benefitspictures:** add minor fixes ([b6203da](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/b6203dafbb3a8761ae5bfa0ad6ef54c789a01df9))
373
+
374
+
375
+
376
+
377
+
378
+ ## [5.2.4](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.2.3...@megafon/ui-shared@5.2.4) (2023-11-27)
379
+
380
+ **Note:** Version bump only for package @megafon/ui-shared
381
+
382
+
383
+
384
+
385
+
386
+ ## [5.2.3](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.2.2...@megafon/ui-shared@5.2.3) (2023-11-22)
387
+
388
+
389
+ ### Bug Fixes
390
+
391
+ * **buttonlinkbox:** fixed align prop type ([2853625](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/2853625a89a85f3cdb2f92a642a3331c95e23c4c))
392
+
393
+
394
+
395
+
396
+
397
+ ## [5.2.2](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.2.1...@megafon/ui-shared@5.2.2) (2023-11-08)
398
+
399
+
400
+ ### Bug Fixes
401
+
402
+ * **storebanner:** add button class ([80645ab](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/80645ab5a8a634746632ddb6c997a7045e431796))
403
+
404
+
405
+
406
+
407
+
408
+ ## [5.2.1](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.2.0...@megafon/ui-shared@5.2.1) (2023-10-17)
409
+
410
+ **Note:** Version bump only for package @megafon/ui-shared
411
+
412
+
413
+
414
+
415
+
416
+ # [5.2.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.1.0...@megafon/ui-shared@5.2.0) (2023-09-21)
417
+
418
+
419
+ ### Features
420
+
421
+ * **property:** add type ReactNode to props item.value ([5f59136](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/5f59136ffdc6fc863a6910bd45f17c6783be19c8))
422
+ * **table:** add vAlign and disableHeightLimit props ([813b1ce](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/813b1ceef71576104d8c397cf372c52192daa258))
423
+
424
+
425
+
426
+
427
+
428
+ # [5.1.0](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/compare/@megafon/ui-shared@5.0.1...@megafon/ui-shared@5.1.0) (2023-09-14)
429
+
430
+
431
+ ### Bug Fixes
432
+
433
+ * **benefitpictures:** rename helpers ([282fcfe](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/282fcfec6f6fc8f0bec325c52f7ec5ada955e4ff))
434
+ * **dulpfile:** fix ignore rule ([525138b](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/525138bafeaa3836fa37997691da544419efd7fa))
435
+
436
+
437
+ ### Features
438
+
439
+ * **card:** add minor features ([e80582c](https://hq-gitlab.megafon.ru/site-portal/services/megafon-ui/commit/e80582c863f7baeaf17effe7566531f2f9a2c695))
440
+
441
+
442
+
443
+
444
+
445
+ ## [5.0.1](https://hq-gitlab.megafon.ru/site-portal/libraries/javascript/megafon-ui/compare/@megafon/ui-shared@5.0.0...@megafon/ui-shared@5.0.1) (2023-08-31)
446
+
447
+
448
+ ### Bug Fixes
449
+
450
+ * **carouselbox:** fix default slidesSettings config ([ad87986](https://hq-gitlab.megafon.ru/site-portal/libraries/javascript/megafon-ui/commit/ad8798694ad1433a41938ca8489da93e99c2929d))
451
+
452
+
453
+
454
+
455
+
456
+ # [5.0.0](https://hq-gitlab.megafon.ru/site-portal/libraries/javascript/megafon-ui/compare/@megafon/ui-shared@4.21.2...@megafon/ui-shared@5.0.0) (2023-08-30)
457
+
458
+
459
+ ### Bug Fixes
460
+
461
+ * **property:** fix default value frame color ([340cd88](https://hq-gitlab.megafon.ru/site-portal/libraries/javascript/megafon-ui/commit/340cd88eba9746540b4a7398ca42d3af4e1647f4))
462
+
463
+
464
+ ### Features
465
+
466
+ * **card:** full redesign ([7368f0d](https://hq-gitlab.megafon.ru/site-portal/libraries/javascript/megafon-ui/commit/7368f0dfaab8964489c427f9a3b649f87a1ba10b))
467
+ * **cardsbox:** redesign ([1952bd8](https://hq-gitlab.megafon.ru/site-portal/libraries/javascript/megafon-ui/commit/1952bd8b50eef8ff7e6e42bf2eaa3825f85e54c6))
468
+ * **carouselbox:** add minor features ([068a27d](https://hq-gitlab.megafon.ru/site-portal/libraries/javascript/megafon-ui/commit/068a27d1f3e48a6b161aa50cfa73e288acdfae75))
469
+
470
+
471
+ ### BREAKING CHANGES
472
+
473
+ * **cardsbox:** remove onChange, gridHAlign and rootRef props; change dataAttrs prop;
474
+ * **card:** removed all props, added new props
475
+
476
+
477
+
478
+
479
+
480
+ ## [4.21.2](https://hq-gitlab.megafon.ru/site-portal/libraries/javascript/megafon-ui/compare/@megafon/ui-shared@4.21.1...@megafon/ui-shared@4.21.2) (2023-08-28)
481
+
482
+ **Note:** Version bump only for package @megafon/ui-shared
483
+
484
+
485
+
486
+
487
+
488
+ ## [4.21.1](https://hq-gitlab.megafon.ru/site-portal/libraries/javascript/megafon-ui/compare/@megafon/ui-shared@4.21.0...@megafon/ui-shared@4.21.1) (2023-08-25)
489
+
490
+ **Note:** Version bump only for package @megafon/ui-shared
491
+
492
+
493
+
494
+
495
+
496
+ # [4.21.0](https://hq-gitlab.megafon.ru/site-portal/libraries/javascript/megafon-ui/compare/@megafon/ui-shared@4.20.5...@megafon/ui-shared@4.21.0) (2023-08-21)
497
+
498
+
499
+ ### Features
500
+
501
+ * **property:** redisign component, add new not required props ([f03a822](https://hq-gitlab.megafon.ru/site-portal/libraries/javascript/megafon-ui/commit/f03a822006afed0dd20ad9c9971621c48e50655f))
502
+
503
+
504
+
505
+
506
+
507
+ ## [4.20.6](https://hq-gitlab.megafon.ru/site-portal/libraries/javascript/megafon-ui/compare/@megafon/ui-shared@4.20.5...@megafon/ui-shared@4.20.6) (2023-07-18)
508
+
509
+ **Note:** Version bump only for package @megafon/ui-shared
510
+
511
+
512
+
513
+
514
+
515
+ ## [4.20.5](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.20.4...@megafon/ui-shared@4.20.5) (2023-07-10)
516
+
517
+ **Note:** Version bump only for package @megafon/ui-shared
518
+
519
+
520
+
521
+
522
+
523
+ ## [4.20.4](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.20.3...@megafon/ui-shared@4.20.4) (2023-07-10)
524
+
525
+
526
+ ### Bug Fixes
527
+
528
+ * **textwithicon:** remove deprecated prop centeringOnMobile ([0ed8416](https://github.com/MegafonWebLab/megafon-ui/commit/0ed8416443a3c7dfa11acca70538b69b791905e2))
529
+
530
+
531
+
532
+
533
+
534
+ ## [4.20.3](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.20.2...@megafon/ui-shared@4.20.3) (2023-06-22)
535
+
536
+ **Note:** Version bump only for package @megafon/ui-shared
537
+
538
+
539
+
540
+
541
+
542
+ ## [4.20.2](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.20.1...@megafon/ui-shared@4.20.2) (2023-06-07)
543
+
544
+ **Note:** Version bump only for package @megafon/ui-shared
545
+
546
+
547
+
548
+
549
+
550
+ ## [4.20.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.20.0...@megafon/ui-shared@4.20.1) (2023-06-05)
551
+
552
+
553
+ ### Bug Fixes
554
+
555
+ * **storebanner:** fix new mask for iphone 12 and green theme ([c7da417](https://github.com/MegafonWebLab/megafon-ui/commit/c7da417b7919eb4564eadfc2a6ee20895daf7740))
556
+
557
+
558
+
559
+
560
+
561
+ # [4.20.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.19.0...@megafon/ui-shared@4.20.0) (2023-05-23)
562
+
563
+
564
+ ### Bug Fixes
565
+
566
+ * **counterbadge:** fix required props ([6824153](https://github.com/MegafonWebLab/megafon-ui/commit/6824153b4f2543eb3961cd408c447c8bcb9cd83d))
567
+
568
+
569
+ ### Features
570
+
571
+ * **container:** add bottomShadow props ([b8d8249](https://github.com/MegafonWebLab/megafon-ui/commit/b8d82492b7300211548b71049820264bdc54a761))
572
+ * **videobanner:** add bottomShadow prop ([b103f1d](https://github.com/MegafonWebLab/megafon-ui/commit/b103f1defc5562bd50ef1ff5dcd5e568310378cf))
573
+
574
+
575
+
576
+
577
+
578
+ # [4.19.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.18.3...@megafon/ui-shared@4.19.0) (2023-05-17)
579
+
580
+
581
+ ### Bug Fixes
582
+
583
+ * **audioplayer:** fix margin-top style ([0bde07a](https://github.com/MegafonWebLab/megafon-ui/commit/0bde07a42675da3a2c83ab1fb77f63e3924d8a4b))
584
+
585
+
586
+ ### Features
587
+
588
+ * **container:** add margins for NotificationBox ([ce2334a](https://github.com/MegafonWebLab/megafon-ui/commit/ce2334ae8c8448abdb66d72831e51bba65e15a03))
589
+ * **notificationbox:** add new component NotificationBox ([1ec74b8](https://github.com/MegafonWebLab/megafon-ui/commit/1ec74b8911a50a03dfe712b860916a32f80437ac))
590
+ * **stepsitem:** render text without paragraph when text is react nodes ([dc43c69](https://github.com/MegafonWebLab/megafon-ui/commit/dc43c69b73e38e288dee0a22b6c8e4f8a51221fd))
591
+ * **textboxpicture:** add disableBorder props ([a39bfbb](https://github.com/MegafonWebLab/megafon-ui/commit/a39bfbba2e56dc6edfe29063e46e836213cf16e2))
592
+
593
+
594
+
595
+
596
+
597
+ ## [4.18.3](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.18.2...@megafon/ui-shared@4.18.3) (2023-05-02)
598
+
599
+ **Note:** Version bump only for package @megafon/ui-shared
600
+
601
+
602
+
603
+
604
+
605
+ ## [4.18.2](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.18.1...@megafon/ui-shared@4.18.2) (2023-04-25)
606
+
607
+ **Note:** Version bump only for package @megafon/ui-shared
608
+
609
+
610
+
611
+
612
+
613
+ ## [4.18.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.18.0...@megafon/ui-shared@4.18.1) (2023-04-17)
614
+
615
+ **Note:** Version bump only for package @megafon/ui-shared
616
+
617
+
618
+
619
+
620
+
621
+ # [4.18.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.17.0...@megafon/ui-shared@4.18.0) (2023-04-14)
622
+
623
+
624
+ ### Bug Fixes
625
+
626
+ * **instructions:** fixed screen scroll for iphone devices ([fae9838](https://github.com/MegafonWebLab/megafon-ui/commit/fae98383271ed7a291665cbb7f9011d17ec0bc93))
627
+ * **storebanner:** fix cn for galaxy store ([02f484b](https://github.com/MegafonWebLab/megafon-ui/commit/02f484bee25550f5091a85b1d08a8252a6f361ee))
628
+ * **storebutton:** compress png buttons ([3e0a2a0](https://github.com/MegafonWebLab/megafon-ui/commit/3e0a2a006dd7d102478164acfcda75816d07b7a9))
629
+
630
+
631
+ ### Features
632
+
633
+ * **instructions:** add prop pictureVerticalAlign ([e380224](https://github.com/MegafonWebLab/megafon-ui/commit/e38022435ce3a5eaf2864bf6ed5a0028e81c9ec1))
634
+ * **storebanner:** add Samsung Galaxy Store button ([ed28f42](https://github.com/MegafonWebLab/megafon-ui/commit/ed28f4270033c91acf23cbe113158f1051c6eff7))
635
+
636
+
637
+
638
+
639
+
640
+ # [4.17.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.16.0...@megafon/ui-shared@4.17.0) (2023-04-11)
641
+
642
+
643
+ ### Features
644
+
645
+ * **storebanner:** add RuStore and MiStore buttons ([9ed93d1](https://github.com/MegafonWebLab/megafon-ui/commit/9ed93d1e972276d18e8f955d42b665cf18aa8af4))
646
+
647
+
648
+
649
+
650
+
651
+ # [4.16.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.15.1...@megafon/ui-shared@4.16.0) (2023-04-04)
652
+
653
+
654
+ ### Features
655
+
656
+ * **storebanner:** add new mask for iphone 12 and content left on mobile ([8702938](https://github.com/MegafonWebLab/megafon-ui/commit/8702938d1bf9c0b1bbdc80f045e2bc329da1c99d))
657
+
658
+
659
+
660
+
661
+
662
+ ## [4.15.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.15.0...@megafon/ui-shared@4.15.1) (2023-03-27)
663
+
664
+
665
+ ### Bug Fixes
666
+
667
+ * **audioplayer:** fix loading of audio metadata ([d3a496d](https://github.com/MegafonWebLab/megafon-ui/commit/d3a496d6b3be86627f41d001376f6e20df0275b5))
668
+
669
+
670
+
671
+
672
+
673
+ # [4.15.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.14.0...@megafon/ui-shared@4.15.0) (2023-03-20)
674
+
675
+
676
+ ### Features
677
+
678
+ * **storebanner:** add new theme ([908aa58](https://github.com/MegafonWebLab/megafon-ui/commit/908aa588067c8e450ef17b10a9c9025bfae9d3c1))
679
+
680
+
681
+
682
+
683
+
684
+ # [4.14.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.13.2...@megafon/ui-shared@4.14.0) (2023-03-15)
685
+
686
+
687
+ ### Features
688
+
689
+ * **property:** add prop disableBorderTop ([dd74ac7](https://github.com/MegafonWebLab/megafon-ui/commit/dd74ac7e4391cbaf947b05b409ca82b068c1a490))
690
+
691
+
692
+
693
+
694
+
695
+ ## [4.13.2](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.13.1...@megafon/ui-shared@4.13.2) (2023-03-07)
696
+
697
+ **Note:** Version bump only for package @megafon/ui-shared
698
+
699
+
700
+
701
+
702
+
703
+ ## [4.13.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.13.0...@megafon/ui-shared@4.13.1) (2023-02-22)
704
+
705
+ **Note:** Version bump only for package @megafon/ui-shared
706
+
707
+
708
+
709
+
710
+
711
+ # [4.13.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.12.0...@megafon/ui-shared@4.13.0) (2023-02-13)
712
+
713
+
714
+ ### Features
715
+
716
+ * **buttonbanner:** add buttonRel prop ([df2f8cd](https://github.com/MegafonWebLab/megafon-ui/commit/df2f8cd7341596114df4bd9d408fced9430d2e7e))
717
+ * **buttonlinkbox:** add buttonRel and linkRel props ([95135a1](https://github.com/MegafonWebLab/megafon-ui/commit/95135a163db6ef84dcedd56fa8a24ec2769d40b5))
718
+ * **card:** add rel prop ([e4f89a3](https://github.com/MegafonWebLab/megafon-ui/commit/e4f89a3990c29763acb7b53863a9ac8d199cc0fe))
719
+ * **partners:** add rel prop ([796d76c](https://github.com/MegafonWebLab/megafon-ui/commit/796d76c5a62e7b010c4ab5a7da19c4d1b0c72deb))
720
+ * **storebanner:** add rel prop ([3f44d31](https://github.com/MegafonWebLab/megafon-ui/commit/3f44d31c9de9844803304cd116a3be226e70d731))
721
+ * **storebutton:** add rel prop ([087b02f](https://github.com/MegafonWebLab/megafon-ui/commit/087b02fa1f3c90a1a35dd7ac0776c021adc12204))
722
+ * **videblock:** add buttonRel prop ([cfbab88](https://github.com/MegafonWebLab/megafon-ui/commit/cfbab88366be66f5a2457a76627ac70d40a76967))
723
+ * **videobanner:** add linkRel and buttonRel props ([2a7269a](https://github.com/MegafonWebLab/megafon-ui/commit/2a7269ae4c28ae6d60deefdedb9aa9474a7fb2cf))
724
+
725
+
726
+
727
+
728
+
729
+ # [4.12.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.11.0...@megafon/ui-shared@4.12.0) (2023-02-06)
730
+
731
+
732
+ ### Features
733
+
734
+ * **benefitpictures:** add alt prop for images ([3fd19e7](https://github.com/MegafonWebLab/megafon-ui/commit/3fd19e718068db8d418adccbb1812e4e8dd6e090))
735
+ * **card:** add alt prop for image ([a56a159](https://github.com/MegafonWebLab/megafon-ui/commit/a56a1595b1114e63aa80d9f8976bfb8d54b871db))
736
+ * **instructions:** add alt prop for images ([94d4750](https://github.com/MegafonWebLab/megafon-ui/commit/94d4750a51a4d3e848c319ed98a31b3fd241e733))
737
+ * **picturewithdescription:** add alt prop for image ([0ed9e19](https://github.com/MegafonWebLab/megafon-ui/commit/0ed9e195b00c41a2a736de741af82b3808eb1677))
738
+ * **textboxpicture:** add alt prop for image ([6df38e2](https://github.com/MegafonWebLab/megafon-ui/commit/6df38e23d9a42fbb8833c0f4968fd6f6ff4f28b7))
739
+ * **videobanner:** add alt prop for image ([3ec8c6c](https://github.com/MegafonWebLab/megafon-ui/commit/3ec8c6cda08b42fe8f36b9bee029ad0c3ad18d5f))
740
+
741
+
742
+
743
+
744
+
745
+ # [4.11.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.10.0...@megafon/ui-shared@4.11.0) (2023-01-31)
746
+
747
+
748
+ ### Features
749
+
750
+ * **cardsbox:** add prop hGridAlign ([883d12b](https://github.com/MegafonWebLab/megafon-ui/commit/883d12b3447659787d8aa3f61e734e8cb1b03656))
751
+
752
+
753
+
754
+
755
+
756
+ # [4.10.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.9.1...@megafon/ui-shared@4.10.0) (2023-01-23)
757
+
758
+
759
+ ### Features
760
+
761
+ * **videoblock:** add props fixWhiteVideoBackground ([0bd622a](https://github.com/MegafonWebLab/megafon-ui/commit/0bd622af335fff8f6ee43fb53cdc9d162ef906c6))
762
+
763
+
764
+
765
+
766
+
767
+ ## [4.9.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.9.0...@megafon/ui-shared@4.9.1) (2023-01-17)
768
+
769
+ **Note:** Version bump only for package @megafon/ui-shared
770
+
771
+
772
+
773
+
774
+
775
+ # [4.9.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.8.0...@megafon/ui-shared@4.9.0) (2023-01-16)
776
+
777
+
778
+ ### Features
779
+
780
+ * **instructions:** added convert to html for title and text ([81d43b2](https://github.com/MegafonWebLab/megafon-ui/commit/81d43b2b3d3b14f0caaba287b26392a55936bc6c))
781
+ * **step:** added className and render html ([d6eceda](https://github.com/MegafonWebLab/megafon-ui/commit/d6eceda42f9d20fe4adf948f900f77bfeaa951d9))
782
+
783
+
784
+
785
+
786
+
787
+ # [4.8.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.7.0...@megafon/ui-shared@4.8.0) (2022-12-19)
788
+
789
+
790
+ ### Features
791
+
792
+ * **audioplayer:** add new component ([43f3159](https://github.com/MegafonWebLab/megafon-ui/commit/43f3159279568538638397e311ce4756f3727d05))
793
+
794
+
795
+
796
+
797
+
798
+ # [4.7.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.6.0...@megafon/ui-shared@4.7.0) (2022-12-12)
799
+
800
+
801
+ ### Features
802
+
803
+ * **accordionbox:** add isMicrodata prop ([07cce83](https://github.com/MegafonWebLab/megafon-ui/commit/07cce8335c062687c4d1dc33b3569c89d6388181))
804
+ * **breadcrumbs:** add optional microdata attributes ([e1a30e8](https://github.com/MegafonWebLab/megafon-ui/commit/e1a30e8b3bd20479b7fc8c15cf86fc0fb9431571))
805
+ * **faqwrapper:** add new component FaqWrapper ([694e564](https://github.com/MegafonWebLab/megafon-ui/commit/694e56421bbae73566f0b18812f6206b3a065030))
806
+ * **pagetitle:** add hasBreadcrumbsMicrodata prop ([30c3ca5](https://github.com/MegafonWebLab/megafon-ui/commit/30c3ca51f7c9b0ef6095ca649e557e74dffa0875))
807
+ * **videobanner:** add hasBreadcrumbsMicrodata prop ([819996d](https://github.com/MegafonWebLab/megafon-ui/commit/819996d5600e2c32c22da9d9dfa30c64c4062f63))
808
+
809
+
810
+
811
+
812
+
813
+ # [4.6.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.5.3...@megafon/ui-shared@4.6.0) (2022-12-06)
814
+
815
+
816
+ ### Features
817
+
818
+ * **textwithicon:** fix playground ([44c4b6a](https://github.com/MegafonWebLab/megafon-ui/commit/44c4b6ad323a88f48d3b79191e3be4c44fa2ac14))
819
+ * **textwithiconitem:** add example and fix text ([3db8692](https://github.com/MegafonWebLab/megafon-ui/commit/3db869242615caacf1101e4fcff1877ee43c9c95))
820
+ * **textwithiconitem:** add render html and classes ([74e21bc](https://github.com/MegafonWebLab/megafon-ui/commit/74e21bcb78e3f4764ceb58d8fa102b6b000c5ae2))
821
+ * **videoblock:** add playsinline prop ([c383928](https://github.com/MegafonWebLab/megafon-ui/commit/c383928473596bb962e68a15125fa9574bce4a64))
822
+
823
+
824
+
825
+
826
+
827
+ ## [4.5.3](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.5.2...@megafon/ui-shared@4.5.3) (2022-11-29)
828
+
829
+
830
+ ### Bug Fixes
831
+
832
+ * **videoblock:** fix defects ([697f450](https://github.com/MegafonWebLab/megafon-ui/commit/697f450187f01fa99639b8ebcd487c85b32b0568))
833
+
834
+
835
+
836
+
837
+
838
+ ## [4.5.2](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.5.1...@megafon/ui-shared@4.5.2) (2022-11-21)
839
+
840
+ **Note:** Version bump only for package @megafon/ui-shared
841
+
842
+
843
+
844
+
845
+
846
+ ## [4.5.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.5.0...@megafon/ui-shared@4.5.1) (2022-11-15)
847
+
848
+ **Note:** Version bump only for package @megafon/ui-shared
849
+
850
+
851
+
852
+
853
+
854
+ # [4.5.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.4.1...@megafon/ui-shared@4.5.0) (2022-11-14)
855
+
856
+
857
+ ### Features
858
+
859
+ * **videoblock:** added for title and description render html tags ([d0d2255](https://github.com/MegafonWebLab/megafon-ui/commit/d0d2255abb80e73058151967721a447c8ebc4028))
860
+ * **videoblock:** fixed and ddded tag b for description ([6e7de85](https://github.com/MegafonWebLab/megafon-ui/commit/6e7de853b8ff920f4b0de2ecfd3cdb8538bc727a))
861
+ * **videoblock:** return types and change config for description ([75f18e1](https://github.com/MegafonWebLab/megafon-ui/commit/75f18e10e6cb22779cceaf90f8a6e0e258a92612))
862
+
863
+
864
+
865
+
866
+
867
+ ## [4.4.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.4.0...@megafon/ui-shared@4.4.1) (2022-11-07)
868
+
869
+
870
+ ### Bug Fixes
871
+
872
+ * **accordionbox:** add missing margin for group of components ([e20da93](https://github.com/MegafonWebLab/megafon-ui/commit/e20da9336f664b526671e5950d319e8ef4dbd946))
873
+
874
+
875
+
876
+
877
+
878
+ # [4.4.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.3.0...@megafon/ui-shared@4.4.0) (2022-10-31)
879
+
880
+
881
+ ### Bug Fixes
882
+
883
+ * **accordionbox:** fix dataAttrs props ([46e0b05](https://github.com/MegafonWebLab/megafon-ui/commit/46e0b05c3a18d9a730c360a59f4dfef78013827d))
884
+
885
+
886
+ ### Features
887
+
888
+ * **buttonbunner:** allow using html: br, &nbsp, font color, a href in title plus b in text ([8efa64c](https://github.com/MegafonWebLab/megafon-ui/commit/8efa64c871efb55b7b3a5da21cf70daaed5ac005))
889
+ * **card:** allow using html: br, &nbsp, font color, a href in title plus b in text ([897a264](https://github.com/MegafonWebLab/megafon-ui/commit/897a264d6eaac5c34731dd4f2a6d0a7cd3a1a3f7))
890
+ * **storebanner:** allow using html: br, &nbsp, font color, a href in title plus b in text ([2e44056](https://github.com/MegafonWebLab/megafon-ui/commit/2e440569bb3538c09ce3331138119ca1334a7861))
891
+ * **videobanner:** change convert info source from local to common ([5bcff34](https://github.com/MegafonWebLab/megafon-ui/commit/5bcff34de8eb00dcddf38e53e3c8fa4a4cb86cab))
892
+
893
+
894
+
895
+
896
+
897
+ # [4.3.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.2.1...@megafon/ui-shared@4.3.0) (2022-10-24)
898
+
899
+
900
+ ### Features
901
+
902
+ * **videoblock:** add prop contentPositionRight ([6f1e603](https://github.com/MegafonWebLab/megafon-ui/commit/6f1e603c1cd3489a18a9ccf5da5e1e0785c4f0cf))
903
+
904
+
905
+
906
+
907
+
908
+ ## [4.2.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.2.0...@megafon/ui-shared@4.2.1) (2022-10-17)
909
+
910
+ **Note:** Version bump only for package @megafon/ui-shared
911
+
912
+
913
+
914
+
915
+
916
+ # [4.2.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.1.2...@megafon/ui-shared@4.2.0) (2022-10-13)
917
+
918
+
919
+ ### Bug Fixes
920
+
921
+ * **card:** add tests for button onClick; fix propTypes; ([148ca04](https://github.com/MegafonWebLab/megafon-ui/commit/148ca04afb9194eff52421ca228dd4de5e094323))
922
+
923
+
924
+ ### Features
925
+
926
+ * **card:** add button onClick property ([766c66f](https://github.com/MegafonWebLab/megafon-ui/commit/766c66f609ee5a20b86322acd5a40dfc14cee223))
927
+
928
+
929
+
930
+
931
+
932
+ ## [4.1.2](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.1.1...@megafon/ui-shared@4.1.2) (2022-10-10)
933
+
934
+ **Note:** Version bump only for package @megafon/ui-shared
935
+
936
+
937
+
938
+
939
+
940
+ ## [4.1.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.1.0...@megafon/ui-shared@4.1.1) (2022-10-05)
941
+
942
+ **Note:** Version bump only for package @megafon/ui-shared
943
+
944
+
945
+
946
+
947
+
948
+ # [4.1.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.0.3...@megafon/ui-shared@4.1.0) (2022-10-04)
949
+
950
+
951
+ ### Features
952
+
953
+ * **videobanner:** allow using html tag: br, &nbsp, b, font color, a href in title and description ([31cf562](https://github.com/MegafonWebLab/megafon-ui/commit/31cf562b34f9d6eb30a43fccd1123fdc67393935))
954
+
955
+
956
+
957
+
958
+
959
+ ## [4.0.3](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.0.2...@megafon/ui-shared@4.0.3) (2022-09-16)
960
+
961
+ **Note:** Version bump only for package @megafon/ui-shared
962
+
963
+
964
+
965
+
966
+
967
+ ## [4.0.2](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.0.1...@megafon/ui-shared@4.0.2) (2022-09-14)
968
+
969
+ **Note:** Version bump only for package @megafon/ui-shared
970
+
971
+
972
+
973
+
974
+
975
+ ## [4.0.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@4.0.0...@megafon/ui-shared@4.0.1) (2022-09-14)
976
+
977
+
978
+ ### Bug Fixes
979
+
980
+ * remove forgotten deprecated props ([3acaf97](https://github.com/MegafonWebLab/megafon-ui/commit/3acaf9731780f89c7087a8b6f9af943a62f7a185))
981
+
982
+
983
+
984
+
985
+
986
+ # [4.0.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.5.0...@megafon/ui-shared@4.0.0) (2022-09-14)
987
+
988
+
989
+ ### Bug Fixes
990
+
991
+ * **breadcrumbs:** change default color prop value from black to default ([fd0c9b6](https://github.com/MegafonWebLab/megafon-ui/commit/fd0c9b645d41523f34b198e3f9310d27ea7e34f3))
992
+
993
+
994
+ ### Features
995
+
996
+ * **header:** add new prop space ([7a9479e](https://github.com/MegafonWebLab/megafon-ui/commit/7a9479e85c1f5c19b7f2bae2e6a4d234712f2d7c))
997
+ * **paragraph:** remove prop size; add new prop; add 'pale' option to colors ([32b0c54](https://github.com/MegafonWebLab/megafon-ui/commit/32b0c54eaf82ceb1f24d5fc90a9aa81d3e427ee3))
998
+ * **tabs:** update by new design ([08d76f0](https://github.com/MegafonWebLab/megafon-ui/commit/08d76f0e15b8b7a54a18d7f115db4744b12e8ac2))
999
+ * **text-with-icon:** delete centering in mobile resolution ([0bf1236](https://github.com/MegafonWebLab/megafon-ui/commit/0bf1236c216a327bf574c5dc0e2009e98479390a))
1000
+
1001
+
1002
+ ### BREAKING CHANGES
1003
+
1004
+ * **text-with-icon:** centering in mobile resolution was removed according guides
1005
+ * **tabs:** new prop autoWidth added
1006
+ size prop small vallue removed
1007
+ new sizes
1008
+ * **breadcrumbs:** color is now depends on current theme. by default it matches content text color.
1009
+ for keep black color on light background use 'black' value for prop 'color'.
1010
+ * **breadcrumbs:** remove prop 'component'
1011
+ * **paragraph:** prop 'size' is no longer exists.
1012
+ use component Caption instead of Paragraph size="small"
1013
+ * **benefitpictures:** rename prop 'hAlign' to 'align'
1014
+ * **buttonlinkbox:** rename prop 'hAlign' to 'align'
1015
+ * **tiledescriptionbox:** rename prop 'hAlign' to 'align'
1016
+ * **textwithicon:** remove prop 'centeringOnMobile'
1017
+
1018
+
1019
+
1020
+
1021
+
1022
+ # [3.5.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.4.6...@megafon/ui-shared@3.5.0) (2022-09-14)
1023
+
1024
+
1025
+ ### Features
1026
+
1027
+ * **paragraph:** remove prop size; add new prop; add 'pale' option to colors ([ffb6bc7](https://github.com/MegafonWebLab/megafon-ui/commit/ffb6bc709a4ef91536e359d5f9edc5501caf0c2c))
1028
+ * **tabs:** update by new design ([20ae2cc](https://github.com/MegafonWebLab/megafon-ui/commit/20ae2cc695e1245b9cd06fe37a9e4e3bb0c7eaae))
1029
+ * **text-with-icon:** delete centering in mobile resolution ([c68f98f](https://github.com/MegafonWebLab/megafon-ui/commit/c68f98f0b69cbe0e416de4d526c70c009213647e))
1030
+
1031
+
1032
+ ### BREAKING CHANGES
1033
+
1034
+ * **text-with-icon:** centering in mobile resolution was removed according guides
1035
+ * **tabs:** new prop autoWidth added
1036
+ size prop small vallue removed
1037
+ new sizes
1038
+ * **breadcrumbs:** color is now depends on current theme. by default it matches content text color.
1039
+ for keep black color on light background use 'black' value for prop 'color'.
1040
+ * **paragraph:** prop 'size' is no longer exists.
1041
+ use component Caption instead of Paragraph size="small"
1042
+
1043
+
1044
+
1045
+
1046
+
1047
+ ## [3.4.3](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.4.2...@megafon/ui-shared@3.4.3) (2022-06-28)
1048
+
1049
+ **Note:** Version bump only for package @megafon/ui-shared
1050
+
1051
+
1052
+
1053
+
1054
+
1055
+ ## [3.4.2](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.4.1...@megafon/ui-shared@3.4.2) (2022-06-21)
1056
+
1057
+ **Note:** Version bump only for package @megafon/ui-shared
1058
+
1059
+
1060
+
1061
+
1062
+
1063
+ ## [3.4.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.4.0...@megafon/ui-shared@3.4.1) (2022-06-07)
1064
+
1065
+ **Note:** Version bump only for package @megafon/ui-shared
1066
+
1067
+
1068
+
1069
+
1070
+
1071
+ # [3.4.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.3.5...@megafon/ui-shared@3.4.0) (2022-05-30)
1072
+
1073
+
1074
+ ### Features
1075
+
1076
+ * **instructions:** add swipe to picture ([eb9eb09](https://github.com/MegafonWebLab/megafon-ui/commit/eb9eb0991444e113baf95d2d014d1c690cd1e99a))
1077
+ * **textwithicon:** add isFullWidth and centeringOnMobile props ([b86ad8b](https://github.com/MegafonWebLab/megafon-ui/commit/b86ad8b1ad5e41c87e83ebadeb3a0a157bc41a2c))
1078
+
1079
+
1080
+
1081
+
1082
+
1083
+ ## [3.3.5](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.3.4...@megafon/ui-shared@3.3.5) (2022-05-27)
1084
+
1085
+ **Note:** Version bump only for package @megafon/ui-shared
1086
+
1087
+
1088
+
1089
+
1090
+
1091
+ ## [3.3.4](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.3.3...@megafon/ui-shared@3.3.4) (2022-05-24)
1092
+
1093
+
1094
+ ### Bug Fixes
1095
+
1096
+ * **instructions:** remove css prorerty filter for image ([d4ee221](https://github.com/MegafonWebLab/megafon-ui/commit/d4ee22123565b82ec777c1526093a94251e59809))
1097
+ * **picturewithdescription:** fix clearing indents for first and last element ([d9263e3](https://github.com/MegafonWebLab/megafon-ui/commit/d9263e3670b2d493ec4bf194a2cdd6440d1ea86f))
1098
+
1099
+
1100
+
1101
+
1102
+
1103
+ ## [3.3.3](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.3.2...@megafon/ui-shared@3.3.3) (2022-05-17)
1104
+
1105
+ **Note:** Version bump only for package @megafon/ui-shared
1106
+
1107
+
1108
+
1109
+
1110
+
1111
+ ## [3.3.2](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.3.1...@megafon/ui-shared@3.3.2) (2022-05-05)
1112
+
1113
+ **Note:** Version bump only for package @megafon/ui-shared
1114
+
1115
+
1116
+
1117
+
1118
+
1119
+ ## [3.3.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.3.0...@megafon/ui-shared@3.3.1) (2022-04-25)
1120
+
1121
+ **Note:** Version bump only for package @megafon/ui-shared
1122
+
1123
+
1124
+
1125
+
1126
+
1127
+ # [3.3.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.2.2...@megafon/ui-shared@3.3.0) (2022-04-18)
1128
+
1129
+
1130
+ ### Features
1131
+
1132
+ * **videobanner:** add proprety for mobile video, use picture for background image ([c21c927](https://github.com/MegafonWebLab/megafon-ui/commit/c21c9278d2ff1e192195a5113d43d50753fd02c5))
1133
+
1134
+
1135
+
1136
+
1137
+
1138
+ ## [3.2.2](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.2.1...@megafon/ui-shared@3.2.2) (2022-04-13)
1139
+
1140
+ **Note:** Version bump only for package @megafon/ui-shared
1141
+
1142
+
1143
+
1144
+
1145
+
1146
+ ## [3.2.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.2.0...@megafon/ui-shared@3.2.1) (2022-04-11)
1147
+
1148
+
1149
+ ### Bug Fixes
1150
+
1151
+ * **colors:** fix colors usage in components: Notification, Preloader, Tile and Card ([96d0eef](https://github.com/MegafonWebLab/megafon-ui/commit/96d0eef51458b35c5b69c1677ec6f4a22f7f130d))
1152
+
1153
+
1154
+
1155
+
1156
+
1157
+ # [3.2.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.1.4...@megafon/ui-shared@3.2.0) (2022-04-05)
1158
+
1159
+
1160
+ ### Features
1161
+
1162
+ * **instructions:** added children for Instruction component ([33b5296](https://github.com/MegafonWebLab/megafon-ui/commit/33b5296e7f1ccede197fed5d8887ec871586f0f8))
1163
+
1164
+
1165
+
1166
+
1167
+
1168
+ ## [3.1.4](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.1.3...@megafon/ui-shared@3.1.4) (2022-03-21)
1169
+
1170
+
1171
+ ### Bug Fixes
1172
+
1173
+ * **storebutton:** fixed test for Select and update type for StoreButton ([8996754](https://github.com/MegafonWebLab/megafon-ui/commit/8996754482e9cf899fdcb0f488c8a9fa1afddd11))
1174
+
1175
+
1176
+
1177
+
1178
+
1179
+ ## [3.1.3](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.1.2...@megafon/ui-shared@3.1.3) (2022-03-15)
1180
+
1181
+ **Note:** Version bump only for package @megafon/ui-shared
1182
+
1183
+
1184
+
1185
+
1186
+
1187
+ ## [3.1.2](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.1.1...@megafon/ui-shared@3.1.2) (2022-03-14)
1188
+
1189
+ **Note:** Version bump only for package @megafon/ui-shared
1190
+
1191
+
1192
+
1193
+
1194
+
1195
+ ## [3.1.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.1.0...@megafon/ui-shared@3.1.1) (2022-02-28)
1196
+
1197
+ **Note:** Version bump only for package @megafon/ui-shared
1198
+
1199
+
1200
+
1201
+
1202
+
1203
+ # [3.1.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.0.3...@megafon/ui-shared@3.1.0) (2022-02-22)
1204
+
1205
+
1206
+ ### Bug Fixes
1207
+
1208
+ * **videobanner:** update snapshots ([77de901](https://github.com/MegafonWebLab/megafon-ui/commit/77de901fa76793cf76dc776b3234b2d792befd9a))
1209
+ * fix Breadcrumbs, ButtonLinkBox, Card, CardBox, Container, DownloadLink & VideoBanner snapshots ([e149e2d](https://github.com/MegafonWebLab/megafon-ui/commit/e149e2d40ececff0065ec1d800fb807fabfe8640))
1210
+ * **breadcrumbs:** allow to pass items as array of JSX elements ([1ca1583](https://github.com/MegafonWebLab/megafon-ui/commit/1ca158390c7c58b5ff117ae8ad16268b043d5ddb))
1211
+ * **colors:** fix colors usage ([f2f59a8](https://github.com/MegafonWebLab/megafon-ui/commit/f2f59a81644c157394817af1531dabb1c0b67b19))
1212
+ * **components:** better view of default props values ([1817ed5](https://github.com/MegafonWebLab/megafon-ui/commit/1817ed5cd17fd78a0911a89020138f05d7af9833))
1213
+
1214
+
1215
+ ### Features
1216
+
1217
+ * **textwithiconitem:** add type string[] for text prop ([0df9680](https://github.com/MegafonWebLab/megafon-ui/commit/0df9680e10058ea24783fbc41cbce17e9b2a5594))
1218
+ * **ui-shared:** add dataAttrs prop for interactive elements of components that did not have ([6b2fad8](https://github.com/MegafonWebLab/megafon-ui/commit/6b2fad84e72269d1fac0408e0b7e94202866b4aa))
1219
+ * **videobanner:** added new classes for video ([d8b84a0](https://github.com/MegafonWebLab/megafon-ui/commit/d8b84a003103cf5f66102d354d2625e30a2c0d2a))
1220
+
1221
+
1222
+
1223
+
1224
+
1225
+ ## [3.0.3](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.0.2...@megafon/ui-shared@3.0.3) (2022-02-15)
1226
+
1227
+ **Note:** Version bump only for package @megafon/ui-shared
1228
+
1229
+
1230
+
1231
+
1232
+
1233
+ ## [3.0.2](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@3.0.0...@megafon/ui-shared@3.0.2) (2022-02-11)
1234
+
1235
+
1236
+ ### Bug Fixes
1237
+
1238
+ * revert mistake version ([cc8668a](https://github.com/MegafonWebLab/megafon-ui/commit/cc8668a9ff2bc5fde6bf93ca806d4406a5944107))
1239
+
1240
+
1241
+
1242
+
1243
+
1244
+ # [3.0.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.3.0...@megafon/ui-shared@3.0.0) (2022-02-09)
1245
+
1246
+
1247
+ ### Bug Fixes
1248
+
1249
+ * **components:** change tests for dataAttrs prop ([eae8ecb](https://github.com/MegafonWebLab/megafon-ui/commit/eae8ecb5104c050ec0e67357ed5edecdfb042838))
1250
+ * color props values changes ([9e3dd31](https://github.com/MegafonWebLab/megafon-ui/commit/9e3dd31a8fd57012482c68c1173aae74028aa3a9))
1251
+ * remove deprecated props values ([d09c460](https://github.com/MegafonWebLab/megafon-ui/commit/d09c4606ce6e41f7144e18c2216d039d859288e2))
1252
+ * **accordion-box:** change type of onClickAccordion prop ([f464221](https://github.com/MegafonWebLab/megafon-ui/commit/f4642216a3869d7f11005f0162f009225f9661c4))
1253
+ * **colors:** renabe green and purple to brandGreen and brandPurple to avoid postcss-colormin bug ([089dd42](https://github.com/MegafonWebLab/megafon-ui/commit/089dd42cd18db7fc83e690da45d09b88c636a6f7))
1254
+ * **core:** fix build ui-core ([fa9522a](https://github.com/MegafonWebLab/megafon-ui/commit/fa9522ac0931edb7ec772ad040557997db080687))
1255
+
1256
+
1257
+ ### Features
1258
+
1259
+ * **accordionbox:** remove prop hasVerticalPaddings ([7dfe546](https://github.com/MegafonWebLab/megafon-ui/commit/7dfe546336aa0a94643299309e90fe7e56936e85))
1260
+ * **colors:** css custom properties and color themes support ([16df5b7](https://github.com/MegafonWebLab/megafon-ui/commit/16df5b7b2644e15bb6c6e49e7347c0f8e4839e58))
1261
+ * **header:** made header as a functional component ([b983934](https://github.com/MegafonWebLab/megafon-ui/commit/b983934ced137ede35f64ce2dfe0c953c1690db0))
1262
+ * **textwithicon:** prop items removed, list items are now added by child components ([44ee66c](https://github.com/MegafonWebLab/megafon-ui/commit/44ee66c3964da1111957553c75046407f789e673))
1263
+
1264
+
1265
+ ### BREAKING CHANGES
1266
+
1267
+ * **textwithicon:** prop items removed, list items are now added by child components
1268
+ * **accordionbox:** remove prop hasVerticalPaddings
1269
+ * **accordion-box:** remove parameter 'title' in onClickAccordion prop
1270
+ * **colors:** green, green20, green80, purple, purple20 and purple80 colors now have 'brand'
1271
+ prefix (e.g. brandGreen)
1272
+ * **contentarea**: prop color change values from 'base' to 'white' and from 'content' to 'default';
1273
+ remove depreacted value 'freshAsphalt'
1274
+ * **contentarea**, **paragraph**, **storebanner** and **breadcrumbs** components from no don't have
1275
+ 'freshAsphalt' and 'clearWhite' as values for colorizing props
1276
+ * **storebanner**: prop theme change value from 'black' to 'default'; remove deprecated value 'clearWhite'
1277
+ * **components:** for the components to work correctly, now it's needed to import colors.css file
1278
+
1279
+
1280
+
1281
+
1282
+ # [2.3.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.2.1...@megafon/ui-shared@2.3.0) (2022-02-07)
1283
+
1284
+
1285
+ ### Features
1286
+
1287
+ * **container:** fix margin rules for component TextWithIcon ([3c2de9d](https://github.com/MegafonWebLab/megafon-ui/commit/3c2de9db5a01bdd246daee22dd5545e21dce55ba))
1288
+ * **textbox:** add styles for use TextWithIcon inside component ([c993657](https://github.com/MegafonWebLab/megafon-ui/commit/c993657a2f143f87607a7d1474d44c4596d73558))
1289
+
1290
+
1291
+
1292
+
1293
+
1294
+ ## [2.2.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.2.0...@megafon/ui-shared@2.2.1) (2022-01-31)
1295
+
1296
+
1297
+ ### Bug Fixes
1298
+
1299
+ * **storebanner:** update qr code image for storebanner examples and fix qr code container styles ([1845222](https://github.com/MegafonWebLab/megafon-ui/commit/1845222e5211e70a8f5aa36ab4a710ecd46e8a14))
1300
+
1301
+
1302
+
1303
+
1304
+
1305
+ # [2.2.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.1.5...@megafon/ui-shared@2.2.0) (2022-01-24)
1306
+
1307
+
1308
+ ### Features
1309
+
1310
+ * **accordionbox:** props hasVerticalPaddings marked as deprecated ([7dbb43b](https://github.com/MegafonWebLab/megafon-ui/commit/7dbb43b1178f4055ecd0f4eed5614024da638091))
1311
+ * **container:** add rules for TextWithIcon component ([4c692ab](https://github.com/MegafonWebLab/megafon-ui/commit/4c692ab43db115dc7c5aeba39713d6f2ae2daaff))
1312
+ * **textwithicon:** add component TextWithIcon ([b772728](https://github.com/MegafonWebLab/megafon-ui/commit/b772728b8739dbbfa550eef1c8eedb56cda620c9))
1313
+ * **videoblock:** made button optional ([eef7c17](https://github.com/MegafonWebLab/megafon-ui/commit/eef7c174415b28fe3512d8c28fcd9bb73774dd2e))
1314
+
1315
+
1316
+
1317
+
1318
+
1319
+ ## [2.1.5](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.1.4...@megafon/ui-shared@2.1.5) (2022-01-18)
1320
+
1321
+
1322
+ ### Bug Fixes
1323
+
1324
+ * **benefitsicons:** fix indents of items for inOneColumn mode ([e207c1c](https://github.com/MegafonWebLab/megafon-ui/commit/e207c1c99b42a48454e716094132d9573b3ec3c6))
1325
+
1326
+
1327
+
1328
+
1329
+
1330
+ ## [2.1.4](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.1.3...@megafon/ui-shared@2.1.4) (2021-12-29)
1331
+
1332
+ **Note:** Version bump only for package @megafon/ui-shared
1333
+
1334
+
1335
+
1336
+
1337
+
1338
+ ## [2.1.3](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.1.2...@megafon/ui-shared@2.1.3) (2021-12-20)
1339
+
1340
+
1341
+ ### Bug Fixes
1342
+
1343
+ * **tabs:** fix active tab underline width ([4499399](https://github.com/MegafonWebLab/megafon-ui/commit/449939942730143712a92930a279a8b6fc17a012))
1344
+ * **ui-shared:** remove few eslint rules from .eslintrc.json ([de49316](https://github.com/MegafonWebLab/megafon-ui/commit/de49316bf982a7d573a0bdd94f949d6407ce0ff8))
1345
+
1346
+
1347
+
1348
+
1349
+
1350
+ ## [2.1.2](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.1.1...@megafon/ui-shared@2.1.2) (2021-12-14)
1351
+
1352
+ **Note:** Version bump only for package @megafon/ui-shared
1353
+
1354
+
1355
+
1356
+
1357
+
1358
+ ## [2.1.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.1.0...@megafon/ui-shared@2.1.1) (2021-12-14)
1359
+
1360
+ **Note:** Version bump only for package @megafon/ui-shared
1361
+
1362
+
1363
+
1364
+
1365
+
1366
+ # [2.1.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.1...@megafon/ui-shared@2.1.0) (2021-12-13)
1367
+
1368
+
1369
+ ### Features
1370
+
1371
+ * **container:** add new indents to child components ([9469e71](https://github.com/MegafonWebLab/megafon-ui/commit/9469e71946371813c0e946f0a71a2b3876f386eb))
1372
+
1373
+
1374
+
1375
+
1376
+
1377
+ ## [2.0.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0...@megafon/ui-shared@2.0.1) (2021-12-07)
1378
+
1379
+ **Note:** Version bump only for package @megafon/ui-shared
1380
+
1381
+
1382
+
1383
+
1384
+
1385
+ # [2.0.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.241...@megafon/ui-shared@2.0.0) (2021-11-30)
1386
+
1387
+
1388
+ ### Features
1389
+
1390
+ * rename prefix mfui-beta to mfui ([41b2ea4](https://github.com/MegafonWebLab/megafon-ui/commit/41b2ea4880ee6dd0e76b862bfc0d2a86031d734c))
1391
+
1392
+
1393
+ ### BREAKING CHANGES
1394
+
1395
+ * 1.x.x version of ui library also has mfui- prefix for components. please, check,
1396
+ that you don't have any styles or business logic (e.g. css or js selectors) using mfui- prefix as
1397
+ match pattern.
1398
+
1399
+
1400
+
1401
+
1402
+
1403
+ # [2.0.0-beta.241](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.240...@megafon/ui-shared@2.0.0-beta.241) (2021-11-29)
1404
+
1405
+
1406
+ ### Bug Fixes
1407
+
1408
+ * **ui-shared:** enable more eslint rules and fix problems ([063b874](https://github.com/MegafonWebLab/megafon-ui/commit/063b8747e2dfd3f883f07a04e177cbceef4cca2e))
1409
+ * **ui-shared:** enable more eslint rules and fix problems ([4bde8f9](https://github.com/MegafonWebLab/megafon-ui/commit/4bde8f93be7a13efe912f22d659371a3e380e6f3))
1410
+ * **ui-shared:** enable some eslint rules and fix problems ([73ea828](https://github.com/MegafonWebLab/megafon-ui/commit/73ea828ea060d5cfecb18fdd5d1498efa1e93fbd))
1411
+ * **ui-shared:** fix children type ([0f04517](https://github.com/MegafonWebLab/megafon-ui/commit/0f04517deaa60ff05fd05eeb478d66e0a116b999))
1412
+ * **ui-shared:** fixes after rebase ([c326ee8](https://github.com/MegafonWebLab/megafon-ui/commit/c326ee8c3ca2f47c6b3202d78c91e08b0e42914e))
1413
+ * **ui-shared:** remove alt content; rename interface ([316e04a](https://github.com/MegafonWebLab/megafon-ui/commit/316e04a1a594ce61c7d198113f1fb6612cc7d913))
1414
+
1415
+
1416
+
1417
+
1418
+
1419
+ # [2.0.0-beta.240](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.239...@megafon/ui-shared@2.0.0-beta.240) (2021-11-23)
1420
+
1421
+
1422
+ ### Bug Fixes
1423
+
1424
+ * **instructions:** fix activeInstructionItem class ([4f4c611](https://github.com/MegafonWebLab/megafon-ui/commit/4f4c611d5fdb227f00c164cc2bcfae6f6eb91c5e))
1425
+
1426
+
1427
+ ### Features
1428
+
1429
+ * **container:** add new indents to child components ([02a4d5b](https://github.com/MegafonWebLab/megafon-ui/commit/02a4d5b819d7c0c653ab819df04c1f069a94c3b1))
1430
+ * **storebanner:** fixed style and changed buttons image ([87b77a8](https://github.com/MegafonWebLab/megafon-ui/commit/87b77a8e5da178f8273287bd1be85ac7ccd8f0bd))
1431
+
1432
+
1433
+
1434
+
1435
+
1436
+ # [2.0.0-beta.239](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.238...@megafon/ui-shared@2.0.0-beta.239) (2021-11-15)
1437
+
1438
+ **Note:** Version bump only for package @megafon/ui-shared
1439
+
1440
+
1441
+
1442
+
1443
+
1444
+ # [2.0.0-beta.238](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.237...@megafon/ui-shared@2.0.0-beta.238) (2021-11-15)
1445
+
1446
+
1447
+ ### Bug Fixes
1448
+
1449
+ * **card:** fix icon indent ([5429444](https://github.com/MegafonWebLab/megafon-ui/commit/54294443e0cb8ead74516b0d63ddcf130c29f4f5))
1450
+
1451
+
1452
+ ### Features
1453
+
1454
+ * **instructions:** add mobile and desktop classes for item ([2f27427](https://github.com/MegafonWebLab/megafon-ui/commit/2f27427e665d234f3f175830c0f3f4ea44486de5))
1455
+
1456
+
1457
+
1458
+
1459
+
1460
+ # [2.0.0-beta.237](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.236...@megafon/ui-shared@2.0.0-beta.237) (2021-11-15)
1461
+
1462
+
1463
+ ### Code Refactoring
1464
+
1465
+ * **videoblock:** change description props type, add description class ([ddde89a](https://github.com/MegafonWebLab/megafon-ui/commit/ddde89a66ba48fd60504781a3e1221f308a91370))
1466
+
1467
+
1468
+ ### BREAKING CHANGES
1469
+
1470
+ * **videoblock:** description props now receive string or nodes instead of array of strings
1471
+
1472
+
1473
+
1474
+
1475
+
1476
+ # [2.0.0-beta.236](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.235...@megafon/ui-shared@2.0.0-beta.236) (2021-11-15)
1477
+
1478
+ **Note:** Version bump only for package @megafon/ui-shared
1479
+
1480
+
1481
+
1482
+
1483
+
1484
+ # [2.0.0-beta.235](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.234...@megafon/ui-shared@2.0.0-beta.235) (2021-11-01)
1485
+
1486
+
1487
+ ### Features
1488
+
1489
+ * add color variable [@fresh](https://github.com/fresh)Asphalt50 to base.less ([9aee3d7](https://github.com/MegafonWebLab/megafon-ui/commit/9aee3d7d6e9250fc61546539ea9e8cb5c3be15aa))
1490
+
1491
+
1492
+
1493
+
1494
+
1495
+ # [2.0.0-beta.234](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.233...@megafon/ui-shared@2.0.0-beta.234) (2021-10-25)
1496
+
1497
+
1498
+ ### Features
1499
+
1500
+ * **benefitsicons:** add ability render benefits in one column ([9e075ce](https://github.com/MegafonWebLab/megafon-ui/commit/9e075cec1a60474b9e3e22a30815ab3150acc54e))
1501
+
1502
+
1503
+
1504
+
1505
+
1506
+ # [2.0.0-beta.233](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.232...@megafon/ui-shared@2.0.0-beta.233) (2021-10-18)
1507
+
1508
+ **Note:** Version bump only for package @megafon/ui-shared
1509
+
1510
+
1511
+
1512
+
1513
+
1514
+ # [2.0.0-beta.232](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.231...@megafon/ui-shared@2.0.0-beta.232) (2021-10-11)
1515
+
1516
+
1517
+ ### Bug Fixes
1518
+
1519
+ * **picturewithdescription:** fix text align ([1cc5829](https://github.com/MegafonWebLab/megafon-ui/commit/1cc5829e62460a57fccf80b2f8ffb83846d0c8f8))
1520
+ * **textboxpicture:** fix image styles ([868cf33](https://github.com/MegafonWebLab/megafon-ui/commit/868cf3349ffd2b7e1b8829fec694f7aade416db7))
1521
+ * **videoblock:** fix button width ([9fc980b](https://github.com/MegafonWebLab/megafon-ui/commit/9fc980b72d8d716ce2b8d6441610fe0032892f13))
1522
+
1523
+
1524
+
1525
+
1526
+
1527
+ # [2.0.0-beta.231](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.230...@megafon/ui-shared@2.0.0-beta.231) (2021-10-07)
1528
+
1529
+
1530
+ ### Bug Fixes
1531
+
1532
+ * add lint-staged to pre-commit hook ([83e2e13](https://github.com/MegafonWebLab/megafon-ui/commit/83e2e1304c92cd0125e80fa0c2879e28476499d9))
1533
+ * run lint-staged only on pre-commit hook ([8570564](https://github.com/MegafonWebLab/megafon-ui/commit/857056423e738135f6d0866df8c0166ce9bd289e))
1534
+
1535
+
1536
+
1537
+
1538
+
1539
+ # [2.0.0-beta.230](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.229...@megafon/ui-shared@2.0.0-beta.230) (2021-10-05)
1540
+
1541
+ **Note:** Version bump only for package @megafon/ui-shared
1542
+
1543
+
1544
+
1545
+
1546
+
1547
+ # [2.0.0-beta.229](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.228...@megafon/ui-shared@2.0.0-beta.229) (2021-10-04)
1548
+
1549
+
1550
+ ### Bug Fixes
1551
+
1552
+ * **gulpfile.js:** fix code replacement ([fe3fca0](https://github.com/MegafonWebLab/megafon-ui/commit/fe3fca05a1915fdd3bd9699579a5a2096c3ffe7e))
1553
+ * **ui-shared:** add prettier and eslint configs; fix prettier errors ([0cb5520](https://github.com/MegafonWebLab/megafon-ui/commit/0cb552061dfd58d314ad22a7877ee792d83eb31c))
1554
+ * **ui-shared:** remove tslint and tslint config ([3ff4c63](https://github.com/MegafonWebLab/megafon-ui/commit/3ff4c631d5a668e1c388ea317cb1ff4315d4ab4f))
1555
+
1556
+
1557
+ ### Features
1558
+
1559
+ * **downloadlinks:** add props 'inOneColumn' for render links in one column, regardless of quantity ([b44e3a7](https://github.com/MegafonWebLab/megafon-ui/commit/b44e3a7e2eda4c7aeee85f6b7f58886738452f71))
1560
+
1561
+
1562
+
1563
+
1564
+
1565
+ # [2.0.0-beta.228](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.227...@megafon/ui-shared@2.0.0-beta.228) (2021-09-27)
1566
+
1567
+ **Note:** Version bump only for package @megafon/ui-shared
1568
+
1569
+
1570
+
1571
+
1572
+
1573
+ # [2.0.0-beta.227](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.226...@megafon/ui-shared@2.0.0-beta.227) (2021-09-27)
1574
+
1575
+
1576
+ ### Bug Fixes
1577
+
1578
+ * **.stylelintrc.json:** move .stylelint.json to root and extends package configs from it ([ae5eac3](https://github.com/MegafonWebLab/megafon-ui/commit/ae5eac3dbbbea00413cea6b45ecbc22babb723c4))
1579
+ * **buttonbanner.less:** fix [@media](https://github.com/media) query position ([955b9b4](https://github.com/MegafonWebLab/megafon-ui/commit/955b9b416933078340e7ad9482073da25ba3a0eb))
1580
+ * **textboxpicture:** fix modifiers names ([52e713d](https://github.com/MegafonWebLab/megafon-ui/commit/52e713d60edb8da68a0dafe62df08baec6ad23bf))
1581
+ * **ui-shared:** add frontend-presets configs; fix stylelint errors ([06df02d](https://github.com/MegafonWebLab/megafon-ui/commit/06df02d5218c611282fa5aea079bca46afcdbd56))
1582
+
1583
+
1584
+
1585
+
1586
+
1587
+ # [2.0.0-beta.226](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.225...@megafon/ui-shared@2.0.0-beta.226) (2021-09-20)
1588
+
1589
+
1590
+ ### Bug Fixes
1591
+
1592
+ * add frontend-presets for ui-core package and fix stylelint errors ([752bce5](https://github.com/MegafonWebLab/megafon-ui/commit/752bce59cfd31494e85c11faa4795ca7ee89adcc))
1593
+
1594
+
1595
+ ### Features
1596
+
1597
+ * **card:** extend type of title and text props ([e275054](https://github.com/MegafonWebLab/megafon-ui/commit/e275054d304ee8870186b21e2e871a94a0e59ca2))
1598
+ * **textboxpictures:** add TextBoxPicture component, should be used only in TexBox component ([a88265f](https://github.com/MegafonWebLab/megafon-ui/commit/a88265f5938f8a27fe51b7cb39fa14ef2e4bdb7f))
1599
+
1600
+
1601
+
1602
+
1603
+
1604
+ # [2.0.0-beta.225](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.224...@megafon/ui-shared@2.0.0-beta.225) (2021-09-14)
1605
+
1606
+ **Note:** Version bump only for package @megafon/ui-shared
1607
+
1608
+
1609
+
1610
+
1611
+
1612
+ # [2.0.0-beta.224](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.223...@megafon/ui-shared@2.0.0-beta.224) (2021-09-13)
1613
+
1614
+
1615
+ ### Bug Fixes
1616
+
1617
+ * **instructions:** removed javascript resolution tracking ([7cfaddb](https://github.com/MegafonWebLab/megafon-ui/commit/7cfaddb3cda52c671b5541e42ff29bd5864809a5))
1618
+
1619
+
1620
+ ### Features
1621
+
1622
+ * **benefitsicons:** added classes for Grid and GridColumn ([be71f0c](https://github.com/MegafonWebLab/megafon-ui/commit/be71f0c32ae6e721c30baaa895acca7220a217c0))
1623
+ * **instructions:** fix style for Instructions ([acb53fa](https://github.com/MegafonWebLab/megafon-ui/commit/acb53fa8e8574c22631d89edf02c0503d091f72d))
1624
+ * **instructions:** fix style for iphone 12 mask ([4ae746b](https://github.com/MegafonWebLab/megafon-ui/commit/4ae746b9a347acaf5de29fdbc82082474d7ffcb7))
1625
+ * **pagetitle:** removed breadcrumbs from grid ([04c2c79](https://github.com/MegafonWebLab/megafon-ui/commit/04c2c794061dea920a7db6ed2f1303bbe48127b6))
1626
+ * **storebanner:** added new store button and update StoreBanner ([c13f37b](https://github.com/MegafonWebLab/megafon-ui/commit/c13f37bf8d2e5ed61f4d43c0e1d19eb4375a8c15))
1627
+
1628
+
1629
+
1630
+
1631
+
1632
+ # [2.0.0-beta.223](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.222...@megafon/ui-shared@2.0.0-beta.223) (2021-08-30)
1633
+
1634
+
1635
+ ### Features
1636
+
1637
+ * **videobanner:** add onLinkClick prop ([8e932b2](https://github.com/MegafonWebLab/megafon-ui/commit/8e932b2245457a2b38035aeeccacaad89f8cf8b0))
1638
+
1639
+
1640
+
1641
+
1642
+
1643
+ # [2.0.0-beta.222](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.221...@megafon/ui-shared@2.0.0-beta.222) (2021-08-25)
1644
+
1645
+
1646
+ ### Features
1647
+
1648
+ * **packages:** extracts icons from @megafon/ui-core to @megafon/ui-icons package ([ddabc32](https://github.com/MegafonWebLab/megafon-ui/commit/ddabc325b888540804f1fa13c94a1c5a58009df2))
1649
+
1650
+
1651
+ ### BREAKING CHANGES
1652
+
1653
+ * **packages:** icons from @megafon/ui-core removed, use @megafon/ui-icons package instead
1654
+
1655
+
1656
+
1657
+
1658
+
1659
+ # [2.0.0-beta.221](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.220...@megafon/ui-shared@2.0.0-beta.221) (2021-08-23)
1660
+
1661
+
1662
+ ### Features
1663
+
1664
+ * **card:** add target prop to root element, button and link ([37811e7](https://github.com/MegafonWebLab/megafon-ui/commit/37811e72070550bd1eec7f1bce6cbb12f91aa707))
1665
+
1666
+
1667
+
1668
+
1669
+
1670
+ # [2.0.0-beta.220](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.219...@megafon/ui-shared@2.0.0-beta.220) (2021-08-16)
1671
+
1672
+
1673
+ ### Bug Fixes
1674
+
1675
+ * **picturewithdescription:** reset margin of first and last child ([5e16fb1](https://github.com/MegafonWebLab/megafon-ui/commit/5e16fb1b78a60b39b5c57d0a9f213d1f3d1ea7a5))
1676
+ * **textbox:** reset margin of first and last child ([20a2127](https://github.com/MegafonWebLab/megafon-ui/commit/20a21272cf4ce1b83e4cb717ea55d7d8120233c3))
1677
+ * **titledescriptionbox:** reset margin of last child ([1a01a16](https://github.com/MegafonWebLab/megafon-ui/commit/1a01a164af10f010f790c3f51c6d9a6fc345c8b7))
1678
+
1679
+
1680
+
1681
+
1682
+
1683
+ # [2.0.0-beta.219](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.218...@megafon/ui-shared@2.0.0-beta.219) (2021-08-09)
1684
+
1685
+
1686
+ ### Bug Fixes
1687
+
1688
+ * **titledescriptionbox:** apply white-space to header only ([7e5e185](https://github.com/MegafonWebLab/megafon-ui/commit/7e5e1853f8fa10630742a419c7de9319f625e4b2))
1689
+
1690
+
1691
+
1692
+
1693
+
1694
+ # [2.0.0-beta.218](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.217...@megafon/ui-shared@2.0.0-beta.218) (2021-08-02)
1695
+
1696
+
1697
+ ### Features
1698
+
1699
+ * **picturewithdescription:** extend title type ([15d4db1](https://github.com/MegafonWebLab/megafon-ui/commit/15d4db1e2372c14ff362483e360a4c590937d693))
1700
+
1701
+
1702
+
1703
+
1704
+
1705
+ # [2.0.0-beta.217](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.216...@megafon/ui-shared@2.0.0-beta.217) (2021-07-26)
1706
+
1707
+
1708
+ ### Features
1709
+
1710
+ * **pagetitle:** add isFullWidth props, expanded title type ([63f7628](https://github.com/MegafonWebLab/megafon-ui/commit/63f76287857d57c754498bd029084aee0add79df))
1711
+ * **textbox:** add centeringWithLimitedWidth and isFullWidth props ([6f3a080](https://github.com/MegafonWebLab/megafon-ui/commit/6f3a080dc3284b2b37e956a585bb854d61f5a772))
1712
+
1713
+
1714
+
1715
+
1716
+
1717
+ # [2.0.0-beta.216](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.215...@megafon/ui-shared@2.0.0-beta.216) (2021-07-26)
1718
+
1719
+
1720
+ ### Features
1721
+
1722
+ * **picturewithdescription:** add title and classes props ([1bb140c](https://github.com/MegafonWebLab/megafon-ui/commit/1bb140c80cc998fd537fad4069adc1b158de93be))
1723
+ * **videobanner:** props buttonTitle made optional ([f7cf47a](https://github.com/MegafonWebLab/megafon-ui/commit/f7cf47a771d2f876935d6b823e5221eb4d218a14))
1724
+
1725
+
1726
+
1727
+
1728
+
1729
+ # [2.0.0-beta.215](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.214...@megafon/ui-shared@2.0.0-beta.215) (2021-07-20)
1730
+
1731
+
1732
+ ### Bug Fixes
1733
+
1734
+ * **instructions:** fix image on android and video on ios ([10b87f5](https://github.com/MegafonWebLab/megafon-ui/commit/10b87f58c60c9584e811ff69e3391c2beae37eff))
1735
+
1736
+
1737
+ ### Features
1738
+
1739
+ * **instructions:** add new mask for iphone 12 and some style fix ([eea27c8](https://github.com/MegafonWebLab/megafon-ui/commit/eea27c8d3138c8fc32ac63aa801240b84a1156a9))
1740
+ * **instructions:** change image screen ([fc32590](https://github.com/MegafonWebLab/megafon-ui/commit/fc32590d5f9931bb0c28c9828740aa4e6181f799))
1741
+
1742
+
1743
+
1744
+
1745
+
1746
+ # [2.0.0-beta.214](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.213...@megafon/ui-shared@2.0.0-beta.214) (2021-07-14)
1747
+
1748
+
1749
+ ### Bug Fixes
1750
+
1751
+ * **build:** change contants path resolve ([b4b810a](https://github.com/MegafonWebLab/megafon-ui/commit/b4b810a6b3b753103360dbccc20e891fd6f87cd8))
1752
+
1753
+
1754
+
1755
+
1756
+
1757
+ # [2.0.0-beta.213](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.212...@megafon/ui-shared@2.0.0-beta.213) (2021-07-13)
1758
+
1759
+
1760
+ ### Features
1761
+
1762
+ * **packages:** added @megafon/ui-helpers package ([811f67c](https://github.com/MegafonWebLab/megafon-ui/commit/811f67c26c87e2582e461c03223b12344513ecac))
1763
+
1764
+
1765
+ ### BREAKING CHANGES
1766
+
1767
+ * **packages:** utils from @megafon/ui-core removed, use @megafon/ui-helpers package instead
1768
+ * **packages:** breakpoints from @megafon/ui-core removed, use @megafon/ui-helpers package instead
1769
+ * **packages:** throttleTime removed from export in @megafon/ui-core package
1770
+
1771
+
1772
+
1773
+
1774
+
1775
+ # [2.0.0-beta.212](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.211...@megafon/ui-shared@2.0.0-beta.212) (2021-07-12)
1776
+
1777
+
1778
+ ### Features
1779
+
1780
+ * **instructions:** add new prop additional text ([1609801](https://github.com/MegafonWebLab/megafon-ui/commit/1609801d701e6d4f49b40bb6422f7f4dee4e7d18))
1781
+
1782
+
1783
+
1784
+
1785
+
1786
+ # [2.0.0-beta.211](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.210...@megafon/ui-shared@2.0.0-beta.211) (2021-07-05)
1787
+
1788
+
1789
+ ### Features
1790
+
1791
+ * **instructions:** add new classes instructionItemImg for img ([1dac031](https://github.com/MegafonWebLab/megafon-ui/commit/1dac0315b9b565313ca87c3a090eada8ccbdf801))
1792
+ * **partners:** configured to display a fixed number of slides ([fde3dc7](https://github.com/MegafonWebLab/megafon-ui/commit/fde3dc7a2e36b46958bf1f5afc8272cb85cbb2ca))
1793
+
1794
+
1795
+
1796
+
1797
+
1798
+ # [2.0.0-beta.210](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.209...@megafon/ui-shared@2.0.0-beta.210) (2021-06-28)
1799
+
1800
+
1801
+ ### Bug Fixes
1802
+
1803
+ * **videobanner:** fix breadcrumbs render ([aebb08f](https://github.com/MegafonWebLab/megafon-ui/commit/aebb08fa282dbe9449a9b678d875b37c1f7f9cfe))
1804
+
1805
+
1806
+ ### Features
1807
+
1808
+ * **cardsbox:** add ref prop ([974c645](https://github.com/MegafonWebLab/megafon-ui/commit/974c64547fb8e3af19b81258131b1783eaab80eb))
1809
+ * **pagetitle:** add new component ([93120cf](https://github.com/MegafonWebLab/megafon-ui/commit/93120cfcdba4f0c345747fec77dc22c8ba286073))
1810
+ * **titledescriptionbox:** fix PropTypes for render HTML ([46e801b](https://github.com/MegafonWebLab/megafon-ui/commit/46e801bf97715e9f9a1473ea89472b646273f14d))
1811
+
1812
+
1813
+ ### BREAKING CHANGES
1814
+
1815
+ * **cardsbox:** add ref prop
1816
+
1817
+
1818
+
1819
+
1820
+
1821
+ # [2.0.0-beta.209](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.208...@megafon/ui-shared@2.0.0-beta.209) (2021-06-23)
1822
+
1823
+
1824
+ ### Features
1825
+
1826
+ * **downloadlink:** add classes prop ([4f3eba2](https://github.com/MegafonWebLab/megafon-ui/commit/4f3eba27d80eda6c268a2f7f5ccdaff733f8a383))
1827
+ * **titledescriptionbox:** fix type for render HTML ([476ec22](https://github.com/MegafonWebLab/megafon-ui/commit/476ec22998712e5d4a83f6c7bba3f1e9700d74da))
1828
+
1829
+
1830
+
1831
+
1832
+
1833
+ # [2.0.0-beta.208](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.207...@megafon/ui-shared@2.0.0-beta.208) (2021-06-22)
1834
+
1835
+
1836
+ ### Bug Fixes
1837
+
1838
+ * **cardsbox:** fix dataAttrs import ([ab49dbb](https://github.com/MegafonWebLab/megafon-ui/commit/ab49dbbaefd5c0e0c984a70e9f27b714a3fb11f6))
1839
+ * **partners:** fix dataAttrs import ([a07a50e](https://github.com/MegafonWebLab/megafon-ui/commit/a07a50e3f6cd15321caa28e418cb80eb67c1f049))
1840
+
1841
+
1842
+
1843
+
1844
+
1845
+ # [2.0.0-beta.207](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.206...@megafon/ui-shared@2.0.0-beta.207) (2021-06-21)
1846
+
1847
+
1848
+ ### Features
1849
+
1850
+ * **cardsbox:** add dataAttrs and onChange props ([783c3d9](https://github.com/MegafonWebLab/megafon-ui/commit/783c3d95d0fef0a89ccbd06e44fd0959ead7e724))
1851
+ * **partners:** add dataAttr prop, extend onChange func ([86989ef](https://github.com/MegafonWebLab/megafon-ui/commit/86989efffa90763ab80875c29bc31cc69c7b4034))
1852
+
1853
+
1854
+ ### BREAKING CHANGES
1855
+
1856
+ * **cardsbox:** add dataAttrs and onChange props
1857
+ * **partners:** add dataAttr for Partnets, extend arguments list
1858
+ for onChange prop
1859
+
1860
+
1861
+
1862
+
1863
+
1864
+ # [2.0.0-beta.206](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.205...@megafon/ui-shared@2.0.0-beta.206) (2021-06-18)
1865
+
1866
+
1867
+ ### Bug Fixes
1868
+
1869
+ * **benefits icons:** delete padding from benefits ([419fcc0](https://github.com/MegafonWebLab/megafon-ui/commit/419fcc01f80f8e5fc794570559bf3e5a89307b50))
1870
+
1871
+
1872
+ ### Features
1873
+
1874
+ * **instructions:** add getSwiper prop and update classes prop ([4555d5f](https://github.com/MegafonWebLab/megafon-ui/commit/4555d5f56c4c2ada86519f63be652aa5769076d0))
1875
+
1876
+
1877
+
1878
+
1879
+
1880
+ # [2.0.0-beta.205](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.204...@megafon/ui-shared@2.0.0-beta.205) (2021-06-16)
1881
+
1882
+
1883
+ ### Features
1884
+
1885
+ * **partners:** add alt prop to item ([dd93143](https://github.com/MegafonWebLab/megafon-ui/commit/dd9314365122f5bcee261517ab9326f987dfffab))
1886
+ * **picturewithdescription:** add rootRef prop ([96feae1](https://github.com/MegafonWebLab/megafon-ui/commit/96feae14d74aed46969261846259601b02b6d408))
1887
+ * **steps:** add rootRef prop ([59bef59](https://github.com/MegafonWebLab/megafon-ui/commit/59bef59a9fac2ede30b1f35c4fb1590f1dcea2c4))
1888
+ * **videobanner:** add breadcrumbs ([d266b31](https://github.com/MegafonWebLab/megafon-ui/commit/d266b31bc8c66ba5fa85b629f3de0c7813586c81))
1889
+
1890
+
1891
+
1892
+
1893
+
1894
+ # [2.0.0-beta.204](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.203...@megafon/ui-shared@2.0.0-beta.204) (2021-06-10)
1895
+
1896
+
1897
+ ### Features
1898
+
1899
+ * **select:** add new type to view in item ([453f375](https://github.com/MegafonWebLab/megafon-ui/commit/453f3753e46cc2b0fd56287635b8b0918bec56f6))
1900
+ * **textbox:** add className and rootRef props ([25afe19](https://github.com/MegafonWebLab/megafon-ui/commit/25afe19dfd1acd1e304bc5b2f8363c48ab448277))
1901
+ * **titledescriptionbox:** add rootRef prop ([c3b1d90](https://github.com/MegafonWebLab/megafon-ui/commit/c3b1d905a73bf0c5266e846787d707c6434d2f99))
1902
+
1903
+
1904
+
1905
+
1906
+
1907
+ # [2.0.0-beta.203](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.202...@megafon/ui-shared@2.0.0-beta.203) (2021-06-09)
1908
+
1909
+
1910
+ ### Bug Fixes
1911
+
1912
+ * **benefitsiconstile:** remove convert ([984bb26](https://github.com/MegafonWebLab/megafon-ui/commit/984bb2615359fbb710e6fb9ffd1797bf6fadddea))
1913
+ * **buttonbanner:** convert removed ([7b2c5fc](https://github.com/MegafonWebLab/megafon-ui/commit/7b2c5fc2867d35f44b73c4a6ef4588e8882fbc9e))
1914
+ * **instructions:** convert removed ([986cc51](https://github.com/MegafonWebLab/megafon-ui/commit/986cc51d4b33ad3a8435f51aa39018a1a7cb0422))
1915
+
1916
+
1917
+ ### Features
1918
+
1919
+ * **accordionbox:** add title to classes ([1f9c798](https://github.com/MegafonWebLab/megafon-ui/commit/1f9c798f69155c1976598c5b905f861e5774ca96))
1920
+ * **downloadlink:** add ref props ([4a287e2](https://github.com/MegafonWebLab/megafon-ui/commit/4a287e2fade6a83b0cd88ec477f0137502f32077))
1921
+
1922
+
1923
+ ### BREAKING CHANGES
1924
+
1925
+ * **instructions:** convert removed
1926
+ * **buttonbanner:** convert removed
1927
+ * **benefitsiconstile:** convert removed
1928
+
1929
+
1930
+
1931
+
1932
+
1933
+ # [2.0.0-beta.202](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.201...@megafon/ui-shared@2.0.0-beta.202) (2021-06-08)
1934
+
1935
+ **Note:** Version bump only for package @megafon/ui-shared
1936
+
1937
+
1938
+
1939
+
1940
+
1941
+ # [2.0.0-beta.201](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.200...@megafon/ui-shared@2.0.0-beta.201) (2021-06-08)
1942
+
1943
+
1944
+ ### Features
1945
+
1946
+ * **accordionbox:** update interface and tests ([f36f0fd](https://github.com/MegafonWebLab/megafon-ui/commit/f36f0fd5dd7bbd21f33264fc267cca4d6b21a01e))
1947
+
1948
+
1949
+
1950
+
1951
+
1952
+ # [2.0.0-beta.200](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.199...@megafon/ui-shared@2.0.0-beta.200) (2021-06-07)
1953
+
1954
+
1955
+ ### Features
1956
+
1957
+ * **benefitsicons:** add classes and rootRef props ([4b862b9](https://github.com/MegafonWebLab/megafon-ui/commit/4b862b9c5cb5232033a4e3f00cebff991cbdfd24))
1958
+ * **benefitspictures:** add classes and rootRef props ([bdfd54c](https://github.com/MegafonWebLab/megafon-ui/commit/bdfd54c53e40dca6dc1b31ffc9f09f1d7c08f5d1))
1959
+
1960
+
1961
+
1962
+
1963
+
1964
+ # [2.0.0-beta.199](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.198...@megafon/ui-shared@2.0.0-beta.199) (2021-06-04)
1965
+
1966
+ **Note:** Version bump only for package @megafon/ui-shared
1967
+
1968
+
1969
+
1970
+
1971
+
1972
+ # [2.0.0-beta.198](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.197...@megafon/ui-shared@2.0.0-beta.198) (2021-06-04)
1973
+
1974
+ **Note:** Version bump only for package @megafon/ui-shared
1975
+
1976
+
1977
+
1978
+
1979
+
1980
+ # [2.0.0-beta.197](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.196...@megafon/ui-shared@2.0.0-beta.197) (2021-06-03)
1981
+
1982
+
1983
+ ### Bug Fixes
1984
+
1985
+ * **card:** hide btns-wrapper element when empty ([a74daa1](https://github.com/MegafonWebLab/megafon-ui/commit/a74daa1a92aeff44b5aa09b6136a305647131a03))
1986
+
1987
+
1988
+ ### Features
1989
+
1990
+ * **accordionbox:** add isFullWidth prop ([f031c99](https://github.com/MegafonWebLab/megafon-ui/commit/f031c992975f2e7aaba4c8d6ae018061124c89f2))
1991
+
1992
+
1993
+
1994
+
1995
+
1996
+ # [2.0.0-beta.196](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.195...@megafon/ui-shared@2.0.0-beta.196) (2021-06-03)
1997
+
1998
+ **Note:** Version bump only for package @megafon/ui-shared
1999
+
2000
+
2001
+
2002
+
2003
+
2004
+ # [2.0.0-beta.195](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.194...@megafon/ui-shared@2.0.0-beta.195) (2021-06-02)
2005
+
2006
+ **Note:** Version bump only for package @megafon/ui-shared
2007
+
2008
+
2009
+
2010
+
2011
+
2012
+ # [2.0.0-beta.194](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.193...@megafon/ui-shared@2.0.0-beta.194) (2021-06-02)
2013
+
2014
+
2015
+ ### Features
2016
+
2017
+ * **card:** add isCenteredText prop ([1215adb](https://github.com/MegafonWebLab/megafon-ui/commit/1215adb0d3e8fe50f765620a1572062a38a6346e))
2018
+ * **property:** delete prop 'multirow' from component ([e580d84](https://github.com/MegafonWebLab/megafon-ui/commit/e580d8462ce016ead28be0bb690e9397b66a9fc8))
2019
+
2020
+
2021
+ ### BREAKING CHANGES
2022
+
2023
+ * **property:** delete prop 'multirow' from component
2024
+
2025
+
2026
+
2027
+
2028
+
2029
+ # [2.0.0-beta.193](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.192...@megafon/ui-shared@2.0.0-beta.193) (2021-05-28)
2030
+
2031
+
2032
+ ### Features
2033
+
2034
+ * **property:** adds grid in component ([5aea97b](https://github.com/MegafonWebLab/megafon-ui/commit/5aea97b41143b8b32faacab365bf2c5813ba599c))
2035
+
2036
+
2037
+
2038
+
2039
+
2040
+ # [2.0.0-beta.192](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.191...@megafon/ui-shared@2.0.0-beta.192) (2021-05-27)
2041
+
2042
+
2043
+ ### Features
2044
+
2045
+ * **property:** add data attrtibute and custom classes props ([bfceba1](https://github.com/MegafonWebLab/megafon-ui/commit/bfceba104d04ad153c439385ed41377e825042f3))
2046
+
2047
+
2048
+
2049
+
2050
+
2051
+ # [2.0.0-beta.191](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.190...@megafon/ui-shared@2.0.0-beta.191) (2021-05-26)
2052
+
2053
+
2054
+ ### Bug Fixes
2055
+
2056
+ * **titledescriptionbox:** fix rendering description ([91d5ac6](https://github.com/MegafonWebLab/megafon-ui/commit/91d5ac648199d2d9ad60b516f080d84f0eb27401))
2057
+
2058
+
2059
+
2060
+
2061
+
2062
+ # [2.0.0-beta.190](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.189...@megafon/ui-shared@2.0.0-beta.190) (2021-05-26)
2063
+
2064
+
2065
+ ### Bug Fixes
2066
+
2067
+ * **instructions:** fix intruction items margin bottom ([428edde](https://github.com/MegafonWebLab/megafon-ui/commit/428edde0687198c4f2fcf90446ce9e83a5de8447))
2068
+
2069
+
2070
+
2071
+
2072
+
2073
+ # [2.0.0-beta.189](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.188...@megafon/ui-shared@2.0.0-beta.189) (2021-05-26)
2074
+
2075
+
2076
+ ### Bug Fixes
2077
+
2078
+ * **property:** fix text wrap ([bee10c2](https://github.com/MegafonWebLab/megafon-ui/commit/bee10c258fc0b7b22bf5c0c6ec97ab741e9d8f42))
2079
+
2080
+
2081
+
2082
+
2083
+
2084
+ # [2.0.0-beta.188](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.187...@megafon/ui-shared@2.0.0-beta.188) (2021-05-26)
2085
+
2086
+
2087
+ ### Features
2088
+
2089
+ * **partners:** add props rootRef and classes ([0f64240](https://github.com/MegafonWebLab/megafon-ui/commit/0f642405454ba0df2024aef83145de4e80d27053))
2090
+
2091
+
2092
+ ### BREAKING CHANGES
2093
+
2094
+ * **partners:** add props rootRef and classes
2095
+
2096
+ feat(partners): test
2097
+
2098
+
2099
+
2100
+
2101
+
2102
+ # [2.0.0-beta.187](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.186...@megafon/ui-shared@2.0.0-beta.187) (2021-05-26)
2103
+
2104
+
2105
+ ### Bug Fixes
2106
+
2107
+ * **container:** fix margin for Property ([50308b5](https://github.com/MegafonWebLab/megafon-ui/commit/50308b5d63fc9a995688f068d747e3ef45a9d2c9))
2108
+
2109
+
2110
+ ### Features
2111
+
2112
+ * **store banner:** adds data attribute prop ([898a195](https://github.com/MegafonWebLab/megafon-ui/commit/898a195d1556c9849a958d5621859534b4c08668))
2113
+
2114
+
2115
+
2116
+
2117
+
2118
+ # [2.0.0-beta.186](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.185...@megafon/ui-shared@2.0.0-beta.186) (2021-05-25)
2119
+
2120
+ **Note:** Version bump only for package @megafon/ui-shared
2121
+
2122
+
2123
+
2124
+
2125
+
2126
+ # [2.0.0-beta.185](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.184...@megafon/ui-shared@2.0.0-beta.185) (2021-05-25)
2127
+
2128
+ **Note:** Version bump only for package @megafon/ui-shared
2129
+
2130
+
2131
+
2132
+
2133
+
2134
+ # [2.0.0-beta.184](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.183...@megafon/ui-shared@2.0.0-beta.184) (2021-05-20)
2135
+
2136
+ **Note:** Version bump only for package @megafon/ui-shared
2137
+
2138
+
2139
+
2140
+
2141
+
2142
+ # [2.0.0-beta.183](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.182...@megafon/ui-shared@2.0.0-beta.183) (2021-05-20)
2143
+
2144
+
2145
+ ### Bug Fixes
2146
+
2147
+ * **benefitsiconstile:** add type for text props ([1b33f3b](https://github.com/MegafonWebLab/megafon-ui/commit/1b33f3b2dadb4076ce81f4d3c272406fd485558e))
2148
+
2149
+
2150
+
2151
+
2152
+
2153
+ # [2.0.0-beta.182](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.181...@megafon/ui-shared@2.0.0-beta.182) (2021-05-20)
2154
+
2155
+ **Note:** Version bump only for package @megafon/ui-shared
2156
+
2157
+
2158
+
2159
+
2160
+
2161
+ # [2.0.0-beta.181](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.180...@megafon/ui-shared@2.0.0-beta.181) (2021-05-20)
2162
+
2163
+
2164
+ ### Features
2165
+
2166
+ * **buttonbanner:** add imageScaling prop ([5c1328e](https://github.com/MegafonWebLab/megafon-ui/commit/5c1328eea9abb4904dd087d215fd4b3069e0f974))
2167
+
2168
+
2169
+
2170
+
2171
+
2172
+ # [2.0.0-beta.180](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.179...@megafon/ui-shared@2.0.0-beta.180) (2021-05-18)
2173
+
2174
+ **Note:** Version bump only for package @megafon/ui-shared
2175
+
2176
+
2177
+
2178
+
2179
+
2180
+ # [2.0.0-beta.179](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.178...@megafon/ui-shared@2.0.0-beta.179) (2021-05-13)
2181
+
2182
+
2183
+ ### Features
2184
+
2185
+ * **buttonbanner:** added props download to button ([cf26ab0](https://github.com/MegafonWebLab/megafon-ui/commit/cf26ab00d79b39aafcbd77675e34612adfecf6af))
2186
+ * **buttonlinkbox:** added props download to button and textlink ([cd9cd74](https://github.com/MegafonWebLab/megafon-ui/commit/cd9cd74dfce0b16ef2953a6c90aee45da7b1da7b))
2187
+ * **card:** added props download to button and textlink ([952ea9a](https://github.com/MegafonWebLab/megafon-ui/commit/952ea9aa1e0ec5fb3565d60c0d0e6b917c4d1e42))
2188
+ * **videobanner:** added props download to textlink and button ([f2f4a37](https://github.com/MegafonWebLab/megafon-ui/commit/f2f4a370b71d105e4ff6d74b9d832896fbd77bf1))
2189
+ * **videoblock:** added props download for button ([9e438ba](https://github.com/MegafonWebLab/megafon-ui/commit/9e438ba8587a05fa5718e06121b5e24a04657bb4))
2190
+
2191
+
2192
+
2193
+
2194
+
2195
+ # [2.0.0-beta.178](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.177...@megafon/ui-shared@2.0.0-beta.178) (2021-05-12)
2196
+
2197
+
2198
+ ### Bug Fixes
2199
+
2200
+ * **card:** removed underscore when hover on card with href ([2670367](https://github.com/MegafonWebLab/megafon-ui/commit/26703670ed9b49266a4f256328438beeb1f56d87))
2201
+
2202
+
2203
+
2204
+
2205
+
2206
+ # [2.0.0-beta.177](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.176...@megafon/ui-shared@2.0.0-beta.177) (2021-05-12)
2207
+
2208
+
2209
+ ### Features
2210
+
2211
+ * **picturewithdescription:** add prop istexttopalign ([e0f1659](https://github.com/MegafonWebLab/megafon-ui/commit/e0f16591dca67d4434ae157b47d7388855b3a1e6))
2212
+
2213
+
2214
+
2215
+
2216
+
2217
+ # [2.0.0-beta.176](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.175...@megafon/ui-shared@2.0.0-beta.176) (2021-05-11)
2218
+
2219
+ **Note:** Version bump only for package @megafon/ui-shared
2220
+
2221
+
2222
+
2223
+
2224
+
2225
+ # [2.0.0-beta.175](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.174...@megafon/ui-shared@2.0.0-beta.175) (2021-05-11)
2226
+
2227
+
2228
+ ### Features
2229
+
2230
+ * **convert:** change props type and add customProps in TransformConfigItem type ([244f2ab](https://github.com/MegafonWebLab/megafon-ui/commit/244f2ab13797ecaceabac2e50b87f78cbfedd0df))
2231
+
2232
+
2233
+ ### BREAKING CHANGES
2234
+
2235
+ * **convert:** change props type and add customProps
2236
+
2237
+
2238
+
2239
+
2240
+
2241
+ # [2.0.0-beta.174](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.173...@megafon/ui-shared@2.0.0-beta.174) (2021-04-30)
2242
+
2243
+ **Note:** Version bump only for package @megafon/ui-shared
2244
+
2245
+
2246
+
2247
+
2248
+
2249
+ # [2.0.0-beta.173](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.172...@megafon/ui-shared@2.0.0-beta.173) (2021-04-30)
2250
+
2251
+
2252
+ ### Features
2253
+
2254
+ * **buttonlinkbox:** add target prop for ButtonLinkBox ([14759a9](https://github.com/MegafonWebLab/megafon-ui/commit/14759a97b708e950909c1ad03ac891e73bbb783b))
2255
+
2256
+
2257
+
2258
+
2259
+
2260
+ # [2.0.0-beta.172](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.171...@megafon/ui-shared@2.0.0-beta.172) (2021-04-28)
2261
+
2262
+ **Note:** Version bump only for package @megafon/ui-shared
2263
+
2264
+
2265
+
2266
+
2267
+
2268
+ # [2.0.0-beta.171](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.170...@megafon/ui-shared@2.0.0-beta.171) (2021-04-28)
2269
+
2270
+
2271
+ ### Features
2272
+
2273
+ * **tabsbox:** added ref props ([8aa39cd](https://github.com/MegafonWebLab/megafon-ui/commit/8aa39cd7b8cf0023c06af87582bfc25ac072fbde))
2274
+
2275
+
2276
+
2277
+
2278
+
2279
+ # [2.0.0-beta.170](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.169...@megafon/ui-shared@2.0.0-beta.170) (2021-04-28)
2280
+
2281
+
2282
+ ### Features
2283
+
2284
+ * **accordionbox:** add isOpenClass in classes object and add rootRef prop ([ca37da9](https://github.com/MegafonWebLab/megafon-ui/commit/ca37da99cc912669f1cd014d2d44deda40378ed5))
2285
+
2286
+
2287
+
2288
+
2289
+
2290
+ # [2.0.0-beta.169](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.168...@megafon/ui-shared@2.0.0-beta.169) (2021-04-23)
2291
+
2292
+
2293
+ ### Features
2294
+
2295
+ * **carousel:** added custom slide class, swiper props, fade effect ([8949a0b](https://github.com/MegafonWebLab/megafon-ui/commit/8949a0b7e9139063f5d25d5e754e0240801f8c20))
2296
+
2297
+
2298
+
2299
+
2300
+
2301
+ # [2.0.0-beta.168](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.167...@megafon/ui-shared@2.0.0-beta.168) (2021-04-23)
2302
+
2303
+ **Note:** Version bump only for package @megafon/ui-shared
2304
+
2305
+
2306
+
2307
+
2308
+
2309
+ # [2.0.0-beta.167](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.166...@megafon/ui-shared@2.0.0-beta.167) (2021-04-22)
2310
+
2311
+
2312
+ ### Features
2313
+
2314
+ * **instructions:** add prop classes for add class names to inner elements ([f816b76](https://github.com/MegafonWebLab/megafon-ui/commit/f816b762d0f04d6b83738915917fa2a94583a9d4))
2315
+
2316
+
2317
+
2318
+
2319
+
2320
+ # [2.0.0-beta.166](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.165...@megafon/ui-shared@2.0.0-beta.166) (2021-04-20)
2321
+
2322
+ **Note:** Version bump only for package @megafon/ui-shared
2323
+
2324
+
2325
+
2326
+
2327
+
2328
+ # [2.0.0-beta.165](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.164...@megafon/ui-shared@2.0.0-beta.165) (2021-04-20)
2329
+
2330
+
2331
+ ### Features
2332
+
2333
+ * **store banner:** adds classnames and ref props ([658e145](https://github.com/MegafonWebLab/megafon-ui/commit/658e145c832ddc673bed9546c839b925615f1db9))
2334
+
2335
+
2336
+
2337
+
2338
+
2339
+ # [2.0.0-beta.164](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.163...@megafon/ui-shared@2.0.0-beta.164) (2021-04-20)
2340
+
2341
+ **Note:** Version bump only for package @megafon/ui-shared
2342
+
2343
+
2344
+
2345
+
2346
+
2347
+ # [2.0.0-beta.163](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.162...@megafon/ui-shared@2.0.0-beta.163) (2021-04-15)
2348
+
2349
+
2350
+ ### Bug Fixes
2351
+
2352
+ * **property:** fix bug with flexbox in IE ([55f9c12](https://github.com/MegafonWebLab/megafon-ui/commit/55f9c124123fc350d5d8898345bc6ddbfec1bc3f))
2353
+
2354
+
2355
+
2356
+
2357
+
2358
+ # [2.0.0-beta.162](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.161...@megafon/ui-shared@2.0.0-beta.162) (2021-04-14)
2359
+
2360
+
2361
+ ### Bug Fixes
2362
+
2363
+ * **package.json:** update swiper to fix error with types ([594cc99](https://github.com/MegafonWebLab/megafon-ui/commit/594cc99af7d9533ac9efca3f8b1ded3cdd5a0433))
2364
+
2365
+
2366
+
2367
+
2368
+
2369
+ # [2.0.0-beta.161](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.160...@megafon/ui-shared@2.0.0-beta.161) (2021-04-13)
2370
+
2371
+
2372
+ ### Features
2373
+
2374
+ * **property:** delete convert from component ([447022e](https://github.com/MegafonWebLab/megafon-ui/commit/447022ecb1fb81054fd1514cc2ec599ceb3c2d44))
2375
+
2376
+
2377
+ ### BREAKING CHANGES
2378
+
2379
+ * **property:** title and description does not support html tags
2380
+
2381
+
2382
+
2383
+
2384
+
2385
+ # [2.0.0-beta.160](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.159...@megafon/ui-shared@2.0.0-beta.160) (2021-04-08)
2386
+
2387
+ **Note:** Version bump only for package @megafon/ui-shared
2388
+
2389
+
2390
+
2391
+
2392
+
2393
+ # [2.0.0-beta.159](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.158...@megafon/ui-shared@2.0.0-beta.159) (2021-04-08)
2394
+
2395
+
2396
+ ### Features
2397
+
2398
+ * **container:** added enable/disable padding top and bottom ([fdae2bb](https://github.com/MegafonWebLab/megafon-ui/commit/fdae2bbfff5a63bb9b0d10d25024842bf220ec17))
2399
+
2400
+
2401
+
2402
+
2403
+
2404
+ # [2.0.0-beta.158](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.157...@megafon/ui-shared@2.0.0-beta.158) (2021-04-07)
2405
+
2406
+
2407
+ ### Features
2408
+
2409
+ * **steps:** edit steps item text type ([53da4fd](https://github.com/MegafonWebLab/megafon-ui/commit/53da4fd30268e0d9c0aa4bf585fba02b46261fe7))
2410
+
2411
+
2412
+ ### BREAKING CHANGES
2413
+
2414
+ * **steps:** adds ReactNode type to text props for convert function
2415
+
2416
+
2417
+
2418
+
2419
+
2420
+ # [2.0.0-beta.157](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.156...@megafon/ui-shared@2.0.0-beta.157) (2021-04-06)
2421
+
2422
+
2423
+ ### Features
2424
+
2425
+ * **benefitpictures:** add render html for title and text ([d866d4f](https://github.com/MegafonWebLab/megafon-ui/commit/d866d4f2a3c52b715aaf5247200796cc7529aacb))
2426
+
2427
+
2428
+
2429
+
2430
+
2431
+ # [2.0.0-beta.156](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.155...@megafon/ui-shared@2.0.0-beta.156) (2021-04-06)
2432
+
2433
+
2434
+ ### Features
2435
+
2436
+ * **benefitsiconstile, convert, readme:** fix and update render html ([0c08667](https://github.com/MegafonWebLab/megafon-ui/commit/0c086674f666a068e1c4fde4a1a615d26f225512))
2437
+
2438
+
2439
+
2440
+
2441
+
2442
+ # [2.0.0-beta.155](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.154...@megafon/ui-shared@2.0.0-beta.155) (2021-04-06)
2443
+
2444
+ **Note:** Version bump only for package @megafon/ui-shared
2445
+
2446
+
2447
+
2448
+
2449
+
2450
+ # [2.0.0-beta.154](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.153...@megafon/ui-shared@2.0.0-beta.154) (2021-04-02)
2451
+
2452
+ **Note:** Version bump only for package @megafon/ui-shared
2453
+
2454
+
2455
+
2456
+
2457
+
2458
+ # [2.0.0-beta.153](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.152...@megafon/ui-shared@2.0.0-beta.153) (2021-04-01)
2459
+
2460
+
2461
+ ### Features
2462
+
2463
+ * **steps:** delete convert from component ([5c51813](https://github.com/MegafonWebLab/megafon-ui/commit/5c51813f5a04cef4047608d85b1e69d9ede73b59))
2464
+
2465
+
2466
+ ### BREAKING CHANGES
2467
+
2468
+ * **steps:** Component does not support html in text property
2469
+
2470
+
2471
+
2472
+
2473
+
2474
+ # [2.0.0-beta.152](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.151...@megafon/ui-shared@2.0.0-beta.152) (2021-04-01)
2475
+
2476
+ **Note:** Version bump only for package @megafon/ui-shared
2477
+
2478
+
2479
+
2480
+
2481
+
2482
+ # [2.0.0-beta.151](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.150...@megafon/ui-shared@2.0.0-beta.151) (2021-03-30)
2483
+
2484
+ **Note:** Version bump only for package @megafon/ui-shared
2485
+
2486
+
2487
+
2488
+
2489
+
2490
+ # [2.0.0-beta.150](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.149...@megafon/ui-shared@2.0.0-beta.150) (2021-03-29)
2491
+
2492
+
2493
+ ### Features
2494
+
2495
+ * **videobanner:** add buttonColor prop ([c57813a](https://github.com/MegafonWebLab/megafon-ui/commit/c57813ad2c9747105e19579cb5038917279bf843))
2496
+
2497
+
2498
+
2499
+
2500
+
2501
+ # [2.0.0-beta.149](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.148...@megafon/ui-shared@2.0.0-beta.149) (2021-03-26)
2502
+
2503
+ **Note:** Version bump only for package @megafon/ui-shared
2504
+
2505
+
2506
+
2507
+
2508
+
2509
+ # [2.0.0-beta.148](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.147...@megafon/ui-shared@2.0.0-beta.148) (2021-03-26)
2510
+
2511
+
2512
+ ### Features
2513
+
2514
+ * **container:** add id and rootRef props ([3fe5faf](https://github.com/MegafonWebLab/megafon-ui/commit/3fe5fafb79ac79da419d6091fbbe2e93f83de67b))
2515
+
2516
+
2517
+
2518
+
2519
+
2520
+ # [2.0.0-beta.147](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.146...@megafon/ui-shared@2.0.0-beta.147) (2021-03-25)
2521
+
2522
+
2523
+ ### Features
2524
+
2525
+ * **titledescriptionbox:** extend type of description prop ([a934054](https://github.com/MegafonWebLab/megafon-ui/commit/a9340548fc3edea5b6b72db7bc538f97b7f4ea56))
2526
+
2527
+
2528
+
2529
+
2530
+
2531
+ # [2.0.0-beta.146](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.145...@megafon/ui-shared@2.0.0-beta.146) (2021-03-24)
2532
+
2533
+
2534
+ ### Features
2535
+
2536
+ * **package.json:** change swiper version to sync with ui-core ([99402bc](https://github.com/MegafonWebLab/megafon-ui/commit/99402bc3c63c12b0d8dfe21726f3e9c2c21196e7))
2537
+
2538
+
2539
+
2540
+
2541
+
2542
+ # [2.0.0-beta.145](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.144...@megafon/ui-shared@2.0.0-beta.145) (2021-03-24)
2543
+
2544
+ **Note:** Version bump only for package @megafon/ui-shared
2545
+
2546
+
2547
+
2548
+
2549
+
2550
+ # [2.0.0-beta.144](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.143...@megafon/ui-shared@2.0.0-beta.144) (2021-03-24)
2551
+
2552
+ **Note:** Version bump only for package @megafon/ui-shared
2553
+
2554
+
2555
+
2556
+
2557
+
2558
+ # [2.0.0-beta.143](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.142...@megafon/ui-shared@2.0.0-beta.143) (2021-03-24)
2559
+
2560
+ **Note:** Version bump only for package @megafon/ui-shared
2561
+
2562
+
2563
+
2564
+
2565
+
2566
+ # [2.0.0-beta.142](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.141...@megafon/ui-shared@2.0.0-beta.142) (2021-03-23)
2567
+
2568
+ **Note:** Version bump only for package @megafon/ui-shared
2569
+
2570
+
2571
+
2572
+
2573
+
2574
+ # [2.0.0-beta.141](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.140...@megafon/ui-shared@2.0.0-beta.141) (2021-03-23)
2575
+
2576
+
2577
+ ### Bug Fixes
2578
+
2579
+ * **package.json:** add neccesary module for shared package, remove unused module react-slick ([aa18476](https://github.com/MegafonWebLab/megafon-ui/commit/aa18476b192cfc207d15a3ea5614af19b0ff8963))
2580
+
2581
+
2582
+
2583
+
2584
+
2585
+ # [2.0.0-beta.140](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.139...@megafon/ui-shared@2.0.0-beta.140) (2021-03-23)
2586
+
2587
+
2588
+ ### Features
2589
+
2590
+ * **steps:** adds new component ([e467ecf](https://github.com/MegafonWebLab/megafon-ui/commit/e467ecfbbdaf0acc178eb4b2b9000ba4a1ef552d))
2591
+
2592
+
2593
+
2594
+
2595
+
2596
+ # [2.0.0-beta.139](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.138...@megafon/ui-shared@2.0.0-beta.139) (2021-03-22)
2597
+
2598
+ **Note:** Version bump only for package @megafon/ui-shared
2599
+
2600
+
2601
+
2602
+
2603
+
2604
+ # [2.0.0-beta.138](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.137...@megafon/ui-shared@2.0.0-beta.138) (2021-03-18)
2605
+
2606
+ **Note:** Version bump only for package @megafon/ui-shared
2607
+
2608
+
2609
+
2610
+
2611
+
2612
+ # [2.0.0-beta.137](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.136...@megafon/ui-shared@2.0.0-beta.137) (2021-03-18)
2613
+
2614
+ **Note:** Version bump only for package @megafon/ui-shared
2615
+
2616
+
2617
+
2618
+
2619
+
2620
+ # [2.0.0-beta.136](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.135...@megafon/ui-shared@2.0.0-beta.136) (2021-03-16)
2621
+
2622
+
2623
+ ### Bug Fixes
2624
+
2625
+ * **buttonbanner:** add white background-color ([0b201e3](https://github.com/MegafonWebLab/megafon-ui/commit/0b201e32fa56ab666ebfcf5903a3e75245e45cf5))
2626
+
2627
+
2628
+
2629
+
2630
+
2631
+ # [2.0.0-beta.135](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.134...@megafon/ui-shared@2.0.0-beta.135) (2021-03-16)
2632
+
2633
+ **Note:** Version bump only for package @megafon/ui-shared
2634
+
2635
+
2636
+
2637
+
2638
+
2639
+ # [2.0.0-beta.134](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.133...@megafon/ui-shared@2.0.0-beta.134) (2021-03-16)
2640
+
2641
+ **Note:** Version bump only for package @megafon/ui-shared
2642
+
2643
+
2644
+
2645
+
2646
+
2647
+ # [2.0.0-beta.133](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.132...@megafon/ui-shared@2.0.0-beta.133) (2021-03-15)
2648
+
2649
+ **Note:** Version bump only for package @megafon/ui-shared
2650
+
2651
+
2652
+
2653
+
2654
+
2655
+ # [2.0.0-beta.132](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.131...@megafon/ui-shared@2.0.0-beta.132) (2021-03-12)
2656
+
2657
+
2658
+ ### Features
2659
+
2660
+ * **container:** add className prop ([aab0332](https://github.com/MegafonWebLab/megafon-ui/commit/aab03324d44f04e5a5050b537b59e2705a2b1d4a))
2661
+
2662
+
2663
+
2664
+
2665
+
2666
+ # [2.0.0-beta.131](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.130...@megafon/ui-shared@2.0.0-beta.131) (2021-03-11)
2667
+
2668
+ **Note:** Version bump only for package @megafon/ui-shared
2669
+
2670
+
2671
+
2672
+
2673
+
2674
+ # [2.0.0-beta.130](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.129...@megafon/ui-shared@2.0.0-beta.130) (2021-03-11)
2675
+
2676
+ **Note:** Version bump only for package @megafon/ui-shared
2677
+
2678
+
2679
+
2680
+
2681
+
2682
+ # [2.0.0-beta.129](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.128...@megafon/ui-shared@2.0.0-beta.129) (2021-03-09)
2683
+
2684
+ **Note:** Version bump only for package @megafon/ui-shared
2685
+
2686
+
2687
+
2688
+
2689
+
2690
+ # [2.0.0-beta.128](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.127...@megafon/ui-shared@2.0.0-beta.128) (2021-03-09)
2691
+
2692
+
2693
+ ### Bug Fixes
2694
+
2695
+ * **partners:** fix images width in IE ([7c00c88](https://github.com/MegafonWebLab/megafon-ui/commit/7c00c88f9ae2f2da2b5b88e5447f7d5b7cdb8b6a))
2696
+ * **videobanner:** fix content width in ie, fix content height after link added ([f6951c7](https://github.com/MegafonWebLab/megafon-ui/commit/f6951c718b4268c199ae190fc0358e2ed1e43937))
2697
+
2698
+
2699
+
2700
+
2701
+
2702
+ # [2.0.0-beta.127](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.126...@megafon/ui-shared@2.0.0-beta.127) (2021-03-09)
2703
+
2704
+
2705
+ ### Features
2706
+
2707
+ * **buttonbanner:** add dataAttrs and classes props ([dfab775](https://github.com/MegafonWebLab/megafon-ui/commit/dfab7755102147e7e24dfc8a67d7a875faac583d))
2708
+ * **buttonbanner:** add rootRef prop ([931a9a3](https://github.com/MegafonWebLab/megafon-ui/commit/931a9a3c2205d4bb0a7a4a0fc12ccd7f22284d2e))
2709
+ * **buttonlinkbox:** add dataAttrs and classes props ([50b8bf8](https://github.com/MegafonWebLab/megafon-ui/commit/50b8bf80229366c2bc661a3ede5e3adbed68cd61))
2710
+ * **buttonlinkbox:** add rootRef prop ([f54b70a](https://github.com/MegafonWebLab/megafon-ui/commit/f54b70a69b406883d622b417555e0a823c44a1f1))
2711
+ * **card:** add dataAttrs and classes props ([a0b270f](https://github.com/MegafonWebLab/megafon-ui/commit/a0b270f9ebac60993ec31dca1f022f893bee1502))
2712
+ * **card:** add rootRef prop ([2d186d2](https://github.com/MegafonWebLab/megafon-ui/commit/2d186d2b5bac9c651b0a54d4631060f97407b2ce))
2713
+ * **instructions:** add rootRef prop ([2082e2d](https://github.com/MegafonWebLab/megafon-ui/commit/2082e2d66989311198cea765cf130005b0daf0d8))
2714
+ * **property:** add rootRef prop ([8fdad19](https://github.com/MegafonWebLab/megafon-ui/commit/8fdad194312ac19ea847daa9eb9b4b2f6524fccf))
2715
+ * **titledescriptionbox:** add dataAttrs prop ([3b3686a](https://github.com/MegafonWebLab/megafon-ui/commit/3b3686ae1304947f873b95d735f9269741ccb7f5))
2716
+ * **videobanner:** add dataAttrs and classes props ([1e44614](https://github.com/MegafonWebLab/megafon-ui/commit/1e4461471a02387e669688871fe8618ed79d8f29))
2717
+ * **videobanner:** add rootRef prop ([13a0046](https://github.com/MegafonWebLab/megafon-ui/commit/13a00463d729acc20a5094425e032512259e9f00))
2718
+ * **videoblock:** add dataAttrs and classes props ([2a5d0e2](https://github.com/MegafonWebLab/megafon-ui/commit/2a5d0e259d516769a757d90311a7a34ef09ddb57))
2719
+ * **videoblock:** add rootRef prop ([8e5069a](https://github.com/MegafonWebLab/megafon-ui/commit/8e5069a21a54b4a23f4629f4faa0b836d7bc99d6))
2720
+
2721
+
2722
+
2723
+
2724
+
2725
+ # [2.0.0-beta.126](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.125...@megafon/ui-shared@2.0.0-beta.126) (2021-03-05)
2726
+
2727
+ **Note:** Version bump only for package @megafon/ui-shared
2728
+
2729
+
2730
+
2731
+
2732
+
2733
+ # [2.0.0-beta.125](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.124...@megafon/ui-shared@2.0.0-beta.125) (2021-03-04)
2734
+
2735
+
2736
+ ### Features
2737
+
2738
+ * **benefitsicons:** added config for transfer html in text from prop text ([55ad15a](https://github.com/MegafonWebLab/megafon-ui/commit/55ad15a3fc331fddfda2c2d8d26fb3ba90e0f49f))
2739
+ * **convert:** add classname prop to returned component ([c76162a](https://github.com/MegafonWebLab/megafon-ui/commit/c76162a8b06a57025fe50019b5fa1b5ac3dceeb9))
2740
+
2741
+
2742
+
2743
+
2744
+
2745
+ # [2.0.0-beta.124](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.123...@megafon/ui-shared@2.0.0-beta.124) (2021-03-01)
2746
+
2747
+ **Note:** Version bump only for package @megafon/ui-shared
2748
+
2749
+
2750
+
2751
+
2752
+
2753
+ # [2.0.0-beta.123](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.122...@megafon/ui-shared@2.0.0-beta.123) (2021-02-26)
2754
+
2755
+
2756
+ ### Bug Fixes
2757
+
2758
+ * **button:** fix text vertical align ([fb9b9bb](https://github.com/MegafonWebLab/megafon-ui/commit/fb9b9bb09d6c4e257c65af4c6ccaf39987867638))
2759
+
2760
+
2761
+
2762
+
2763
+
2764
+ # [2.0.0-beta.122](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.121...@megafon/ui-shared@2.0.0-beta.122) (2021-02-26)
2765
+
2766
+
2767
+ ### Features
2768
+
2769
+ * **store banner:** adds new component ([ba48414](https://github.com/MegafonWebLab/megafon-ui/commit/ba48414ac86d356cfb8be17a2f64596f2d50833b))
2770
+
2771
+
2772
+
2773
+
2774
+
2775
+ # [2.0.0-beta.121](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.120...@megafon/ui-shared@2.0.0-beta.121) (2021-02-25)
2776
+
2777
+
2778
+ ### Features
2779
+
2780
+ * **accordionbox:** add className prop ([6d3e8e7](https://github.com/MegafonWebLab/megafon-ui/commit/6d3e8e7035ff8d4fe4bf4cab787a1d06d2a79faa))
2781
+
2782
+
2783
+
2784
+
2785
+
2786
+ # [2.0.0-beta.120](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.119...@megafon/ui-shared@2.0.0-beta.120) (2021-02-25)
2787
+
2788
+
2789
+ ### Features
2790
+
2791
+ * **buttonbanner:** create constructor component ([4d28f5b](https://github.com/MegafonWebLab/megafon-ui/commit/4d28f5bf23948cabb4fbb3967662d6c255f050d6))
2792
+ * **container:** add ButtonBanner component ([46fe66a](https://github.com/MegafonWebLab/megafon-ui/commit/46fe66a8860bfe03cb1251a863e4ea5bbebb2a48))
2793
+
2794
+
2795
+
2796
+
2797
+
2798
+ # [2.0.0-beta.119](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.118...@megafon/ui-shared@2.0.0-beta.119) (2021-02-19)
2799
+
2800
+ **Note:** Version bump only for package @megafon/ui-shared
2801
+
2802
+
2803
+
2804
+
2805
+
2806
+ # [2.0.0-beta.118](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.117...@megafon/ui-shared@2.0.0-beta.118) (2021-02-17)
2807
+
2808
+
2809
+ ### Features
2810
+
2811
+ * **videobanner:** adds prop for mobile content text color ([6eed9bb](https://github.com/MegafonWebLab/megafon-ui/commit/6eed9bbea39858368da677774d4236fde8040a4e))
2812
+
2813
+
2814
+
2815
+
2816
+
2817
+ # [2.0.0-beta.117](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.116...@megafon/ui-shared@2.0.0-beta.117) (2021-02-17)
2818
+
2819
+ **Note:** Version bump only for package @megafon/ui-shared
2820
+
2821
+
2822
+
2823
+
2824
+
2825
+ # [2.0.0-beta.116](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.115...@megafon/ui-shared@2.0.0-beta.116) (2021-02-15)
2826
+
2827
+ **Note:** Version bump only for package @megafon/ui-shared
2828
+
2829
+
2830
+
2831
+
2832
+
2833
+ # [2.0.0-beta.115](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.114...@megafon/ui-shared@2.0.0-beta.115) (2021-02-12)
2834
+
2835
+ **Note:** Version bump only for package @megafon/ui-shared
2836
+
2837
+
2838
+
2839
+
2840
+
2841
+ # [2.0.0-beta.114](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.113...@megafon/ui-shared@2.0.0-beta.114) (2021-02-12)
2842
+
2843
+
2844
+ ### Features
2845
+
2846
+ * **videobanner:** adds text with coast and link in content block ([6d14f24](https://github.com/MegafonWebLab/megafon-ui/commit/6d14f24c1cf9289ed3aba0b74b494e422a546ddc))
2847
+
2848
+
2849
+ ### BREAKING CHANGES
2850
+
2851
+ * **videobanner:** Prop for button url was changed from 'href' to 'buttonHref'.
2852
+
2853
+
2854
+
2855
+
2856
+
2857
+ # [2.0.0-beta.113](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.112...@megafon/ui-shared@2.0.0-beta.113) (2021-02-12)
2858
+
2859
+
2860
+ ### Bug Fixes
2861
+
2862
+ * **instructions:** fix styles ([a826427](https://github.com/MegafonWebLab/megafon-ui/commit/a8264272c700e636805370adfec8b96c4a655d00))
2863
+
2864
+
2865
+
2866
+
2867
+
2868
+ # [2.0.0-beta.112](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.111...@megafon/ui-shared@2.0.0-beta.112) (2021-02-12)
2869
+
2870
+
2871
+ ### Features
2872
+
2873
+ * **accordionbox:** add prop - hasVerticalPaddings ([04d4be8](https://github.com/MegafonWebLab/megafon-ui/commit/04d4be8d698276e3e286c6a0ad93b333fa95ef52))
2874
+
2875
+
2876
+
2877
+
2878
+
2879
+ # [2.0.0-beta.111](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.110...@megafon/ui-shared@2.0.0-beta.111) (2021-02-10)
2880
+
2881
+ **Note:** Version bump only for package @megafon/ui-shared
2882
+
2883
+
2884
+
2885
+
2886
+
2887
+ # [2.0.0-beta.110](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.109...@megafon/ui-shared@2.0.0-beta.110) (2021-02-10)
2888
+
2889
+
2890
+ ### Features
2891
+
2892
+ * **videobanner:** added content text color prop, added image props for all resolutions ([a0799ff](https://github.com/MegafonWebLab/megafon-ui/commit/a0799ff06f8337d2f4d2669153aadeb6ee88e424))
2893
+
2894
+
2895
+ ### BREAKING CHANGES
2896
+
2897
+ * **videobanner:** Removed image prop as an object. Added separate image props for each resolution.
2898
+
2899
+
2900
+
2901
+
2902
+
2903
+ # [2.0.0-beta.109](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.108...@megafon/ui-shared@2.0.0-beta.109) (2021-02-10)
2904
+
2905
+
2906
+ ### Bug Fixes
2907
+
2908
+ * **accordionbox:** add styles for used inside components (accordion, property) ([c39e346](https://github.com/MegafonWebLab/megafon-ui/commit/c39e34692621b5bdf0f90eb3f6fd8dbaa7121518))
2909
+
2910
+
2911
+
2912
+
2913
+
2914
+ # [2.0.0-beta.108](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.107...@megafon/ui-shared@2.0.0-beta.108) (2021-02-09)
2915
+
2916
+ **Note:** Version bump only for package @megafon/ui-shared
2917
+
2918
+
2919
+
2920
+
2921
+
2922
+ # [2.0.0-beta.107](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.106...@megafon/ui-shared@2.0.0-beta.107) (2021-02-09)
2923
+
2924
+
2925
+ ### Bug Fixes
2926
+
2927
+ * **convert:** typographic config is defined by the component ([fbac681](https://github.com/MegafonWebLab/megafon-ui/commit/fbac6810730cb4352568c20120374e7c374a9c23))
2928
+
2929
+
2930
+
2931
+
2932
+
2933
+ # [2.0.0-beta.106](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.105...@megafon/ui-shared@2.0.0-beta.106) (2021-02-09)
2934
+
2935
+ **Note:** Version bump only for package @megafon/ui-shared
2936
+
2937
+
2938
+
2939
+
2940
+
2941
+ # [2.0.0-beta.105](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.104...@megafon/ui-shared@2.0.0-beta.105) (2021-02-08)
2942
+
2943
+ **Note:** Version bump only for package @megafon/ui-shared
2944
+
2945
+
2946
+
2947
+
2948
+
2949
+ # [2.0.0-beta.104](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.103...@megafon/ui-shared@2.0.0-beta.104) (2021-02-08)
2950
+
2951
+ **Note:** Version bump only for package @megafon/ui-shared
2952
+
2953
+
2954
+
2955
+
2956
+
2957
+ # [2.0.0-beta.103](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.102...@megafon/ui-shared@2.0.0-beta.103) (2021-02-04)
2958
+
2959
+
2960
+ ### Bug Fixes
2961
+
2962
+ * **benefitsicons:** fix cn parameter passing ([b6f15ba](https://github.com/MegafonWebLab/megafon-ui/commit/b6f15bac92e8e5f9665d79835b9069038c3f1a08))
2963
+
2964
+
2965
+
2966
+
2967
+
2968
+ # [2.0.0-beta.102](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.101...@megafon/ui-shared@2.0.0-beta.102) (2021-02-02)
2969
+
2970
+
2971
+ ### Features
2972
+
2973
+ * **card:** add isFullHeight prop ([6e5b927](https://github.com/MegafonWebLab/megafon-ui/commit/6e5b927c9909c57f01c54477c2a67c9b9b1f73e1))
2974
+
2975
+
2976
+
2977
+
2978
+
2979
+ # [2.0.0-beta.101](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.100...@megafon/ui-shared@2.0.0-beta.101) (2021-02-02)
2980
+
2981
+ **Note:** Version bump only for package @megafon/ui-shared
2982
+
2983
+
2984
+
2985
+
2986
+
2987
+ # [2.0.0-beta.100](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.99...@megafon/ui-shared@2.0.0-beta.100) (2021-01-29)
2988
+
2989
+ **Note:** Version bump only for package @megafon/ui-shared
2990
+
2991
+
2992
+
2993
+
2994
+
2995
+ # [2.0.0-beta.99](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.98...@megafon/ui-shared@2.0.0-beta.99) (2021-01-29)
2996
+
2997
+ **Note:** Version bump only for package @megafon/ui-shared
2998
+
2999
+
3000
+
3001
+
3002
+
3003
+ # [2.0.0-beta.98](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.97...@megafon/ui-shared@2.0.0-beta.98) (2021-01-29)
3004
+
3005
+ **Note:** Version bump only for package @megafon/ui-shared
3006
+
3007
+
3008
+
3009
+
3010
+
3011
+ # [2.0.0-beta.97](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.96...@megafon/ui-shared@2.0.0-beta.97) (2021-01-28)
3012
+
3013
+ **Note:** Version bump only for package @megafon/ui-shared
3014
+
3015
+
3016
+
3017
+
3018
+
3019
+ # [2.0.0-beta.96](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.95...@megafon/ui-shared@2.0.0-beta.96) (2021-01-26)
3020
+
3021
+ **Note:** Version bump only for package @megafon/ui-shared
3022
+
3023
+
3024
+
3025
+
3026
+
3027
+ # [2.0.0-beta.95](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.94...@megafon/ui-shared@2.0.0-beta.95) (2021-01-26)
3028
+
3029
+ **Note:** Version bump only for package @megafon/ui-shared
3030
+
3031
+
3032
+
3033
+
3034
+
3035
+ # [2.0.0-beta.94](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.93...@megafon/ui-shared@2.0.0-beta.94) (2021-01-22)
3036
+
3037
+ **Note:** Version bump only for package @megafon/ui-shared
3038
+
3039
+
3040
+
3041
+
3042
+
3043
+ # [2.0.0-beta.93](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.92...@megafon/ui-shared@2.0.0-beta.93) (2021-01-22)
3044
+
3045
+ **Note:** Version bump only for package @megafon/ui-shared
3046
+
3047
+
3048
+
3049
+
3050
+
3051
+ # [2.0.0-beta.92](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.91...@megafon/ui-shared@2.0.0-beta.92) (2021-01-22)
3052
+
3053
+
3054
+ ### Bug Fixes
3055
+
3056
+ * **table:** possible empty table cell, correctly showed shadow in table ([6f69629](https://github.com/MegafonWebLab/megafon-ui/commit/6f69629ca10182ab9904fd6eced61148955940e8))
3057
+
3058
+
3059
+
3060
+
3061
+
3062
+ # [2.0.0-beta.91](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.90...@megafon/ui-shared@2.0.0-beta.91) (2021-01-14)
3063
+
3064
+
3065
+ ### Features
3066
+
3067
+ * **cards box:** added new component ([1834169](https://github.com/MegafonWebLab/megafon-ui/commit/18341692c2de37cf25a14d34ae063acc6c8aae57))
3068
+ * **container:** edit component classes ([9ab5d09](https://github.com/MegafonWebLab/megafon-ui/commit/9ab5d09d793e4cf8325d729f9157a5b42aefeca5))
3069
+
3070
+
3071
+
3072
+
3073
+
3074
+ # [2.0.0-beta.90](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.89...@megafon/ui-shared@2.0.0-beta.90) (2021-01-14)
3075
+
3076
+
3077
+ ### Documentation
3078
+
3079
+ * **component - productswitcher, producttile:** remove components ([20a135e](https://github.com/MegafonWebLab/megafon-ui/commit/20a135e64c858400b7935ad0ac38235c81e67ba7))
3080
+
3081
+
3082
+ ### BREAKING CHANGES
3083
+
3084
+ * **component - productswitcher, producttile:** destruction of public components
3085
+
3086
+
3087
+
3088
+
3089
+
3090
+ # [2.0.0-beta.89](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.88...@megafon/ui-shared@2.0.0-beta.89) (2021-01-13)
3091
+
3092
+ **Note:** Version bump only for package @megafon/ui-shared
3093
+
3094
+
3095
+
3096
+
3097
+
3098
+ # [2.0.0-beta.88](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.87...@megafon/ui-shared@2.0.0-beta.88) (2021-01-12)
3099
+
3100
+
3101
+ ### Features
3102
+
3103
+ * **picturewithdescription:** add component ([29db33d](https://github.com/MegafonWebLab/megafon-ui/commit/29db33dfab11772912ef3668d4b93833e368204e))
3104
+
3105
+
3106
+
3107
+
3108
+
3109
+ # [2.0.0-beta.87](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.86...@megafon/ui-shared@2.0.0-beta.87) (2021-01-12)
3110
+
3111
+ **Note:** Version bump only for package @megafon/ui-shared
3112
+
3113
+
3114
+
3115
+
3116
+
3117
+ # [2.0.0-beta.86](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.85...@megafon/ui-shared@2.0.0-beta.86) (2021-01-12)
3118
+
3119
+
3120
+ ### Bug Fixes
3121
+
3122
+ * **downloadlink:** add explicit dimensions to svg icon ([01e0493](https://github.com/MegafonWebLab/megafon-ui/commit/01e04931ed40b39ff9076db7dc572f5cbd9f0edb))
3123
+
3124
+
3125
+
3126
+
3127
+
3128
+ # [2.0.0-beta.85](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.84...@megafon/ui-shared@2.0.0-beta.85) (2021-01-11)
3129
+
3130
+
3131
+ ### Bug Fixes
3132
+
3133
+ * **property:** fix tests ([ad7f955](https://github.com/MegafonWebLab/megafon-ui/commit/ad7f95502c366c9cfe96bdbe30e17aa7b6b863e4))
3134
+
3135
+
3136
+ ### Features
3137
+
3138
+ * **property:** add new component Property ([f14775b](https://github.com/MegafonWebLab/megafon-ui/commit/f14775bef0db3b61d5cbcf8058ed8035288767ce))
3139
+
3140
+
3141
+
3142
+
3143
+
3144
+ # [2.0.0-beta.84](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.83...@megafon/ui-shared@2.0.0-beta.84) (2020-12-25)
3145
+
3146
+
3147
+ ### Features
3148
+
3149
+ * **download links:** added new component ([bee5ac4](https://github.com/MegafonWebLab/megafon-ui/commit/bee5ac48d2ad2a506bf38f44e64e21672b540cd7))
3150
+
3151
+
3152
+
3153
+
3154
+
3155
+ # [2.0.0-beta.83](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.82...@megafon/ui-shared@2.0.0-beta.83) (2020-12-24)
3156
+
3157
+ **Note:** Version bump only for package @megafon/ui-shared
3158
+
3159
+
3160
+
3161
+
3162
+
3163
+ # [2.0.0-beta.82](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.81...@megafon/ui-shared@2.0.0-beta.82) (2020-12-23)
3164
+
3165
+
3166
+ ### Features
3167
+
3168
+ * **container:** added margins in container for textbox component ([f61dca5](https://github.com/MegafonWebLab/megafon-ui/commit/f61dca5524b03a92b1543f81261e3cc9283fc3d6))
3169
+ * **textbox:** added TextBox component ([9a98038](https://github.com/MegafonWebLab/megafon-ui/commit/9a98038afef89759e9aef95f6c2e056e7bf01f61))
3170
+
3171
+
3172
+
3173
+
3174
+
3175
+ # [2.0.0-beta.81](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.80...@megafon/ui-shared@2.0.0-beta.81) (2020-12-22)
3176
+
3177
+ **Note:** Version bump only for package @megafon/ui-shared
3178
+
3179
+
3180
+
3181
+
3182
+
3183
+ # [2.0.0-beta.80](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.79...@megafon/ui-shared@2.0.0-beta.80) (2020-12-22)
3184
+
3185
+
3186
+ ### Features
3187
+
3188
+ * **instructions:** add component ([c79ab27](https://github.com/MegafonWebLab/megafon-ui/commit/c79ab2734f2cefef6386ffe9ccd306af9f1a986e))
3189
+
3190
+
3191
+
3192
+
3193
+
3194
+ # [2.0.0-beta.79](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.78...@megafon/ui-shared@2.0.0-beta.79) (2020-12-18)
3195
+
3196
+
3197
+ ### Features
3198
+
3199
+ * **partners:** add new component ([e67bf41](https://github.com/MegafonWebLab/megafon-ui/commit/e67bf41ce90e0149110a12757f22966f6a0b3945))
3200
+
3201
+
3202
+
3203
+
3204
+
3205
+ # [2.0.0-beta.78](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.77...@megafon/ui-shared@2.0.0-beta.78) (2020-12-18)
3206
+
3207
+
3208
+ ### Features
3209
+
3210
+ * **buttonlinkbox:** add click handlers to props ([19b1072](https://github.com/MegafonWebLab/megafon-ui/commit/19b10720147c86755c8c6d3b25384c8a5cc7cb89))
3211
+
3212
+
3213
+
3214
+
3215
+
3216
+ # [2.0.0-beta.77](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.76...@megafon/ui-shared@2.0.0-beta.77) (2020-12-17)
3217
+
3218
+
3219
+ ### Bug Fixes
3220
+
3221
+ * **carouselbox:** fix tests ([d95cc71](https://github.com/MegafonWebLab/megafon-ui/commit/d95cc711d6c0f1b624acaf490b55f67d2bcc1531))
3222
+
3223
+
3224
+ ### Features
3225
+
3226
+ * **carouselbox:** add carouselbox component ([6bb6613](https://github.com/MegafonWebLab/megafon-ui/commit/6bb66136e4cfa770b86b9f9e82b09b2ebfb48a17))
3227
+
3228
+
3229
+
3230
+
3231
+
3232
+ # [2.0.0-beta.76](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.75...@megafon/ui-shared@2.0.0-beta.76) (2020-12-17)
3233
+
3234
+ **Note:** Version bump only for package @megafon/ui-shared
3235
+
3236
+
3237
+
3238
+
3239
+
3240
+ # [2.0.0-beta.75](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.74...@megafon/ui-shared@2.0.0-beta.75) (2020-12-17)
3241
+
3242
+
3243
+ ### Code Refactoring
3244
+
3245
+ * **videobanner:** added fixes ([fd83bf7](https://github.com/MegafonWebLab/megafon-ui/commit/fd83bf7c9c4e0a49375d16d11dc76d2ebc13f2c5))
3246
+
3247
+
3248
+ ### BREAKING CHANGES
3249
+
3250
+ * **videobanner:** desktop image prop is not required
3251
+
3252
+
3253
+
3254
+
3255
+
3256
+ # [2.0.0-beta.74](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.73...@megafon/ui-shared@2.0.0-beta.74) (2020-12-17)
3257
+
3258
+ **Note:** Version bump only for package @megafon/ui-shared
3259
+
3260
+
3261
+
3262
+
3263
+
3264
+ # [2.0.0-beta.73](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.72...@megafon/ui-shared@2.0.0-beta.73) (2020-12-17)
3265
+
3266
+ **Note:** Version bump only for package @megafon/ui-shared
3267
+
3268
+
3269
+
3270
+
3271
+
3272
+ # [2.0.0-beta.72](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.71...@megafon/ui-shared@2.0.0-beta.72) (2020-12-16)
3273
+
3274
+ **Note:** Version bump only for package @megafon/ui-shared
3275
+
3276
+
3277
+
3278
+
3279
+
3280
+ # [2.0.0-beta.71](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.70...@megafon/ui-shared@2.0.0-beta.71) (2020-12-16)
3281
+
3282
+
3283
+ ### Features
3284
+
3285
+ * **card:** added new component ([1652f9b](https://github.com/MegafonWebLab/megafon-ui/commit/1652f9b293f682e1c0e6134c0091a61767922787))
3286
+
3287
+
3288
+
3289
+
3290
+
3291
+ # [2.0.0-beta.70](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.69...@megafon/ui-shared@2.0.0-beta.70) (2020-12-15)
3292
+
3293
+ **Note:** Version bump only for package @megafon/ui-shared
3294
+
3295
+
3296
+
3297
+
3298
+
3299
+ # [2.0.0-beta.69](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.68...@megafon/ui-shared@2.0.0-beta.69) (2020-12-15)
3300
+
3301
+ **Note:** Version bump only for package @megafon/ui-shared
3302
+
3303
+
3304
+
3305
+
3306
+
3307
+ # [2.0.0-beta.68](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.67...@megafon/ui-shared@2.0.0-beta.68) (2020-12-11)
3308
+
3309
+ **Note:** Version bump only for package @megafon/ui-shared
3310
+
3311
+
3312
+
3313
+
3314
+
3315
+ # [2.0.0-beta.67](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.66...@megafon/ui-shared@2.0.0-beta.67) (2020-12-10)
3316
+
3317
+ **Note:** Version bump only for package @megafon/ui-shared
3318
+
3319
+
3320
+
3321
+
3322
+
3323
+ # [2.0.0-beta.66](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.65...@megafon/ui-shared@2.0.0-beta.66) (2020-12-10)
3324
+
3325
+
3326
+ ### Features
3327
+
3328
+ * **component:** add BannerBox component ([25f1c7d](https://github.com/MegafonWebLab/megafon-ui/commit/25f1c7d639945b1a1eb27ca8d1ee888b8f5112eb))
3329
+
3330
+
3331
+
3332
+
3333
+
3334
+ # [2.0.0-beta.65](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.64...@megafon/ui-shared@2.0.0-beta.65) (2020-12-10)
3335
+
3336
+
3337
+ ### Features
3338
+
3339
+ * **tabsbox:** add new constructor component ([68101d4](https://github.com/MegafonWebLab/megafon-ui/commit/68101d439e9c0b3edd3d868070f5318b50760d0e))
3340
+
3341
+
3342
+
3343
+
3344
+
3345
+ # [2.0.0-beta.64](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.63...@megafon/ui-shared@2.0.0-beta.64) (2020-12-08)
3346
+
3347
+
3348
+ ### Features
3349
+
3350
+ * **table:** add new component ([6b12c15](https://github.com/MegafonWebLab/megafon-ui/commit/6b12c151422ec5d50770d1b3a0abfbf8f577e183))
3351
+
3352
+
3353
+
3354
+
3355
+
3356
+ # [2.0.0-beta.63](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.62...@megafon/ui-shared@2.0.0-beta.63) (2020-12-07)
3357
+
3358
+
3359
+ ### Code Refactoring
3360
+
3361
+ * **component - dropdownsociallist and producttalerest, folder - productcard:** remove component ([574e074](https://github.com/MegafonWebLab/megafon-ui/commit/574e074537cd2d9dcde5b3cffbbc8145d33aea49))
3362
+
3363
+
3364
+ ### BREAKING CHANGES
3365
+
3366
+ * **component - dropdownsociallist and producttalerest, folder - productcard:** destruction of public components
3367
+
3368
+
3369
+
3370
+
3371
+
3372
+ # [2.0.0-beta.62](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.61...@megafon/ui-shared@2.0.0-beta.62) (2020-12-04)
3373
+
3374
+ **Note:** Version bump only for package @megafon/ui-shared
3375
+
3376
+
3377
+
3378
+
3379
+
3380
+ # [2.0.0-beta.61](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.60...@megafon/ui-shared@2.0.0-beta.61) (2020-12-04)
3381
+
3382
+ **Note:** Version bump only for package @megafon/ui-shared
3383
+
3384
+
3385
+
3386
+
3387
+
3388
+ # [2.0.0-beta.60](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.59...@megafon/ui-shared@2.0.0-beta.60) (2020-12-04)
3389
+
3390
+
3391
+ ### Features
3392
+
3393
+ * **container:** added new component ([af99c06](https://github.com/MegafonWebLab/megafon-ui/commit/af99c06bcf279ae093789064b95d7f7ecaf44b8b))
3394
+
3395
+
3396
+
3397
+
3398
+
3399
+ # [2.0.0-beta.59](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.58...@megafon/ui-shared@2.0.0-beta.59) (2020-12-03)
3400
+
3401
+ **Note:** Version bump only for package @megafon/ui-shared
3402
+
3403
+
3404
+
3405
+
3406
+
3407
+ # [2.0.0-beta.58](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.57...@megafon/ui-shared@2.0.0-beta.58) (2020-12-01)
3408
+
3409
+ **Note:** Version bump only for package @megafon/ui-shared
3410
+
3411
+
3412
+
3413
+
3414
+
3415
+ # [2.0.0-beta.57](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.56...@megafon/ui-shared@2.0.0-beta.57) (2020-12-01)
3416
+
3417
+ **Note:** Version bump only for package @megafon/ui-shared
3418
+
3419
+
3420
+
3421
+
3422
+
3423
+ # [2.0.0-beta.56](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.55...@megafon/ui-shared@2.0.0-beta.56) (2020-11-30)
3424
+
3425
+ **Note:** Version bump only for package @megafon/ui-shared
3426
+
3427
+
3428
+
3429
+
3430
+
3431
+ # [2.0.0-beta.55](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.54...@megafon/ui-shared@2.0.0-beta.55) (2020-11-27)
3432
+
3433
+ **Note:** Version bump only for package @megafon/ui-shared
3434
+
3435
+
3436
+
3437
+
3438
+
3439
+ # [2.0.0-beta.54](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.53...@megafon/ui-shared@2.0.0-beta.54) (2020-11-25)
3440
+
3441
+ **Note:** Version bump only for package @megafon/ui-shared
3442
+
3443
+
3444
+
3445
+
3446
+
3447
+ # [2.0.0-beta.53](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.52...@megafon/ui-shared@2.0.0-beta.53) (2020-11-25)
3448
+
3449
+
3450
+ ### Bug Fixes
3451
+
3452
+ * **breakpoints:** import files from constants is fixed ([8e3baa5](https://github.com/MegafonWebLab/megafon-ui/commit/8e3baa55eed164c3732d59bac8da76bd04a39dfb))
3453
+
3454
+
3455
+
3456
+
3457
+
3458
+ # [2.0.0-beta.52](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.51...@megafon/ui-shared@2.0.0-beta.52) (2020-11-25)
3459
+
3460
+ **Note:** Version bump only for package @megafon/ui-shared
3461
+
3462
+
3463
+
3464
+
3465
+
3466
+ # [2.0.0-beta.51](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.50...@megafon/ui-shared@2.0.0-beta.51) (2020-11-24)
3467
+
3468
+ **Note:** Version bump only for package @megafon/ui-shared
3469
+
3470
+
3471
+
3472
+
3473
+
3474
+ # [2.0.0-beta.50](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.49...@megafon/ui-shared@2.0.0-beta.50) (2020-11-23)
3475
+
3476
+ **Note:** Version bump only for package @megafon/ui-shared
3477
+
3478
+
3479
+
3480
+
3481
+
3482
+ # [2.0.0-beta.49](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.48...@megafon/ui-shared@2.0.0-beta.49) (2020-11-23)
3483
+
3484
+ **Note:** Version bump only for package @megafon/ui-shared
3485
+
3486
+
3487
+
3488
+
3489
+
3490
+ # [2.0.0-beta.48](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.47...@megafon/ui-shared@2.0.0-beta.48) (2020-11-23)
3491
+
3492
+
3493
+ ### Bug Fixes
3494
+
3495
+ * **videobanner:** update snaphots after rebase ([af00664](https://github.com/MegafonWebLab/megafon-ui/commit/af00664a96e12949c6259fc3c2e8cbc3ace72972))
3496
+
3497
+
3498
+
3499
+
3500
+
3501
+ # [2.0.0-beta.47](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.46...@megafon/ui-shared@2.0.0-beta.47) (2020-11-20)
3502
+
3503
+ **Note:** Version bump only for package @megafon/ui-shared
3504
+
3505
+
3506
+
3507
+
3508
+
3509
+ # [2.0.0-beta.46](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.45...@megafon/ui-shared@2.0.0-beta.46) (2020-11-20)
3510
+
3511
+
3512
+ ### Features
3513
+
3514
+ * **videoblock:** added autoplay prop ([22493e7](https://github.com/MegafonWebLab/megafon-ui/commit/22493e7a452e32bea859c245ac07b2ce4f87dfe4))
3515
+
3516
+
3517
+ ### BREAKING CHANGES
3518
+
3519
+ * **videoblock:** The video was autoplayed by default. Now added prop "isAutoplay".
3520
+
3521
+
3522
+
3523
+
3524
+
3525
+ # [2.0.0-beta.45](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.44...@megafon/ui-shared@2.0.0-beta.45) (2020-11-20)
3526
+
3527
+ **Note:** Version bump only for package @megafon/ui-shared
3528
+
3529
+
3530
+
3531
+
3532
+
3533
+ # [2.0.0-beta.44](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.43...@megafon/ui-shared@2.0.0-beta.44) (2020-11-20)
3534
+
3535
+ **Note:** Version bump only for package @megafon/ui-shared
3536
+
3537
+
3538
+
3539
+
3540
+
3541
+ # [2.0.0-beta.43](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.42...@megafon/ui-shared@2.0.0-beta.43) (2020-11-19)
3542
+
3543
+ **Note:** Version bump only for package @megafon/ui-shared
3544
+
3545
+
3546
+
3547
+
3548
+
3549
+ # [2.0.0-beta.42](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.41...@megafon/ui-shared@2.0.0-beta.42) (2020-11-18)
3550
+
3551
+ **Note:** Version bump only for package @megafon/ui-shared
3552
+
3553
+
3554
+
3555
+
3556
+
3557
+ # [2.0.0-beta.41](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.40...@megafon/ui-shared@2.0.0-beta.41) (2020-11-16)
3558
+
3559
+ **Note:** Version bump only for package @megafon/ui-shared
3560
+
3561
+
3562
+
3563
+
3564
+
3565
+ # [2.0.0-beta.40](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.39...@megafon/ui-shared@2.0.0-beta.40) (2020-11-10)
3566
+
3567
+
3568
+ ### Features
3569
+
3570
+ * **accordionbox:** add component AccordionBox to constructor ([7bf5029](https://github.com/MegafonWebLab/megafon-ui/commit/7bf5029d5dc35d430a254e194a43ffa6b977fd88))
3571
+
3572
+
3573
+
3574
+
3575
+
3576
+ # [2.0.0-beta.39](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.38...@megafon/ui-shared@2.0.0-beta.39) (2020-11-10)
3577
+
3578
+ **Note:** Version bump only for package @megafon/ui-shared
3579
+
3580
+
3581
+
3582
+
3583
+
3584
+ # [2.0.0-beta.38](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.37...@megafon/ui-shared@2.0.0-beta.38) (2020-11-09)
3585
+
3586
+ **Note:** Version bump only for package @megafon/ui-shared
3587
+
3588
+
3589
+
3590
+
3591
+
3592
+ # [2.0.0-beta.37](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.36...@megafon/ui-shared@2.0.0-beta.37) (2020-11-06)
3593
+
3594
+ **Note:** Version bump only for package @megafon/ui-shared
3595
+
3596
+
3597
+
3598
+
3599
+
3600
+ # [2.0.0-beta.36](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.35...@megafon/ui-shared@2.0.0-beta.36) (2020-11-03)
3601
+
3602
+ **Note:** Version bump only for package @megafon/ui-shared
3603
+
3604
+
3605
+
3606
+
3607
+
3608
+ # [2.0.0-beta.35](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.34...@megafon/ui-shared@2.0.0-beta.35) (2020-11-03)
3609
+
3610
+
3611
+ ### Features
3612
+
3613
+ * **video banner:** add new component ([291c9c2](https://github.com/MegafonWebLab/megafon-ui/commit/291c9c277ff99029cccec5f5f9b02ff4f3929e41))
3614
+
3615
+
3616
+
3617
+
3618
+
3619
+ # [2.0.0-beta.34](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.33...@megafon/ui-shared@2.0.0-beta.34) (2020-11-02)
3620
+
3621
+
3622
+ ### Bug Fixes
3623
+
3624
+ * **productcard:** replace BubbleHint with Tooltip in ProductCardInfo component ([5a2491d](https://github.com/MegafonWebLab/megafon-ui/commit/5a2491d698c9feee7af1c199907d38ac60e31d71))
3625
+ * **producttile:** component height changes when hint-text node change its border visibility ([5bb16de](https://github.com/MegafonWebLab/megafon-ui/commit/5bb16de3cfc738454bd220acea06bbcc4a6546d5))
3626
+ * **producttile:** switched from BubbleHint to new Tooltip in ProductTileOptions component ([674c158](https://github.com/MegafonWebLab/megafon-ui/commit/674c15816ed5fe2ec462974db739a6a75ac6cacd))
3627
+
3628
+
3629
+
3630
+
3631
+
3632
+
3633
+ # [2.0.0-beta.33](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.32...@megafon/ui-shared@2.0.0-beta.33) (2020-11-02)
3634
+
3635
+ **Note:** Version bump only for package @megafon/ui-shared
3636
+
3637
+
3638
+
3639
+
3640
+
3641
+ # [2.0.0-beta.32](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.31...@megafon/ui-shared@2.0.0-beta.32) (2020-11-02)
3642
+
3643
+
3644
+ ### Features
3645
+
3646
+ * **video block:** add a new component ([58e857e](https://github.com/MegafonWebLab/megafon-ui/commit/58e857e6584d65c3c85c48f4493a91d868dc5fcb))
3647
+
3648
+
3649
+
3650
+
3651
+
3652
+ # [2.0.0-beta.31](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.30...@megafon/ui-shared@2.0.0-beta.31) (2020-11-01)
3653
+
3654
+ **Note:** Version bump only for package @megafon/ui-shared
3655
+
3656
+
3657
+
3658
+
3659
+
3660
+ # [2.0.0-beta.30](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.29...@megafon/ui-shared@2.0.0-beta.30) (2020-10-30)
3661
+
3662
+ **Note:** Version bump only for package @megafon/ui-shared
3663
+
3664
+
3665
+
3666
+
3667
+
3668
+ # [2.0.0-beta.29](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.28...@megafon/ui-shared@2.0.0-beta.29) (2020-10-30)
3669
+
3670
+ **Note:** Version bump only for package @megafon/ui-shared
3671
+
3672
+
3673
+
3674
+
3675
+
3676
+ # [2.0.0-beta.28](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.27...@megafon/ui-shared@2.0.0-beta.28) (2020-10-29)
3677
+
3678
+
3679
+ ### Bug Fixes
3680
+
3681
+ * **build:** remove icon property from svgr config ([812bc9f](https://github.com/MegafonWebLab/megafon-ui/commit/812bc9fbbea617edbd56e28b6618654876229924))
3682
+
3683
+
3684
+
3685
+
3686
+
3687
+ # [2.0.0-beta.27](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.26...@megafon/ui-shared@2.0.0-beta.27) (2020-10-29)
3688
+
3689
+ **Note:** Version bump only for package @megafon/ui-shared
3690
+
3691
+
3692
+
3693
+
3694
+
3695
+ # [2.0.0-beta.26](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.25...@megafon/ui-shared@2.0.0-beta.26) (2020-10-26)
3696
+
3697
+ **Note:** Version bump only for package @megafon/ui-shared
3698
+
3699
+
3700
+
3701
+
3702
+
3703
+ # [2.0.0-beta.25](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.24...@megafon/ui-shared@2.0.0-beta.25) (2020-10-12)
3704
+
3705
+ **Note:** Version bump only for package @megafon/ui-shared
3706
+
3707
+
3708
+
3709
+
3710
+
3711
+ # [2.0.0-beta.24](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.23...@megafon/ui-shared@2.0.0-beta.24) (2020-10-02)
3712
+
3713
+
3714
+ ### Features
3715
+
3716
+ * **benefits with a picture:** added new component ([eef03e8](https://github.com/MegafonWebLab/megafon-ui/commit/eef03e8fce4431844aa7d47be965d5b3204fad28))
3717
+
3718
+
3719
+
3720
+
3721
+
3722
+ # [2.0.0-beta.23](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.22...@megafon/ui-shared@2.0.0-beta.23) (2020-10-02)
3723
+
3724
+ **Note:** Version bump only for package @megafon/ui-shared
3725
+
3726
+
3727
+
3728
+
3729
+
3730
+ # [2.0.0-beta.22](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.21...@megafon/ui-shared@2.0.0-beta.22) (2020-10-01)
3731
+
3732
+ **Note:** Version bump only for package @megafon/ui-shared
3733
+
3734
+
3735
+
3736
+
3737
+
3738
+ # [2.0.0-beta.21](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.20...@megafon/ui-shared@2.0.0-beta.21) (2020-09-29)
3739
+
3740
+ **Note:** Version bump only for package @megafon/ui-shared
3741
+
3742
+
3743
+
3744
+
3745
+
3746
+ # [2.0.0-beta.20](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.19...@megafon/ui-shared@2.0.0-beta.20) (2020-09-25)
3747
+
3748
+ **Note:** Version bump only for package @megafon/ui-shared
3749
+
3750
+
3751
+
3752
+
3753
+
3754
+ # [2.0.0-beta.19](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.18...@megafon/ui-shared@2.0.0-beta.19) (2020-09-25)
3755
+
3756
+ **Note:** Version bump only for package @megafon/ui-shared
3757
+
3758
+
3759
+
3760
+
3761
+
3762
+ # [2.0.0-beta.18](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.17...@megafon/ui-shared@2.0.0-beta.18) (2020-09-24)
3763
+
3764
+ **Note:** Version bump only for package @megafon/ui-shared
3765
+
3766
+
3767
+
3768
+
3769
+
3770
+ # [2.0.0-beta.17](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.16...@megafon/ui-shared@2.0.0-beta.17) (2020-09-23)
3771
+
3772
+
3773
+ ### Bug Fixes
3774
+
3775
+ * **build:** add usage param for polyfills ([a26b725](https://github.com/MegafonWebLab/megafon-ui/commit/a26b7253b2f38b6984df7dabf61aee86f9a43ce0))
3776
+
3777
+
3778
+
3779
+
3780
+
3781
+ # [2.0.0-beta.16](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.15...@megafon/ui-shared@2.0.0-beta.16) (2020-09-23)
3782
+
3783
+ **Note:** Version bump only for package @megafon/ui-shared
3784
+
3785
+
3786
+
3787
+
3788
+
3789
+ # [2.0.0-beta.15](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.14...@megafon/ui-shared@2.0.0-beta.15) (2020-09-23)
3790
+
3791
+ **Note:** Version bump only for package @megafon/ui-shared
3792
+
3793
+
3794
+
3795
+
3796
+
3797
+ # [2.0.0-beta.14](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.13...@megafon/ui-shared@2.0.0-beta.14) (2020-09-23)
3798
+
3799
+ **Note:** Version bump only for package @megafon/ui-shared
3800
+
3801
+
3802
+
3803
+
3804
+
3805
+ # [2.0.0-beta.13](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.12...@megafon/ui-shared@2.0.0-beta.13) (2020-09-21)
3806
+
3807
+ **Note:** Version bump only for package @megafon/ui-shared
3808
+
3809
+
3810
+
3811
+
3812
+
3813
+ # [2.0.0-beta.12](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.11...@megafon/ui-shared@2.0.0-beta.12) (2020-09-17)
3814
+
3815
+ **Note:** Version bump only for package @megafon/ui-shared
3816
+
3817
+
3818
+
3819
+
3820
+
3821
+ # [2.0.0-beta.11](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.10...@megafon/ui-shared@2.0.0-beta.11) (2020-09-17)
3822
+
3823
+ **Note:** Version bump only for package @megafon/ui-shared
3824
+
3825
+
3826
+
3827
+
3828
+
3829
+ # [2.0.0-beta.10](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.9...@megafon/ui-shared@2.0.0-beta.10) (2020-09-16)
3830
+
3831
+ **Note:** Version bump only for package @megafon/ui-shared
3832
+
3833
+
3834
+
3835
+
3836
+
3837
+ # [2.0.0-beta.9](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.8...@megafon/ui-shared@2.0.0-beta.9) (2020-09-16)
3838
+
3839
+ **Note:** Version bump only for package @megafon/ui-shared
3840
+
3841
+
3842
+
3843
+
3844
+
3845
+ # [2.0.0-beta.8](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.7...@megafon/ui-shared@2.0.0-beta.8) (2020-09-14)
3846
+
3847
+ **Note:** Version bump only for package @megafon/ui-shared
3848
+
3849
+
3850
+
3851
+
3852
+
3853
+ # [2.0.0-beta.7](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.6...@megafon/ui-shared@2.0.0-beta.7) (2020-09-11)
3854
+
3855
+ **Note:** Version bump only for package @megafon/ui-shared
3856
+
3857
+
3858
+
3859
+
3860
+
3861
+ # [2.0.0-beta.6](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.5...@megafon/ui-shared@2.0.0-beta.6) (2020-09-10)
3862
+
3863
+
3864
+ ### Bug Fixes
3865
+
3866
+ * export interfaces ([275c2e1](https://github.com/MegafonWebLab/megafon-ui/commit/275c2e1f94ea69f7a29e4b3590504dd2def32ac1))
3867
+
3868
+
3869
+
3870
+
3871
+
3872
+ # [2.0.0-beta.5](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.4...@megafon/ui-shared@2.0.0-beta.5) (2020-09-09)
3873
+
3874
+ **Note:** Version bump only for package @megafon/ui-shared
3875
+
3876
+
3877
+
3878
+
3879
+
3880
+ # [2.0.0-beta.4](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.3...@megafon/ui-shared@2.0.0-beta.4) (2020-09-07)
3881
+
3882
+ **Note:** Version bump only for package @megafon/ui-shared
3883
+
3884
+
3885
+
3886
+
3887
+
3888
+ # [2.0.0-beta.3](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.2...@megafon/ui-shared@2.0.0-beta.3) (2020-09-01)
3889
+
3890
+
3891
+ ### Bug Fixes
3892
+
3893
+ * add data attributes prop ([8f38c20](https://github.com/MegafonWebLab/megafon-ui/commit/8f38c2045f9bf7c4829946edf2071be6fe6a07df))
3894
+
3895
+
3896
+
3897
+
3898
+
3899
+ # [2.0.0-beta.2](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.1...@megafon/ui-shared@2.0.0-beta.2) (2020-08-31)
3900
+
3901
+ **Note:** Version bump only for package @megafon/ui-shared
3902
+
3903
+
3904
+
3905
+
3906
+
3907
+ # [2.0.0-beta.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@2.0.0-beta.0...@megafon/ui-shared@2.0.0-beta.1) (2020-08-27)
3908
+
3909
+ **Note:** Version bump only for package @megafon/ui-shared
3910
+
3911
+
3912
+
3913
+
3914
+
3915
+ # [2.0.0-beta.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-shared@1.0.29...@megafon/ui-shared@2.0.0-beta.0) (2020-08-26)
3916
+
3917
+ ### BREAKING CHANGES
3918
+
3919
+ - **styles:**
3920
+ - changed classname prefix for beta
3921
+ - **Constructor**
3922
+ - create ButtonLinkBox component
3923
+ - create TitleDescriptionBox component
3924
+ - create BenefitIcons component
3925
+
3926
+ ## Release 1.0.30
3927
+ - **package.json**
3928
+ - updated @megafon/ui-core package
3929
+
3930
+ ## Release 1.0.29
3931
+ - **package.json**
3932
+ - updated @megafon/ui-core package
3933
+
3934
+ ## Release 1.0.28
3935
+ - **package.json**
3936
+ - updated @megafon/ui-core package
3937
+
3938
+ ## Release 1.0.27
3939
+ - **package.json**
3940
+ - updated @megafon/ui-core package
3941
+
3942
+ ## Release 1.0.26
3943
+ - **package.json**
3944
+ - updated @megafon/ui-core package
3945
+
3946
+ ## Release 1.0.25
3947
+ - **package.json**
3948
+ - updated @megafon/ui-core package
3949
+
3950
+ ## Release 1.0.24
3951
+ - **package.json**
3952
+ - updated @megafon/ui-core package
3953
+
3954
+ ## Release 1.0.23
3955
+ - **package.json**
3956
+ - updated @megafon/ui-core package
3957
+
3958
+ ## Release 1.0.22
3959
+ - **package.json**
3960
+ - updated @megafon/ui-core package
3961
+
3962
+ ## Release 1.0.21
3963
+ - **package.json**
3964
+ - updated @megafon/ui-core package
3965
+
3966
+ ## Release 1.0.20
3967
+ - **package.json**
3968
+ - updated @megafon/ui-core package
3969
+
3970
+ ## Release 1.0.19
3971
+ - **package.json**
3972
+ - updated @megafon/ui-core package
3973
+
3974
+ ## Release 1.0.18
3975
+ - **package.json**
3976
+ - updated @megafon/ui-core package
3977
+
3978
+ ## Release 1.0.17
3979
+ - **package.json**
3980
+ - updated @megafon/ui-core package
3981
+
3982
+ ## Release 1.0.16
3983
+ - **package.json**
3984
+ - updated @megafon/ui-core package
3985
+
3986
+ ## Release 1.0.15
3987
+ - **package.json**
3988
+ - updated @megafon/ui-core package
3989
+
3990
+ ## Release 1.0.14
3991
+ - **package.json**
3992
+ - updated @megafon/ui-core package
3993
+
3994
+ ## Release 1.0.13
3995
+ - **package.json**
3996
+ - deleted deep-equal module
3997
+ - updated @megafon/ui-core package
3998
+
3999
+ ## Release 1.0.12
4000
+ - **package.json**
4001
+ - updated @megafon/ui-core package
4002
+
4003
+ ## Release 1.0.11
4004
+ - **package.json**
4005
+ - updated @megafon/ui-core package
4006
+
4007
+ ## Release 1.0.10
4008
+ - **package.json**
4009
+ - updated @megafon/ui-core package
4010
+
4011
+ ## Release 1.0.9
4012
+ - **package.json**
4013
+ - updated @megafon/ui-core package
4014
+
4015
+ ## Release 1.0.8
4016
+ - **package.json**
4017
+ - updated @megafon/ui-core package
4018
+
4019
+ ## Release 1.0.7
4020
+ - **package.json**
4021
+ - updated @megafon/ui-core package
4022
+
4023
+ ## Release 1.0.6
4024
+ - **package.json**
4025
+ - updated @megafon/ui-core package
4026
+
4027
+ ## Release 1.0.5
4028
+ - **package.json**
4029
+ - updated @megafon/ui-core package
4030
+
4031
+ ## Release 1.0.4
4032
+ - **ProductSwitcher**
4033
+ - deselect already selected value
4034
+ - **package.json**
4035
+ - updated @megafon/ui-core package
4036
+
4037
+ ## Release 1.0.3
4038
+ - **package.json**
4039
+ - updated @megafon/ui-core package
4040
+
4041
+ ## Release 1.0.2
4042
+ - **package.json**
4043
+ - updated @megafon/ui-core package