@skbkontur/react-ui 1.12.2 → 2.0.0-beta.4

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 (3290) hide show
  1. package/CHANGELOG.md +4519 -0
  2. package/LICENSE +21 -0
  3. package/README.md +156 -135
  4. package/components/Autocomplete/Autocomplete.d.ts +118 -109
  5. package/components/Autocomplete/Autocomplete.js +382 -244
  6. package/components/Autocomplete/Autocomplete.js.map +1 -1
  7. package/components/Autocomplete/Autocomplete.styles.d.ts +5 -0
  8. package/components/Autocomplete/Autocomplete.styles.js +18 -0
  9. package/components/Autocomplete/Autocomplete.styles.js.map +1 -0
  10. package/components/Autocomplete/getAutocompleteTheme.d.ts +2 -0
  11. package/components/Autocomplete/getAutocompleteTheme.js +7 -0
  12. package/components/Autocomplete/getAutocompleteTheme.js.map +1 -0
  13. package/components/Autocomplete/index.d.ts +1 -1
  14. package/components/Autocomplete/index.js +2 -4
  15. package/components/Autocomplete/index.js.map +1 -1
  16. package/components/Autocomplete/locale/index.d.ts +4 -0
  17. package/components/Autocomplete/locale/index.js +9 -0
  18. package/components/Autocomplete/locale/index.js.map +1 -0
  19. package/components/Autocomplete/locale/locales/en.d.ts +2 -0
  20. package/components/Autocomplete/locale/locales/en.js +6 -0
  21. package/components/Autocomplete/locale/locales/en.js.map +1 -0
  22. package/components/Autocomplete/locale/locales/ru.d.ts +2 -0
  23. package/components/Autocomplete/locale/locales/ru.js +6 -0
  24. package/components/Autocomplete/locale/locales/ru.js.map +1 -0
  25. package/components/Autocomplete/locale/types.d.ts +5 -0
  26. package/components/Autocomplete/locale/types.js +2 -0
  27. package/components/Autocomplete/locale/types.js.map +1 -0
  28. package/components/Button/ArrowLeftIcon.d.ts +3 -0
  29. package/components/Button/ArrowLeftIcon.js +11 -0
  30. package/components/Button/ArrowLeftIcon.js.map +1 -0
  31. package/components/Button/ArrowRightIcon.d.ts +3 -0
  32. package/components/Button/ArrowRightIcon.js +11 -0
  33. package/components/Button/ArrowRightIcon.js.map +1 -0
  34. package/components/Button/Button.d.ts +150 -99
  35. package/components/Button/Button.js +374 -220
  36. package/components/Button/Button.js.map +1 -1
  37. package/components/Button/Button.mixins.d.ts +4 -4
  38. package/components/Button/Button.mixins.js +16 -48
  39. package/components/Button/Button.mixins.js.map +1 -1
  40. package/components/Button/Button.styles.d.ts +101 -22
  41. package/components/Button/Button.styles.js +266 -83
  42. package/components/Button/Button.styles.js.map +1 -1
  43. package/components/Button/ButtonArrow.d.ts +10 -0
  44. package/components/Button/ButtonArrow.js +51 -0
  45. package/components/Button/ButtonArrow.js.map +1 -0
  46. package/components/Button/ButtonIcon.d.ts +11 -0
  47. package/components/Button/ButtonIcon.js +61 -0
  48. package/components/Button/ButtonIcon.js.map +1 -0
  49. package/components/Button/ButtonIcon.styles.d.ts +16 -0
  50. package/components/Button/ButtonIcon.styles.js +53 -0
  51. package/components/Button/ButtonIcon.styles.js.map +1 -0
  52. package/components/Button/LoadingButtonIcon.d.ts +8 -0
  53. package/components/Button/LoadingButtonIcon.js +11 -0
  54. package/components/Button/LoadingButtonIcon.js.map +1 -0
  55. package/components/Button/getInnerLinkTheme.d.ts +2 -0
  56. package/components/Button/getInnerLinkTheme.js +18 -0
  57. package/components/Button/getInnerLinkTheme.js.map +1 -0
  58. package/components/Button/index.d.ts +1 -1
  59. package/components/Button/index.js +2 -5
  60. package/components/Button/index.js.map +1 -1
  61. package/components/Calendar/Calendar.d.ts +110 -62
  62. package/components/Calendar/Calendar.js +412 -252
  63. package/components/Calendar/Calendar.js.map +1 -1
  64. package/components/Calendar/Calendar.styles.d.ts +6 -5
  65. package/components/Calendar/Calendar.styles.js +22 -11
  66. package/components/Calendar/Calendar.styles.js.map +1 -1
  67. package/components/Calendar/CalendarContext.d.ts +12 -0
  68. package/components/Calendar/CalendarContext.js +3 -0
  69. package/components/Calendar/CalendarContext.js.map +1 -0
  70. package/components/Calendar/CalendarDateShape.d.ts +16 -14
  71. package/components/Calendar/CalendarDateShape.js +47 -39
  72. package/components/Calendar/CalendarDateShape.js.map +1 -1
  73. package/components/Calendar/CalendarDay.d.ts +20 -0
  74. package/components/Calendar/CalendarDay.js +62 -0
  75. package/components/Calendar/CalendarDay.js.map +1 -0
  76. package/components/Calendar/CalendarScrollEvents.d.ts +4 -9
  77. package/components/Calendar/CalendarScrollEvents.js +16 -20
  78. package/components/Calendar/CalendarScrollEvents.js.map +1 -1
  79. package/components/Calendar/CalendarUtils.d.ts +29 -18
  80. package/components/Calendar/CalendarUtils.js +72 -46
  81. package/components/Calendar/CalendarUtils.js.map +1 -1
  82. package/components/Calendar/DayCellView.d.ts +6 -19
  83. package/components/Calendar/DayCellView.js +41 -51
  84. package/components/Calendar/DayCellView.js.map +1 -1
  85. package/components/Calendar/DayCellView.styles.d.ts +8 -8
  86. package/components/Calendar/DayCellView.styles.js +28 -21
  87. package/components/Calendar/DayCellView.styles.js.map +1 -1
  88. package/components/Calendar/DayCellViewModel.d.ts +8 -8
  89. package/components/Calendar/DayCellViewModel.js +14 -15
  90. package/components/Calendar/DayCellViewModel.js.map +1 -1
  91. package/components/Calendar/Month.d.ts +23 -31
  92. package/components/Calendar/Month.js +119 -98
  93. package/components/Calendar/Month.js.map +1 -1
  94. package/components/Calendar/MonthView.d.ts +22 -25
  95. package/components/Calendar/MonthView.js +56 -68
  96. package/components/Calendar/MonthView.js.map +1 -1
  97. package/components/Calendar/MonthView.styles.d.ts +13 -6
  98. package/components/Calendar/MonthView.styles.js +47 -14
  99. package/components/Calendar/MonthView.styles.js.map +1 -1
  100. package/components/Calendar/MonthViewModel.d.ts +14 -13
  101. package/components/Calendar/MonthViewModel.js +55 -42
  102. package/components/Calendar/MonthViewModel.js.map +1 -1
  103. package/components/Calendar/config.d.ts +13 -25
  104. package/components/Calendar/config.js +18 -25
  105. package/components/Calendar/config.js.map +1 -1
  106. package/components/Calendar/index.d.ts +3 -1
  107. package/components/Calendar/index.js +4 -4
  108. package/components/Calendar/index.js.map +1 -1
  109. package/components/Calendar/locale/locales/en.d.ts +2 -0
  110. package/components/Calendar/locale/locales/en.js +18 -0
  111. package/components/Calendar/locale/locales/en.js.map +1 -0
  112. package/components/Calendar/locale/locales/ru.d.ts +2 -0
  113. package/components/Calendar/locale/locales/ru.js +18 -0
  114. package/components/Calendar/locale/locales/ru.js.map +1 -0
  115. package/components/Calendar/locale/types.d.ts +7 -0
  116. package/components/Calendar/locale/types.js +2 -0
  117. package/components/Calendar/locale/types.js.map +1 -0
  118. package/components/Center/Center.d.ts +33 -27
  119. package/components/Center/Center.js +93 -27
  120. package/components/Center/Center.js.map +1 -1
  121. package/components/Center/Center.styles.d.ts +7 -0
  122. package/components/Center/Center.styles.js +27 -0
  123. package/components/Center/Center.styles.js.map +1 -0
  124. package/components/Center/index.d.ts +1 -1
  125. package/components/Center/index.js +2 -4
  126. package/components/Center/index.js.map +1 -1
  127. package/components/Checkbox/Checkbox.d.ts +103 -82
  128. package/components/Checkbox/Checkbox.js +275 -176
  129. package/components/Checkbox/Checkbox.js.map +1 -1
  130. package/components/Checkbox/Checkbox.mixins.d.ts +2 -0
  131. package/components/Checkbox/Checkbox.mixins.js +12 -0
  132. package/components/Checkbox/Checkbox.mixins.js.map +1 -0
  133. package/components/Checkbox/Checkbox.styles.d.ts +27 -23
  134. package/components/Checkbox/Checkbox.styles.js +79 -56
  135. package/components/Checkbox/Checkbox.styles.js.map +1 -1
  136. package/components/Checkbox/CheckedIcon.d.ts +3 -0
  137. package/components/Checkbox/CheckedIcon.js +10 -0
  138. package/components/Checkbox/CheckedIcon.js.map +1 -0
  139. package/components/Checkbox/IndeterminateIcon.d.ts +3 -0
  140. package/components/Checkbox/IndeterminateIcon.js +9 -0
  141. package/components/Checkbox/IndeterminateIcon.js.map +1 -0
  142. package/components/Checkbox/index.d.ts +1 -1
  143. package/components/Checkbox/index.js +2 -4
  144. package/components/Checkbox/index.js.map +1 -1
  145. package/components/ComboBox/ComboBox.d.ts +196 -178
  146. package/components/ComboBox/ComboBox.js +144 -106
  147. package/components/ComboBox/ComboBox.js.map +1 -1
  148. package/components/ComboBox/index.d.ts +1 -1
  149. package/components/ComboBox/index.js +2 -4
  150. package/components/ComboBox/index.js.map +1 -1
  151. package/components/CurrencyInput/CurrencyHelper.d.ts +41 -35
  152. package/components/CurrencyInput/CurrencyHelper.js +184 -151
  153. package/components/CurrencyInput/CurrencyHelper.js.map +1 -1
  154. package/components/CurrencyInput/CurrencyInput.d.ts +79 -103
  155. package/components/CurrencyInput/CurrencyInput.js +367 -293
  156. package/components/CurrencyInput/CurrencyInput.js.map +1 -1
  157. package/components/CurrencyInput/CurrencyInputHelper.d.ts +23 -20
  158. package/components/CurrencyInput/CurrencyInputHelper.js +50 -50
  159. package/components/CurrencyInput/CurrencyInputHelper.js.map +1 -1
  160. package/components/CurrencyInput/CurrencyInputKeyboardActions.d.ts +19 -18
  161. package/components/CurrencyInput/CurrencyInputKeyboardActions.js +44 -36
  162. package/components/CurrencyInput/CurrencyInputKeyboardActions.js.map +1 -1
  163. package/components/CurrencyInput/CursorHelper.d.ts +10 -10
  164. package/components/CurrencyInput/CursorHelper.js +73 -70
  165. package/components/CurrencyInput/CursorHelper.js.map +1 -1
  166. package/components/CurrencyInput/SelectionHelper.d.ts +11 -11
  167. package/components/CurrencyInput/SelectionHelper.js +16 -17
  168. package/components/CurrencyInput/SelectionHelper.js.map +1 -1
  169. package/components/CurrencyInput/constants.d.ts +5 -2
  170. package/components/CurrencyInput/constants.js +6 -5
  171. package/components/CurrencyInput/constants.js.map +1 -1
  172. package/components/CurrencyInput/index.d.ts +1 -1
  173. package/components/CurrencyInput/index.js +2 -4
  174. package/components/CurrencyInput/index.js.map +1 -1
  175. package/components/CurrencyLabel/CurrencyLabel.d.ts +22 -24
  176. package/components/CurrencyLabel/CurrencyLabel.js +51 -35
  177. package/components/CurrencyLabel/CurrencyLabel.js.map +1 -1
  178. package/components/CurrencyLabel/index.d.ts +1 -1
  179. package/components/CurrencyLabel/index.js +2 -4
  180. package/components/CurrencyLabel/index.js.map +1 -1
  181. package/components/DateInput/CalendarIcon.d.ts +3 -0
  182. package/components/DateInput/CalendarIcon.js +11 -0
  183. package/components/DateInput/CalendarIcon.js.map +1 -0
  184. package/components/DateInput/DateFragmentsView.d.ts +25 -17
  185. package/components/DateInput/DateFragmentsView.js +108 -54
  186. package/components/DateInput/DateFragmentsView.js.map +1 -1
  187. package/components/DateInput/DateFragmentsView.styles.d.ts +7 -7
  188. package/components/DateInput/DateFragmentsView.styles.js +28 -18
  189. package/components/DateInput/DateFragmentsView.styles.js.map +1 -1
  190. package/components/DateInput/DateInput.d.ts +111 -108
  191. package/components/DateInput/DateInput.js +359 -504
  192. package/components/DateInput/DateInput.js.map +1 -1
  193. package/components/DateInput/DateInput.styles.d.ts +11 -9
  194. package/components/DateInput/DateInput.styles.js +29 -23
  195. package/components/DateInput/DateInput.styles.js.map +1 -1
  196. package/components/DateInput/helpers/DateInputKeyboardActions.d.ts +21 -21
  197. package/components/DateInput/helpers/DateInputKeyboardActions.js +52 -54
  198. package/components/DateInput/helpers/DateInputKeyboardActions.js.map +1 -1
  199. package/components/DateInput/helpers/InternalDateMediator.d.ts +27 -0
  200. package/components/DateInput/helpers/InternalDateMediator.js +147 -0
  201. package/components/DateInput/helpers/InternalDateMediator.js.map +1 -0
  202. package/components/DateInput/helpers/inputNumber.d.ts +6 -2
  203. package/components/DateInput/helpers/inputNumber.js +52 -27
  204. package/components/DateInput/helpers/inputNumber.js.map +1 -1
  205. package/components/DateInput/index.d.ts +1 -1
  206. package/components/DateInput/index.js +2 -4
  207. package/components/DateInput/index.js.map +1 -1
  208. package/components/DatePicker/DatePicker.d.ts +124 -118
  209. package/components/DatePicker/DatePicker.js +300 -201
  210. package/components/DatePicker/DatePicker.js.map +1 -1
  211. package/components/DatePicker/DatePicker.styles.d.ts +5 -0
  212. package/components/DatePicker/DatePicker.styles.js +18 -0
  213. package/components/DatePicker/DatePicker.styles.js.map +1 -0
  214. package/components/DatePicker/MobilePicker.d.ts +10 -0
  215. package/components/DatePicker/MobilePicker.js +46 -0
  216. package/components/DatePicker/MobilePicker.js.map +1 -0
  217. package/components/DatePicker/MobilePicker.styles.d.ts +3 -0
  218. package/components/DatePicker/MobilePicker.styles.js +15 -0
  219. package/components/DatePicker/MobilePicker.styles.js.map +1 -0
  220. package/components/DatePicker/getMobilePickerTheme.d.ts +2 -0
  221. package/components/DatePicker/getMobilePickerTheme.js +15 -0
  222. package/components/DatePicker/getMobilePickerTheme.js.map +1 -0
  223. package/components/DatePicker/index.d.ts +1 -1
  224. package/components/DatePicker/index.js +2 -4
  225. package/components/DatePicker/index.js.map +1 -1
  226. package/components/DatePicker/locale/index.d.ts +4 -5
  227. package/components/DatePicker/locale/index.js +9 -9
  228. package/components/DatePicker/locale/index.js.map +1 -1
  229. package/components/DatePicker/locale/locales/en.d.ts +2 -3
  230. package/components/DatePicker/locale/locales/en.js +17 -20
  231. package/components/DatePicker/locale/locales/en.js.map +1 -1
  232. package/components/DatePicker/locale/locales/ru.d.ts +2 -3
  233. package/components/DatePicker/locale/locales/ru.js +17 -20
  234. package/components/DatePicker/locale/locales/ru.js.map +1 -1
  235. package/components/DatePicker/locale/types.d.ts +7 -5
  236. package/components/DatePicker/locale/types.js +2 -2
  237. package/components/DatePicker/locale/types.js.map +1 -1
  238. package/components/DateRangePicker/DateRangePicker.d.ts +98 -0
  239. package/components/DateRangePicker/DateRangePicker.js +330 -0
  240. package/components/DateRangePicker/DateRangePicker.js.map +1 -0
  241. package/components/DateRangePicker/DateRangePicker.styles.d.ts +16 -0
  242. package/components/DateRangePicker/DateRangePicker.styles.js +57 -0
  243. package/components/DateRangePicker/DateRangePicker.styles.js.map +1 -0
  244. package/components/DateRangePicker/DateRangePickerContext.d.ts +31 -0
  245. package/components/DateRangePicker/DateRangePickerContext.js +4 -0
  246. package/components/DateRangePicker/DateRangePickerContext.js.map +1 -0
  247. package/components/DateRangePicker/DateRangePickerInput.d.ts +12 -0
  248. package/components/DateRangePicker/DateRangePickerInput.js +99 -0
  249. package/components/DateRangePicker/DateRangePickerInput.js.map +1 -0
  250. package/components/DateRangePicker/DateRangePickerSeparator.d.ts +2 -0
  251. package/components/DateRangePicker/DateRangePickerSeparator.js +3 -0
  252. package/components/DateRangePicker/DateRangePickerSeparator.js.map +1 -0
  253. package/components/DateRangePicker/DateRangePickerTheme.d.ts +3 -0
  254. package/components/DateRangePicker/DateRangePickerTheme.js +25 -0
  255. package/components/DateRangePicker/DateRangePickerTheme.js.map +1 -0
  256. package/components/DateRangePicker/helpers/getStateForValue.d.ts +9 -0
  257. package/components/DateRangePicker/helpers/getStateForValue.js +118 -0
  258. package/components/DateRangePicker/helpers/getStateForValue.js.map +1 -0
  259. package/components/DateRangePicker/helpers/validateDateRangePicker.d.ts +9 -0
  260. package/components/DateRangePicker/helpers/validateDateRangePicker.js +59 -0
  261. package/components/DateRangePicker/helpers/validateDateRangePicker.js.map +1 -0
  262. package/components/DateRangePicker/index.d.ts +1 -0
  263. package/components/DateRangePicker/index.js +2 -0
  264. package/components/DateRangePicker/index.js.map +1 -0
  265. package/components/DateRangePicker/locale/index.d.ts +4 -0
  266. package/components/DateRangePicker/locale/index.js +9 -0
  267. package/components/DateRangePicker/locale/index.js.map +1 -0
  268. package/components/DateRangePicker/locale/locales/en.d.ts +2 -0
  269. package/components/DateRangePicker/locale/locales/en.js +14 -0
  270. package/components/DateRangePicker/locale/locales/en.js.map +1 -0
  271. package/components/DateRangePicker/locale/locales/ru.d.ts +2 -0
  272. package/components/DateRangePicker/locale/locales/ru.js +14 -0
  273. package/components/DateRangePicker/locale/locales/ru.js.map +1 -0
  274. package/components/DateRangePicker/locale/types.d.ts +7 -0
  275. package/components/DateRangePicker/locale/types.js +2 -0
  276. package/components/DateRangePicker/locale/types.js.map +1 -0
  277. package/components/Dropdown/Dropdown.d.ts +84 -120
  278. package/components/Dropdown/Dropdown.js +136 -112
  279. package/components/Dropdown/Dropdown.js.map +1 -1
  280. package/components/Dropdown/getDropdownTheme.d.ts +2 -0
  281. package/components/Dropdown/getDropdownTheme.js +33 -0
  282. package/components/Dropdown/getDropdownTheme.js.map +1 -0
  283. package/components/Dropdown/index.d.ts +1 -1
  284. package/components/Dropdown/index.js +2 -4
  285. package/components/Dropdown/index.js.map +1 -1
  286. package/components/DropdownMenu/DropdownMenu.d.ts +68 -46
  287. package/components/DropdownMenu/DropdownMenu.js +93 -50
  288. package/components/DropdownMenu/DropdownMenu.js.map +1 -1
  289. package/components/DropdownMenu/getDropdownMenuTheme.d.ts +2 -0
  290. package/components/DropdownMenu/getDropdownMenuTheme.js +11 -0
  291. package/components/DropdownMenu/getDropdownMenuTheme.js.map +1 -0
  292. package/components/DropdownMenu/index.d.ts +1 -1
  293. package/components/DropdownMenu/index.js +2 -4
  294. package/components/DropdownMenu/index.js.map +1 -1
  295. package/components/FileUploader/FileUploader.d.ts +106 -0
  296. package/components/FileUploader/FileUploader.js +358 -0
  297. package/components/FileUploader/FileUploader.js.map +1 -0
  298. package/components/FileUploader/FileUploader.mixins.d.ts +1 -0
  299. package/components/FileUploader/FileUploader.mixins.js +4 -0
  300. package/components/FileUploader/FileUploader.mixins.js.map +1 -0
  301. package/components/FileUploader/FileUploader.styles.d.ts +74 -0
  302. package/components/FileUploader/FileUploader.styles.js +218 -0
  303. package/components/FileUploader/FileUploader.styles.js.map +1 -0
  304. package/components/FileUploader/FileUploaderControlContext.d.ts +12 -0
  305. package/components/FileUploader/FileUploaderControlContext.js +3 -0
  306. package/components/FileUploader/FileUploaderControlContext.js.map +1 -0
  307. package/components/FileUploader/FileUploaderControlProvider.d.ts +12 -0
  308. package/components/FileUploader/FileUploaderControlProvider.js +86 -0
  309. package/components/FileUploader/FileUploaderControlProvider.js.map +1 -0
  310. package/components/FileUploader/FileUploaderFile.d.ts +53 -0
  311. package/components/FileUploader/FileUploaderFile.js +217 -0
  312. package/components/FileUploader/FileUploaderFile.js.map +1 -0
  313. package/components/FileUploader/FileUploaderFile.styles.d.ts +60 -0
  314. package/components/FileUploader/FileUploaderFile.styles.js +184 -0
  315. package/components/FileUploader/FileUploaderFile.styles.js.map +1 -0
  316. package/components/FileUploader/FileUploaderFileList/FileUploaderFileList.d.ts +26 -0
  317. package/components/FileUploader/FileUploaderFileList/FileUploaderFileList.js +145 -0
  318. package/components/FileUploader/FileUploaderFileList/FileUploaderFileList.js.map +1 -0
  319. package/components/FileUploader/FileUploaderFileList/FileUploaderFileList.styles.d.ts +34 -0
  320. package/components/FileUploader/FileUploaderFileList/FileUploaderFileList.styles.js +103 -0
  321. package/components/FileUploader/FileUploaderFileList/FileUploaderFileList.styles.js.map +1 -0
  322. package/components/FileUploader/FileUploaderFileStatusIcon.d.ts +15 -0
  323. package/components/FileUploader/FileUploaderFileStatusIcon.js +29 -0
  324. package/components/FileUploader/FileUploaderFileStatusIcon.js.map +1 -0
  325. package/components/FileUploader/FileUploaderFileTypeIcon.d.ts +10 -0
  326. package/components/FileUploader/FileUploaderFileTypeIcon.js +80 -0
  327. package/components/FileUploader/FileUploaderFileTypeIcon.js.map +1 -0
  328. package/components/FileUploader/FileUploaderFileValidationResult.d.ts +7 -0
  329. package/components/FileUploader/FileUploaderFileValidationResult.js +15 -0
  330. package/components/FileUploader/FileUploaderFileValidationResult.js.map +1 -0
  331. package/components/FileUploader/fileUtils.d.ts +28 -0
  332. package/components/FileUploader/fileUtils.js +70 -0
  333. package/components/FileUploader/fileUtils.js.map +1 -0
  334. package/components/FileUploader/hooks/useControlLocale.d.ts +2 -0
  335. package/components/FileUploader/hooks/useControlLocale.js +6 -0
  336. package/components/FileUploader/hooks/useControlLocale.js.map +1 -0
  337. package/components/FileUploader/hooks/useFileUploaderSize.d.ts +2 -0
  338. package/components/FileUploader/hooks/useFileUploaderSize.js +17 -0
  339. package/components/FileUploader/hooks/useFileUploaderSize.js.map +1 -0
  340. package/components/FileUploader/hooks/useUpload.d.ts +3 -0
  341. package/components/FileUploader/hooks/useUpload.js +80 -0
  342. package/components/FileUploader/hooks/useUpload.js.map +1 -0
  343. package/components/FileUploader/icons/DeleteIcon.d.ts +3 -0
  344. package/components/FileUploader/icons/DeleteIcon.js +11 -0
  345. package/components/FileUploader/icons/DeleteIcon.js.map +1 -0
  346. package/components/FileUploader/icons/UploadIcon.d.ts +9 -0
  347. package/components/FileUploader/icons/UploadIcon.js +8 -0
  348. package/components/FileUploader/icons/UploadIcon.js.map +1 -0
  349. package/components/FileUploader/icons/row/ArchiveIcon.d.ts +3 -0
  350. package/components/FileUploader/icons/row/ArchiveIcon.js +11 -0
  351. package/components/FileUploader/icons/row/ArchiveIcon.js.map +1 -0
  352. package/components/FileUploader/icons/row/DocTextIcon.d.ts +3 -0
  353. package/components/FileUploader/icons/row/DocTextIcon.js +11 -0
  354. package/components/FileUploader/icons/row/DocTextIcon.js.map +1 -0
  355. package/components/FileUploader/icons/row/FolderIcon.d.ts +3 -0
  356. package/components/FileUploader/icons/row/FolderIcon.js +11 -0
  357. package/components/FileUploader/icons/row/FolderIcon.js.map +1 -0
  358. package/components/FileUploader/icons/row/MarkupIcon.d.ts +3 -0
  359. package/components/FileUploader/icons/row/MarkupIcon.js +11 -0
  360. package/components/FileUploader/icons/row/MarkupIcon.js.map +1 -0
  361. package/components/FileUploader/icons/row/PdfIcon.d.ts +3 -0
  362. package/components/FileUploader/icons/row/PdfIcon.js +11 -0
  363. package/components/FileUploader/icons/row/PdfIcon.js.map +1 -0
  364. package/components/FileUploader/icons/row/PictureIcon.d.ts +3 -0
  365. package/components/FileUploader/icons/row/PictureIcon.js +11 -0
  366. package/components/FileUploader/icons/row/PictureIcon.js.map +1 -0
  367. package/components/FileUploader/icons/row/PresentationIcon.d.ts +3 -0
  368. package/components/FileUploader/icons/row/PresentationIcon.js +11 -0
  369. package/components/FileUploader/icons/row/PresentationIcon.js.map +1 -0
  370. package/components/FileUploader/icons/row/RowUploadIcon.d.ts +3 -0
  371. package/components/FileUploader/icons/row/RowUploadIcon.js +11 -0
  372. package/components/FileUploader/icons/row/RowUploadIcon.js.map +1 -0
  373. package/components/FileUploader/icons/row/TableIcon.d.ts +3 -0
  374. package/components/FileUploader/icons/row/TableIcon.js +11 -0
  375. package/components/FileUploader/icons/row/TableIcon.js.map +1 -0
  376. package/components/FileUploader/icons/row/TextIcon.d.ts +3 -0
  377. package/components/FileUploader/icons/row/TextIcon.js +11 -0
  378. package/components/FileUploader/icons/row/TextIcon.js.map +1 -0
  379. package/components/FileUploader/icons/row/ValidationErrorIcon.d.ts +3 -0
  380. package/components/FileUploader/icons/row/ValidationErrorIcon.js +11 -0
  381. package/components/FileUploader/icons/row/ValidationErrorIcon.js.map +1 -0
  382. package/components/FileUploader/icons/row/ValidationWarningIcon.d.ts +3 -0
  383. package/components/FileUploader/icons/row/ValidationWarningIcon.js +11 -0
  384. package/components/FileUploader/icons/row/ValidationWarningIcon.js.map +1 -0
  385. package/components/FileUploader/icons/tile/ArchiveIcon.d.ts +3 -0
  386. package/components/FileUploader/icons/tile/ArchiveIcon.js +11 -0
  387. package/components/FileUploader/icons/tile/ArchiveIcon.js.map +1 -0
  388. package/components/FileUploader/icons/tile/DocTextIcon.d.ts +3 -0
  389. package/components/FileUploader/icons/tile/DocTextIcon.js +11 -0
  390. package/components/FileUploader/icons/tile/DocTextIcon.js.map +1 -0
  391. package/components/FileUploader/icons/tile/FolderIcon.d.ts +3 -0
  392. package/components/FileUploader/icons/tile/FolderIcon.js +11 -0
  393. package/components/FileUploader/icons/tile/FolderIcon.js.map +1 -0
  394. package/components/FileUploader/icons/tile/MarkupIcon.d.ts +3 -0
  395. package/components/FileUploader/icons/tile/MarkupIcon.js +11 -0
  396. package/components/FileUploader/icons/tile/MarkupIcon.js.map +1 -0
  397. package/components/FileUploader/icons/tile/PdfIcon.d.ts +3 -0
  398. package/components/FileUploader/icons/tile/PdfIcon.js +11 -0
  399. package/components/FileUploader/icons/tile/PdfIcon.js.map +1 -0
  400. package/components/FileUploader/icons/tile/PictureIcon.d.ts +3 -0
  401. package/components/FileUploader/icons/tile/PictureIcon.js +11 -0
  402. package/components/FileUploader/icons/tile/PictureIcon.js.map +1 -0
  403. package/components/FileUploader/icons/tile/PresentationIcon.d.ts +3 -0
  404. package/components/FileUploader/icons/tile/PresentationIcon.js +11 -0
  405. package/components/FileUploader/icons/tile/PresentationIcon.js.map +1 -0
  406. package/components/FileUploader/icons/tile/TableIcon.d.ts +3 -0
  407. package/components/FileUploader/icons/tile/TableIcon.js +11 -0
  408. package/components/FileUploader/icons/tile/TableIcon.js.map +1 -0
  409. package/components/FileUploader/icons/tile/TextIcon.d.ts +3 -0
  410. package/components/FileUploader/icons/tile/TextIcon.js +11 -0
  411. package/components/FileUploader/icons/tile/TextIcon.js.map +1 -0
  412. package/components/FileUploader/icons/tile/TileUploadIcon.d.ts +3 -0
  413. package/components/FileUploader/icons/tile/TileUploadIcon.js +11 -0
  414. package/components/FileUploader/icons/tile/TileUploadIcon.js.map +1 -0
  415. package/components/FileUploader/icons/tile/ValidationErrorIcon.d.ts +3 -0
  416. package/components/FileUploader/icons/tile/ValidationErrorIcon.js +11 -0
  417. package/components/FileUploader/icons/tile/ValidationErrorIcon.js.map +1 -0
  418. package/components/FileUploader/icons/tile/ValidationWarningIcon.d.ts +3 -0
  419. package/components/FileUploader/icons/tile/ValidationWarningIcon.js +11 -0
  420. package/components/FileUploader/icons/tile/ValidationWarningIcon.js.map +1 -0
  421. package/components/FileUploader/index.d.ts +6 -0
  422. package/components/FileUploader/index.js +5 -0
  423. package/components/FileUploader/index.js.map +1 -0
  424. package/components/FileUploader/locale/index.d.ts +4 -0
  425. package/components/FileUploader/locale/index.js +9 -0
  426. package/components/FileUploader/locale/index.js.map +1 -0
  427. package/components/FileUploader/locale/locales/en.d.ts +2 -0
  428. package/components/FileUploader/locale/locales/en.js +7 -0
  429. package/components/FileUploader/locale/locales/en.js.map +1 -0
  430. package/components/FileUploader/locale/locales/ru.d.ts +2 -0
  431. package/components/FileUploader/locale/locales/ru.js +7 -0
  432. package/components/FileUploader/locale/locales/ru.js.map +1 -0
  433. package/components/FileUploader/locale/types.d.ts +6 -0
  434. package/components/FileUploader/locale/types.js +2 -0
  435. package/components/FileUploader/locale/types.js.map +1 -0
  436. package/components/FileUploader/withFileUploaderControlProvider.d.ts +4 -0
  437. package/components/FileUploader/withFileUploaderControlProvider.js +32 -0
  438. package/components/FileUploader/withFileUploaderControlProvider.js.map +1 -0
  439. package/components/FxInput/FxInput.d.ts +72 -47
  440. package/components/FxInput/FxInput.js +159 -69
  441. package/components/FxInput/FxInput.js.map +1 -1
  442. package/components/FxInput/FxInputRestoreBtn.d.ts +9 -0
  443. package/components/FxInput/FxInputRestoreBtn.js +43 -0
  444. package/components/FxInput/FxInputRestoreBtn.js.map +1 -0
  445. package/components/FxInput/MathFunctionIcon.d.ts +3 -0
  446. package/components/FxInput/MathFunctionIcon.js +11 -0
  447. package/components/FxInput/MathFunctionIcon.js.map +1 -0
  448. package/components/FxInput/UndoIcon.d.ts +3 -0
  449. package/components/FxInput/UndoIcon.js +11 -0
  450. package/components/FxInput/UndoIcon.js.map +1 -0
  451. package/components/FxInput/index.d.ts +1 -1
  452. package/components/FxInput/index.js +2 -4
  453. package/components/FxInput/index.js.map +1 -1
  454. package/components/Gapped/Gapped.d.ts +37 -55
  455. package/components/Gapped/Gapped.js +105 -67
  456. package/components/Gapped/Gapped.js.map +1 -1
  457. package/components/Gapped/index.d.ts +1 -1
  458. package/components/Gapped/index.js +2 -4
  459. package/components/Gapped/index.js.map +1 -1
  460. package/components/GlobalLoader/GlobalLoader.d.ts +97 -0
  461. package/components/GlobalLoader/GlobalLoader.js +240 -0
  462. package/components/GlobalLoader/GlobalLoader.js.map +1 -0
  463. package/components/GlobalLoader/GlobalLoaderView.d.ts +18 -0
  464. package/components/GlobalLoader/GlobalLoaderView.js +72 -0
  465. package/components/GlobalLoader/GlobalLoaderView.js.map +1 -0
  466. package/components/GlobalLoader/GlobalLoaderView.styles.d.ts +17 -0
  467. package/components/GlobalLoader/GlobalLoaderView.styles.js +70 -0
  468. package/components/GlobalLoader/GlobalLoaderView.styles.js.map +1 -0
  469. package/components/GlobalLoader/index.d.ts +1 -0
  470. package/components/GlobalLoader/index.js +2 -0
  471. package/components/GlobalLoader/index.js.map +1 -0
  472. package/components/GlobalLoader/useParams.d.ts +22 -0
  473. package/components/GlobalLoader/useParams.js +38 -0
  474. package/components/GlobalLoader/useParams.js.map +1 -0
  475. package/components/Group/Group.d.ts +28 -24
  476. package/components/Group/Group.js +164 -77
  477. package/components/Group/Group.js.map +1 -1
  478. package/components/Group/Group.styles.d.ts +8 -0
  479. package/components/Group/Group.styles.js +30 -0
  480. package/components/Group/Group.styles.js.map +1 -0
  481. package/components/Group/index.d.ts +1 -1
  482. package/components/Group/index.js +2 -4
  483. package/components/Group/index.js.map +1 -1
  484. package/components/Hint/Hint.d.ts +72 -39
  485. package/components/Hint/Hint.js +156 -95
  486. package/components/Hint/Hint.js.map +1 -1
  487. package/components/Hint/Hint.styles.d.ts +5 -0
  488. package/components/Hint/Hint.styles.js +18 -0
  489. package/components/Hint/Hint.styles.js.map +1 -0
  490. package/components/Hint/index.d.ts +1 -1
  491. package/components/Hint/index.js +2 -4
  492. package/components/Hint/index.js.map +1 -1
  493. package/components/Input/Input.d.ts +155 -147
  494. package/components/Input/Input.js +363 -281
  495. package/components/Input/Input.js.map +1 -1
  496. package/components/Input/Input.styles.d.ts +21 -18
  497. package/components/Input/Input.styles.js +68 -54
  498. package/components/Input/Input.styles.js.map +1 -1
  499. package/components/Input/Input.typings.d.ts +7 -0
  500. package/components/Input/Input.typings.js +2 -0
  501. package/components/Input/Input.typings.js.map +1 -0
  502. package/components/Input/InputLayout/InputLayout.d.ts +14 -0
  503. package/components/Input/InputLayout/InputLayout.js +33 -0
  504. package/components/Input/InputLayout/InputLayout.js.map +1 -0
  505. package/components/Input/InputLayout/InputLayout.styles.d.ts +11 -0
  506. package/components/Input/InputLayout/InputLayout.styles.js +38 -0
  507. package/components/Input/InputLayout/InputLayout.styles.js.map +1 -0
  508. package/components/Input/InputLayout/InputLayoutAside.d.ts +8 -0
  509. package/components/Input/InputLayout/InputLayoutAside.js +15 -0
  510. package/components/Input/InputLayout/InputLayoutAside.js.map +1 -0
  511. package/components/Input/InputLayout/InputLayoutAsideIcon.d.ts +7 -0
  512. package/components/Input/InputLayout/InputLayoutAsideIcon.js +43 -0
  513. package/components/Input/InputLayout/InputLayoutAsideIcon.js.map +1 -0
  514. package/components/Input/InputLayout/InputLayoutAsideText.d.ts +6 -0
  515. package/components/Input/InputLayout/InputLayoutAsideText.js +15 -0
  516. package/components/Input/InputLayout/InputLayoutAsideText.js.map +1 -0
  517. package/components/Input/InputLayout/InputLayoutContext.d.ts +9 -0
  518. package/components/Input/InputLayout/InputLayoutContext.js +8 -0
  519. package/components/Input/InputLayout/InputLayoutContext.js.map +1 -0
  520. package/components/Input/index.d.ts +2 -1
  521. package/components/Input/index.js +3 -4
  522. package/components/Input/index.js.map +1 -1
  523. package/components/Kebab/Kebab.d.ts +65 -61
  524. package/components/Kebab/Kebab.js +167 -137
  525. package/components/Kebab/Kebab.js.map +1 -1
  526. package/components/Kebab/Kebab.styles.d.ts +11 -6
  527. package/components/Kebab/Kebab.styles.js +36 -15
  528. package/components/Kebab/Kebab.styles.js.map +1 -1
  529. package/components/Kebab/KebabIcon.d.ts +3 -0
  530. package/components/Kebab/KebabIcon.js +11 -0
  531. package/components/Kebab/KebabIcon.js.map +1 -0
  532. package/components/Kebab/index.d.ts +1 -1
  533. package/components/Kebab/index.js +2 -4
  534. package/components/Kebab/index.js.map +1 -1
  535. package/components/Link/Link.d.ts +69 -52
  536. package/components/Link/Link.js +192 -105
  537. package/components/Link/Link.js.map +1 -1
  538. package/components/Link/Link.mixins.d.ts +2 -0
  539. package/components/Link/Link.mixins.js +7 -0
  540. package/components/Link/Link.mixins.js.map +1 -0
  541. package/components/Link/Link.styles.d.ts +24 -8
  542. package/components/Link/Link.styles.js +82 -21
  543. package/components/Link/Link.styles.js.map +1 -1
  544. package/components/Link/LinkIcon.d.ts +7 -0
  545. package/components/Link/LinkIcon.js +13 -0
  546. package/components/Link/LinkIcon.js.map +1 -0
  547. package/components/Link/index.d.ts +1 -1
  548. package/components/Link/index.js +2 -4
  549. package/components/Link/index.js.map +1 -1
  550. package/components/Loader/Loader.d.ts +81 -67
  551. package/components/Loader/Loader.js +282 -155
  552. package/components/Loader/Loader.js.map +1 -1
  553. package/components/Loader/Loader.styles.d.ts +8 -5
  554. package/components/Loader/Loader.styles.js +27 -11
  555. package/components/Loader/Loader.styles.js.map +1 -1
  556. package/components/Loader/index.d.ts +1 -1
  557. package/components/Loader/index.js +2 -4
  558. package/components/Loader/index.js.map +1 -1
  559. package/components/MaskedInput/ColorableInputElement/ColorableInputElement.d.ts +8 -0
  560. package/components/MaskedInput/ColorableInputElement/ColorableInputElement.js +153 -0
  561. package/components/MaskedInput/ColorableInputElement/ColorableInputElement.js.map +1 -0
  562. package/components/MaskedInput/ColorableInputElement/ColorableInputElement.styles.d.ts +6 -0
  563. package/components/MaskedInput/ColorableInputElement/ColorableInputElement.styles.js +18 -0
  564. package/components/MaskedInput/ColorableInputElement/ColorableInputElement.styles.js.map +1 -0
  565. package/components/MaskedInput/ColorableInputElement/index.d.ts +1 -0
  566. package/components/MaskedInput/ColorableInputElement/index.js +2 -0
  567. package/components/MaskedInput/ColorableInputElement/index.js.map +1 -0
  568. package/components/MaskedInput/FixedIMaskInput.d.ts +9 -0
  569. package/components/MaskedInput/FixedIMaskInput.js +225 -0
  570. package/components/MaskedInput/FixedIMaskInput.js.map +1 -0
  571. package/components/MaskedInput/MaskedInput.d.ts +55 -0
  572. package/components/MaskedInput/MaskedInput.helpers.d.ts +9 -0
  573. package/components/MaskedInput/MaskedInput.helpers.js +17 -0
  574. package/components/MaskedInput/MaskedInput.helpers.js.map +1 -0
  575. package/components/MaskedInput/MaskedInput.js +158 -0
  576. package/components/MaskedInput/MaskedInput.js.map +1 -0
  577. package/components/MaskedInput/MaskedInput.styles.d.ts +7 -0
  578. package/components/MaskedInput/MaskedInput.styles.js +19 -0
  579. package/components/MaskedInput/MaskedInput.styles.js.map +1 -0
  580. package/components/MaskedInput/index.d.ts +1 -0
  581. package/components/MaskedInput/index.js +2 -0
  582. package/components/MaskedInput/index.js.map +1 -0
  583. package/components/MenuFooter/MenuFooter.d.ts +25 -0
  584. package/components/MenuFooter/MenuFooter.js +80 -0
  585. package/components/MenuFooter/MenuFooter.js.map +1 -0
  586. package/components/MenuFooter/MenuFooter.mixins.d.ts +2 -0
  587. package/components/MenuFooter/MenuFooter.mixins.js +8 -0
  588. package/components/MenuFooter/MenuFooter.mixins.js.map +1 -0
  589. package/components/MenuFooter/MenuFooter.styles.d.ts +10 -0
  590. package/components/MenuFooter/MenuFooter.styles.js +34 -0
  591. package/components/MenuFooter/MenuFooter.styles.js.map +1 -0
  592. package/components/MenuFooter/index.d.ts +1 -0
  593. package/components/MenuFooter/index.js +2 -0
  594. package/components/MenuFooter/index.js.map +1 -0
  595. package/components/MenuHeader/MenuHeader.d.ts +25 -21
  596. package/components/MenuHeader/MenuHeader.js +81 -44
  597. package/components/MenuHeader/MenuHeader.js.map +1 -1
  598. package/components/MenuHeader/MenuHeader.mixins.d.ts +2 -0
  599. package/components/MenuHeader/MenuHeader.mixins.js +8 -0
  600. package/components/MenuHeader/MenuHeader.mixins.js.map +1 -0
  601. package/components/MenuHeader/MenuHeader.styles.d.ts +10 -5
  602. package/components/MenuHeader/MenuHeader.styles.js +34 -12
  603. package/components/MenuHeader/MenuHeader.styles.js.map +1 -1
  604. package/components/MenuHeader/index.d.ts +1 -1
  605. package/components/MenuHeader/index.js +2 -5
  606. package/components/MenuHeader/index.js.map +1 -1
  607. package/components/MenuItem/MenuItem.d.ts +103 -52
  608. package/components/MenuItem/MenuItem.js +294 -102
  609. package/components/MenuItem/MenuItem.js.map +1 -1
  610. package/components/MenuItem/MenuItem.mixins.d.ts +3 -0
  611. package/components/MenuItem/MenuItem.mixins.js +15 -0
  612. package/components/MenuItem/MenuItem.mixins.js.map +1 -0
  613. package/components/MenuItem/MenuItem.styles.d.ts +24 -10
  614. package/components/MenuItem/MenuItem.styles.js +81 -28
  615. package/components/MenuItem/MenuItem.styles.js.map +1 -1
  616. package/components/MenuItem/index.d.ts +1 -1
  617. package/components/MenuItem/index.js +2 -5
  618. package/components/MenuItem/index.js.map +1 -1
  619. package/components/MenuSeparator/MenuSeparator.d.ts +12 -10
  620. package/components/MenuSeparator/MenuSeparator.js +38 -29
  621. package/components/MenuSeparator/MenuSeparator.js.map +1 -1
  622. package/components/MenuSeparator/MenuSeparator.styles.d.ts +5 -5
  623. package/components/MenuSeparator/MenuSeparator.styles.js +18 -11
  624. package/components/MenuSeparator/MenuSeparator.styles.js.map +1 -1
  625. package/components/MenuSeparator/index.d.ts +1 -1
  626. package/components/MenuSeparator/index.js +2 -4
  627. package/components/MenuSeparator/index.js.map +1 -1
  628. package/components/MiniModal/MiniModal.d.ts +25 -0
  629. package/components/MiniModal/MiniModal.js +55 -0
  630. package/components/MiniModal/MiniModal.js.map +1 -0
  631. package/components/MiniModal/MiniModal.styles.d.ts +11 -0
  632. package/components/MiniModal/MiniModal.styles.js +37 -0
  633. package/components/MiniModal/MiniModal.styles.js.map +1 -0
  634. package/components/MiniModal/MiniModalBody.d.ts +7 -0
  635. package/components/MiniModal/MiniModalBody.js +44 -0
  636. package/components/MiniModal/MiniModalBody.js.map +1 -0
  637. package/components/MiniModal/MiniModalFooter.d.ts +13 -0
  638. package/components/MiniModal/MiniModalFooter.js +45 -0
  639. package/components/MiniModal/MiniModalFooter.js.map +1 -0
  640. package/components/MiniModal/MiniModalHeader.d.ts +14 -0
  641. package/components/MiniModal/MiniModalHeader.js +49 -0
  642. package/components/MiniModal/MiniModalHeader.js.map +1 -0
  643. package/components/MiniModal/MiniModalIndent.d.ts +7 -0
  644. package/components/MiniModal/MiniModalIndent.js +40 -0
  645. package/components/MiniModal/MiniModalIndent.js.map +1 -0
  646. package/components/MiniModal/getMiniModalTheme.d.ts +3 -0
  647. package/components/MiniModal/getMiniModalTheme.js +21 -0
  648. package/components/MiniModal/getMiniModalTheme.js.map +1 -0
  649. package/components/MiniModal/index.d.ts +5 -0
  650. package/components/MiniModal/index.js +6 -0
  651. package/components/MiniModal/index.js.map +1 -0
  652. package/components/Modal/Modal.d.ts +105 -79
  653. package/components/Modal/Modal.js +297 -207
  654. package/components/Modal/Modal.js.map +1 -1
  655. package/components/Modal/Modal.styles.d.ts +55 -12
  656. package/components/Modal/Modal.styles.js +167 -34
  657. package/components/Modal/Modal.styles.js.map +1 -1
  658. package/components/Modal/ModalBody.d.ts +27 -6
  659. package/components/Modal/ModalBody.js +97 -25
  660. package/components/Modal/ModalBody.js.map +1 -1
  661. package/components/Modal/ModalClose.d.ts +7 -7
  662. package/components/Modal/ModalClose.js +71 -27
  663. package/components/Modal/ModalClose.js.map +1 -1
  664. package/components/Modal/ModalContext.d.ts +19 -11
  665. package/components/Modal/ModalContext.js +4 -5
  666. package/components/Modal/ModalContext.js.map +1 -1
  667. package/components/Modal/ModalFooter.d.ts +30 -24
  668. package/components/Modal/ModalFooter.js +70 -60
  669. package/components/Modal/ModalFooter.js.map +1 -1
  670. package/components/Modal/ModalHeader.d.ts +29 -17
  671. package/components/Modal/ModalHeader.js +60 -59
  672. package/components/Modal/ModalHeader.js.map +1 -1
  673. package/components/Modal/ModalSeparator.d.ts +16 -0
  674. package/components/Modal/ModalSeparator.js +20 -0
  675. package/components/Modal/ModalSeparator.js.map +1 -0
  676. package/components/Modal/getModalBodyTheme.d.ts +2 -0
  677. package/components/Modal/getModalBodyTheme.js +7 -0
  678. package/components/Modal/getModalBodyTheme.js.map +1 -0
  679. package/components/Modal/getModalTheme.d.ts +2 -0
  680. package/components/Modal/getModalTheme.js +9 -0
  681. package/components/Modal/getModalTheme.js.map +1 -0
  682. package/components/Modal/index.d.ts +4 -1
  683. package/components/Modal/index.js +5 -4
  684. package/components/Modal/index.js.map +1 -1
  685. package/components/Modal/locale/index.d.ts +4 -0
  686. package/components/Modal/locale/index.js +9 -0
  687. package/components/Modal/locale/index.js.map +1 -0
  688. package/components/Modal/locale/locales/en.d.ts +2 -0
  689. package/components/Modal/locale/locales/en.js +4 -0
  690. package/components/Modal/locale/locales/en.js.map +1 -0
  691. package/components/Modal/locale/locales/ru.d.ts +2 -0
  692. package/components/Modal/locale/locales/ru.js +4 -0
  693. package/components/Modal/locale/locales/ru.js.map +1 -0
  694. package/components/Modal/locale/types.d.ts +3 -0
  695. package/components/Modal/locale/types.js +2 -0
  696. package/components/Modal/locale/types.js.map +1 -0
  697. package/components/Paging/DotsIcon.d.ts +3 -0
  698. package/components/Paging/DotsIcon.js +9 -0
  699. package/components/Paging/DotsIcon.js.map +1 -0
  700. package/components/Paging/ForwardIcon.d.ts +6 -0
  701. package/components/Paging/ForwardIcon.js +19 -0
  702. package/components/Paging/ForwardIcon.js.map +1 -0
  703. package/components/Paging/NavigationHelper.d.ts +7 -10
  704. package/components/Paging/NavigationHelper.js +17 -21
  705. package/components/Paging/NavigationHelper.js.map +1 -1
  706. package/components/Paging/Paging.d.ts +117 -94
  707. package/components/Paging/Paging.js +393 -301
  708. package/components/Paging/Paging.js.map +1 -1
  709. package/components/Paging/Paging.styles.d.ts +32 -11
  710. package/components/Paging/Paging.styles.js +99 -30
  711. package/components/Paging/Paging.styles.js.map +1 -1
  712. package/components/Paging/PagingDefaultComponent.d.ts +11 -0
  713. package/components/Paging/PagingDefaultComponent.js +30 -0
  714. package/components/Paging/PagingDefaultComponent.js.map +1 -0
  715. package/components/Paging/PagingHelper.d.ts +2 -6
  716. package/components/Paging/PagingHelper.js +29 -24
  717. package/components/Paging/PagingHelper.js.map +1 -1
  718. package/components/Paging/index.d.ts +1 -1
  719. package/components/Paging/index.js +2 -4
  720. package/components/Paging/index.js.map +1 -1
  721. package/components/Paging/locale/index.d.ts +4 -4
  722. package/components/Paging/locale/index.js +9 -9
  723. package/components/Paging/locale/index.js.map +1 -1
  724. package/components/Paging/locale/locales/en.d.ts +2 -3
  725. package/components/Paging/locale/locales/en.js +4 -6
  726. package/components/Paging/locale/locales/en.js.map +1 -1
  727. package/components/Paging/locale/locales/ru.d.ts +2 -3
  728. package/components/Paging/locale/locales/ru.js +4 -6
  729. package/components/Paging/locale/locales/ru.js.map +1 -1
  730. package/components/Paging/locale/types.d.ts +3 -3
  731. package/components/Paging/locale/types.js +2 -2
  732. package/components/Paging/locale/types.js.map +1 -1
  733. package/components/PasswordInput/ClosedIcon.d.ts +3 -0
  734. package/components/PasswordInput/ClosedIcon.js +11 -0
  735. package/components/PasswordInput/ClosedIcon.js.map +1 -0
  736. package/components/PasswordInput/OpenedIcon.d.ts +3 -0
  737. package/components/PasswordInput/OpenedIcon.js +11 -0
  738. package/components/PasswordInput/OpenedIcon.js.map +1 -0
  739. package/components/PasswordInput/PasswordInput.d.ts +62 -45
  740. package/components/PasswordInput/PasswordInput.js +184 -113
  741. package/components/PasswordInput/PasswordInput.js.map +1 -1
  742. package/components/PasswordInput/PasswordInput.styles.d.ts +11 -0
  743. package/components/PasswordInput/PasswordInput.styles.js +36 -0
  744. package/components/PasswordInput/PasswordInput.styles.js.map +1 -0
  745. package/components/PasswordInput/PasswordInputIcon.d.ts +4 -0
  746. package/components/PasswordInput/PasswordInputIcon.js +11 -0
  747. package/components/PasswordInput/PasswordInputIcon.js.map +1 -0
  748. package/components/PasswordInput/index.d.ts +1 -1
  749. package/components/PasswordInput/index.js +2 -4
  750. package/components/PasswordInput/index.js.map +1 -1
  751. package/components/PasswordInput/locale/index.d.ts +4 -0
  752. package/components/PasswordInput/locale/index.js +9 -0
  753. package/components/PasswordInput/locale/index.js.map +1 -0
  754. package/components/PasswordInput/locale/locales/en.d.ts +2 -0
  755. package/components/PasswordInput/locale/locales/en.js +5 -0
  756. package/components/PasswordInput/locale/locales/en.js.map +1 -0
  757. package/components/PasswordInput/locale/locales/ru.d.ts +2 -0
  758. package/components/PasswordInput/locale/locales/ru.js +5 -0
  759. package/components/PasswordInput/locale/locales/ru.js.map +1 -0
  760. package/components/PasswordInput/locale/types.d.ts +4 -0
  761. package/components/PasswordInput/locale/types.js +2 -0
  762. package/components/PasswordInput/locale/types.js.map +1 -0
  763. package/components/Radio/Radio.d.ts +87 -91
  764. package/components/Radio/Radio.js +245 -179
  765. package/components/Radio/Radio.js.map +1 -1
  766. package/components/Radio/Radio.mixins.d.ts +5 -0
  767. package/components/Radio/Radio.mixins.js +24 -0
  768. package/components/Radio/Radio.mixins.js.map +1 -0
  769. package/components/Radio/Radio.styles.d.ts +28 -11
  770. package/components/Radio/Radio.styles.js +82 -30
  771. package/components/Radio/Radio.styles.js.map +1 -1
  772. package/components/Radio/index.d.ts +1 -1
  773. package/components/Radio/index.js +2 -4
  774. package/components/Radio/index.js.map +1 -1
  775. package/components/RadioGroup/Prevent.d.ts +8 -9
  776. package/components/RadioGroup/Prevent.js +32 -19
  777. package/components/RadioGroup/Prevent.js.map +1 -1
  778. package/components/RadioGroup/RadioGroup.d.ts +86 -140
  779. package/components/RadioGroup/RadioGroup.js +170 -196
  780. package/components/RadioGroup/RadioGroup.js.map +1 -1
  781. package/components/RadioGroup/RadioGroup.styles.d.ts +6 -0
  782. package/components/RadioGroup/RadioGroup.styles.js +24 -0
  783. package/components/RadioGroup/RadioGroup.styles.js.map +1 -0
  784. package/components/RadioGroup/RadioGroupContext.d.ts +10 -0
  785. package/components/RadioGroup/RadioGroupContext.js +11 -0
  786. package/components/RadioGroup/RadioGroupContext.js.map +1 -0
  787. package/components/RadioGroup/index.d.ts +1 -1
  788. package/components/RadioGroup/index.js +2 -4
  789. package/components/RadioGroup/index.js.map +1 -1
  790. package/components/ResponsiveLayout/ResponsiveLayout.d.ts +19 -0
  791. package/components/ResponsiveLayout/ResponsiveLayout.js +31 -0
  792. package/components/ResponsiveLayout/ResponsiveLayout.js.map +1 -0
  793. package/components/ResponsiveLayout/ResponsiveLayoutEvents.d.ts +12 -0
  794. package/components/ResponsiveLayout/ResponsiveLayoutEvents.js +93 -0
  795. package/components/ResponsiveLayout/ResponsiveLayoutEvents.js.map +1 -0
  796. package/components/ResponsiveLayout/decorator.d.ts +2 -0
  797. package/components/ResponsiveLayout/decorator.js +60 -0
  798. package/components/ResponsiveLayout/decorator.js.map +1 -0
  799. package/components/ResponsiveLayout/index.d.ts +3 -0
  800. package/components/ResponsiveLayout/index.js +4 -0
  801. package/components/ResponsiveLayout/index.js.map +1 -0
  802. package/components/ResponsiveLayout/types.d.ts +11 -0
  803. package/components/ResponsiveLayout/types.js +2 -0
  804. package/components/ResponsiveLayout/types.js.map +1 -0
  805. package/components/ResponsiveLayout/useResponsiveLayout.d.ts +2 -0
  806. package/components/ResponsiveLayout/useResponsiveLayout.js +73 -0
  807. package/components/ResponsiveLayout/useResponsiveLayout.js.map +1 -0
  808. package/components/ScrollContainer/ScrollBar.d.ts +55 -0
  809. package/components/ScrollContainer/ScrollBar.js +227 -0
  810. package/components/ScrollContainer/ScrollBar.js.map +1 -0
  811. package/components/ScrollContainer/ScrollContainer.constants.d.ts +23 -0
  812. package/components/ScrollContainer/ScrollContainer.constants.js +32 -0
  813. package/components/ScrollContainer/ScrollContainer.constants.js.map +1 -0
  814. package/components/ScrollContainer/ScrollContainer.d.ts +114 -66
  815. package/components/ScrollContainer/ScrollContainer.helpers.d.ts +11 -0
  816. package/components/ScrollContainer/ScrollContainer.helpers.js +50 -0
  817. package/components/ScrollContainer/ScrollContainer.helpers.js.map +1 -0
  818. package/components/ScrollContainer/ScrollContainer.js +295 -256
  819. package/components/ScrollContainer/ScrollContainer.js.map +1 -1
  820. package/components/ScrollContainer/ScrollContainer.styles.d.ts +21 -0
  821. package/components/ScrollContainer/ScrollContainer.styles.js +52 -0
  822. package/components/ScrollContainer/ScrollContainer.styles.js.map +1 -0
  823. package/components/ScrollContainer/index.d.ts +1 -1
  824. package/components/ScrollContainer/index.js +2 -4
  825. package/components/ScrollContainer/index.js.map +1 -1
  826. package/components/Select/ArrowDownIcon.d.ts +3 -0
  827. package/components/Select/ArrowDownIcon.js +11 -0
  828. package/components/Select/ArrowDownIcon.js.map +1 -0
  829. package/components/Select/Item.d.ts +13 -8
  830. package/components/Select/Item.js +31 -17
  831. package/components/Select/Item.js.map +1 -1
  832. package/components/Select/Select.d.ts +207 -179
  833. package/components/Select/Select.js +485 -393
  834. package/components/Select/Select.js.map +1 -1
  835. package/components/Select/Select.styles.d.ts +18 -6
  836. package/components/Select/Select.styles.js +57 -15
  837. package/components/Select/Select.styles.js.map +1 -1
  838. package/components/Select/index.d.ts +1 -1
  839. package/components/Select/index.js +2 -4
  840. package/components/Select/index.js.map +1 -1
  841. package/components/Select/locale/index.d.ts +4 -4
  842. package/components/Select/locale/index.js +9 -9
  843. package/components/Select/locale/index.js.map +1 -1
  844. package/components/Select/locale/locales/en.d.ts +2 -3
  845. package/components/Select/locale/locales/en.js +4 -6
  846. package/components/Select/locale/locales/en.js.map +1 -1
  847. package/components/Select/locale/locales/ru.d.ts +2 -3
  848. package/components/Select/locale/locales/ru.js +4 -6
  849. package/components/Select/locale/locales/ru.js.map +1 -1
  850. package/components/Select/locale/types.d.ts +4 -4
  851. package/components/Select/locale/types.js +2 -2
  852. package/components/Select/locale/types.js.map +1 -1
  853. package/components/Select/selectTheme.d.ts +3 -0
  854. package/components/Select/selectTheme.js +37 -0
  855. package/components/Select/selectTheme.js.map +1 -0
  856. package/components/Select/tids.d.ts +5 -0
  857. package/components/Select/tids.js +6 -0
  858. package/components/Select/tids.js.map +1 -0
  859. package/components/SidePage/SidePage.d.ts +117 -86
  860. package/components/SidePage/SidePage.js +303 -179
  861. package/components/SidePage/SidePage.js.map +1 -1
  862. package/components/SidePage/SidePage.styles.d.ts +49 -10
  863. package/components/SidePage/SidePage.styles.js +155 -27
  864. package/components/SidePage/SidePage.styles.js.map +1 -1
  865. package/components/SidePage/SidePageBody.d.ts +29 -13
  866. package/components/SidePage/SidePageBody.js +78 -26
  867. package/components/SidePage/SidePageBody.js.map +1 -1
  868. package/components/SidePage/SidePageCloseButton.d.ts +11 -0
  869. package/components/SidePage/SidePageCloseButton.js +42 -0
  870. package/components/SidePage/SidePageCloseButton.js.map +1 -0
  871. package/components/SidePage/SidePageContainer.d.ts +25 -5
  872. package/components/SidePage/SidePageContainer.js +88 -17
  873. package/components/SidePage/SidePageContainer.js.map +1 -1
  874. package/components/SidePage/SidePageContext.d.ts +17 -8
  875. package/components/SidePage/SidePageContext.js +10 -9
  876. package/components/SidePage/SidePageContext.js.map +1 -1
  877. package/components/SidePage/SidePageFooter.d.ts +54 -34
  878. package/components/SidePage/SidePageFooter.js +153 -91
  879. package/components/SidePage/SidePageFooter.js.map +1 -1
  880. package/components/SidePage/SidePageHeader.d.ts +55 -27
  881. package/components/SidePage/SidePageHeader.js +152 -88
  882. package/components/SidePage/SidePageHeader.js.map +1 -1
  883. package/components/SidePage/index.d.ts +5 -1
  884. package/components/SidePage/index.js +6 -4
  885. package/components/SidePage/index.js.map +1 -1
  886. package/components/SidePage/locale/index.d.ts +4 -0
  887. package/components/SidePage/locale/index.js +9 -0
  888. package/components/SidePage/locale/index.js.map +1 -0
  889. package/components/SidePage/locale/locales/en.d.ts +2 -0
  890. package/components/SidePage/locale/locales/en.js +4 -0
  891. package/components/SidePage/locale/locales/en.js.map +1 -0
  892. package/components/SidePage/locale/locales/ru.d.ts +2 -0
  893. package/components/SidePage/locale/locales/ru.js +4 -0
  894. package/components/SidePage/locale/locales/ru.js.map +1 -0
  895. package/components/SidePage/locale/types.d.ts +3 -0
  896. package/components/SidePage/locale/types.js +2 -0
  897. package/components/SidePage/locale/types.js.map +1 -0
  898. package/components/SingleToast/SingleToast.d.ts +31 -0
  899. package/components/SingleToast/SingleToast.js +77 -0
  900. package/components/SingleToast/SingleToast.js.map +1 -0
  901. package/components/SingleToast/index.d.ts +1 -0
  902. package/components/SingleToast/index.js +2 -0
  903. package/components/SingleToast/index.js.map +1 -0
  904. package/components/Spinner/Spinner.d.ts +64 -48
  905. package/components/Spinner/Spinner.js +103 -93
  906. package/components/Spinner/Spinner.js.map +1 -1
  907. package/components/Spinner/Spinner.styles.d.ts +16 -11
  908. package/components/Spinner/Spinner.styles.js +52 -30
  909. package/components/Spinner/Spinner.styles.js.map +1 -1
  910. package/components/Spinner/index.d.ts +1 -1
  911. package/components/Spinner/index.js +2 -4
  912. package/components/Spinner/index.js.map +1 -1
  913. package/components/Sticky/Sticky.d.ts +63 -58
  914. package/components/Sticky/Sticky.js +182 -130
  915. package/components/Sticky/Sticky.js.map +1 -1
  916. package/components/Sticky/Sticky.styles.d.ts +7 -0
  917. package/components/Sticky/Sticky.styles.js +27 -0
  918. package/components/Sticky/Sticky.styles.js.map +1 -0
  919. package/components/Sticky/index.d.ts +1 -1
  920. package/components/Sticky/index.js +2 -4
  921. package/components/Sticky/index.js.map +1 -1
  922. package/components/Switcher/Switcher.d.ts +73 -55
  923. package/components/Switcher/Switcher.js +211 -132
  924. package/components/Switcher/Switcher.js.map +1 -1
  925. package/components/Switcher/Switcher.styles.d.ts +12 -5
  926. package/components/Switcher/Switcher.styles.js +39 -11
  927. package/components/Switcher/Switcher.styles.js.map +1 -1
  928. package/components/Switcher/helpers.d.ts +1 -0
  929. package/components/Switcher/helpers.js +2 -0
  930. package/components/Switcher/helpers.js.map +1 -0
  931. package/components/Switcher/index.d.ts +1 -1
  932. package/components/Switcher/index.js +2 -4
  933. package/components/Switcher/index.js.map +1 -1
  934. package/components/Switcher/switcherTheme.d.ts +2 -0
  935. package/components/Switcher/switcherTheme.js +24 -0
  936. package/components/Switcher/switcherTheme.js.map +1 -0
  937. package/components/Tabs/Indicator.d.ts +34 -29
  938. package/components/Tabs/Indicator.js +118 -96
  939. package/components/Tabs/Indicator.js.map +1 -1
  940. package/components/Tabs/Indicator.styles.d.ts +9 -9
  941. package/components/Tabs/Indicator.styles.js +30 -23
  942. package/components/Tabs/Indicator.styles.js.map +1 -1
  943. package/components/Tabs/Tab.d.ts +83 -135
  944. package/components/Tabs/Tab.js +216 -193
  945. package/components/Tabs/Tab.js.map +1 -1
  946. package/components/Tabs/Tab.styles.d.ts +33 -12
  947. package/components/Tabs/Tab.styles.js +105 -34
  948. package/components/Tabs/Tab.styles.js.map +1 -1
  949. package/components/Tabs/Tabs.d.ts +57 -66
  950. package/components/Tabs/Tabs.js +140 -96
  951. package/components/Tabs/Tabs.js.map +1 -1
  952. package/components/Tabs/Tabs.styles.d.ts +7 -0
  953. package/components/Tabs/Tabs.styles.js +26 -0
  954. package/components/Tabs/Tabs.styles.js.map +1 -0
  955. package/components/Tabs/TabsContext.d.ts +16 -12
  956. package/components/Tabs/TabsContext.js +16 -14
  957. package/components/Tabs/TabsContext.js.map +1 -1
  958. package/components/Tabs/helpers.d.ts +6 -0
  959. package/components/Tabs/helpers.js +25 -0
  960. package/components/Tabs/helpers.js.map +1 -0
  961. package/components/Tabs/index.d.ts +2 -1
  962. package/components/Tabs/index.js +3 -4
  963. package/components/Tabs/index.js.map +1 -1
  964. package/components/Textarea/Textarea.d.ts +134 -140
  965. package/components/Textarea/Textarea.js +374 -244
  966. package/components/Textarea/Textarea.js.map +1 -1
  967. package/components/Textarea/Textarea.mixins.d.ts +3 -0
  968. package/components/Textarea/Textarea.mixins.js +10 -0
  969. package/components/Textarea/Textarea.mixins.js.map +1 -0
  970. package/components/Textarea/Textarea.styles.d.ts +25 -8
  971. package/components/Textarea/Textarea.styles.js +79 -21
  972. package/components/Textarea/Textarea.styles.js.map +1 -1
  973. package/components/Textarea/TextareaCounter.d.ts +14 -0
  974. package/components/Textarea/TextareaCounter.js +69 -0
  975. package/components/Textarea/TextareaCounter.js.map +1 -0
  976. package/components/Textarea/TextareaHelpers.d.ts +12 -4
  977. package/components/Textarea/TextareaHelpers.js +21 -17
  978. package/components/Textarea/TextareaHelpers.js.map +1 -1
  979. package/components/Textarea/TextareaWithSafari17Workaround.d.ts +7 -0
  980. package/components/Textarea/TextareaWithSafari17Workaround.js +26 -0
  981. package/components/Textarea/TextareaWithSafari17Workaround.js.map +1 -0
  982. package/components/Textarea/index.d.ts +1 -1
  983. package/components/Textarea/index.js +2 -4
  984. package/components/Textarea/index.js.map +1 -1
  985. package/components/Toast/Toast.d.ts +98 -54
  986. package/components/Toast/Toast.js +178 -107
  987. package/components/Toast/Toast.js.map +1 -1
  988. package/components/Toast/Toast.styles.d.ts +6 -0
  989. package/components/Toast/Toast.styles.js +24 -0
  990. package/components/Toast/Toast.styles.js.map +1 -0
  991. package/components/Toast/ToastView.d.ts +31 -33
  992. package/components/Toast/ToastView.js +84 -50
  993. package/components/Toast/ToastView.js.map +1 -1
  994. package/components/Toast/ToastView.styles.d.ts +11 -7
  995. package/components/Toast/ToastView.styles.js +45 -17
  996. package/components/Toast/ToastView.styles.js.map +1 -1
  997. package/components/Toast/index.d.ts +1 -1
  998. package/components/Toast/index.js +2 -4
  999. package/components/Toast/index.js.map +1 -1
  1000. package/components/Toast/locale/index.d.ts +4 -0
  1001. package/components/Toast/locale/index.js +9 -0
  1002. package/components/Toast/locale/index.js.map +1 -0
  1003. package/components/Toast/locale/locales/en.d.ts +2 -0
  1004. package/components/Toast/locale/locales/en.js +4 -0
  1005. package/components/Toast/locale/locales/en.js.map +1 -0
  1006. package/components/Toast/locale/locales/ru.d.ts +2 -0
  1007. package/components/Toast/locale/locales/ru.js +4 -0
  1008. package/components/Toast/locale/locales/ru.js.map +1 -0
  1009. package/components/Toast/locale/types.d.ts +3 -0
  1010. package/components/Toast/locale/types.js +2 -0
  1011. package/components/Toast/locale/types.js.map +1 -0
  1012. package/components/Toggle/Toggle.d.ts +91 -51
  1013. package/components/Toggle/Toggle.js +246 -115
  1014. package/components/Toggle/Toggle.js.map +1 -1
  1015. package/components/Toggle/Toggle.mixins.d.ts +6 -0
  1016. package/components/Toggle/Toggle.mixins.js +26 -0
  1017. package/components/Toggle/Toggle.mixins.js.map +1 -0
  1018. package/components/Toggle/Toggle.styles.d.ts +46 -12
  1019. package/components/Toggle/Toggle.styles.js +126 -33
  1020. package/components/Toggle/Toggle.styles.js.map +1 -1
  1021. package/components/Toggle/index.d.ts +1 -1
  1022. package/components/Toggle/index.js +2 -4
  1023. package/components/Toggle/index.js.map +1 -1
  1024. package/components/Token/Token.d.ts +54 -29
  1025. package/components/Token/Token.js +95 -77
  1026. package/components/Token/Token.js.map +1 -1
  1027. package/components/Token/Token.mixins.d.ts +1 -0
  1028. package/components/Token/Token.mixins.js +4 -0
  1029. package/components/Token/Token.mixins.js.map +1 -0
  1030. package/components/Token/Token.styles.d.ts +23 -22
  1031. package/components/Token/Token.styles.js +67 -38
  1032. package/components/Token/Token.styles.js.map +1 -1
  1033. package/components/Token/TokenView.d.ts +13 -0
  1034. package/components/Token/TokenView.js +53 -0
  1035. package/components/Token/TokenView.js.map +1 -0
  1036. package/components/Token/index.d.ts +1 -1
  1037. package/components/Token/index.js +2 -4
  1038. package/components/Token/index.js.map +1 -1
  1039. package/components/Token/locale/index.d.ts +4 -0
  1040. package/components/Token/locale/index.js +9 -0
  1041. package/components/Token/locale/index.js.map +1 -0
  1042. package/components/Token/locale/locales/en.d.ts +2 -0
  1043. package/components/Token/locale/locales/en.js +4 -0
  1044. package/components/Token/locale/locales/en.js.map +1 -0
  1045. package/components/Token/locale/locales/ru.d.ts +2 -0
  1046. package/components/Token/locale/locales/ru.js +4 -0
  1047. package/components/Token/locale/locales/ru.js.map +1 -0
  1048. package/components/Token/locale/types.d.ts +3 -0
  1049. package/components/Token/locale/types.js +2 -0
  1050. package/components/Token/locale/types.js.map +1 -0
  1051. package/components/TokenInput/TextWidthHelper.d.ts +26 -10
  1052. package/components/TokenInput/TextWidthHelper.js +72 -29
  1053. package/components/TokenInput/TextWidthHelper.js.map +1 -1
  1054. package/components/TokenInput/TokenInput.d.ts +239 -134
  1055. package/components/TokenInput/TokenInput.js +978 -561
  1056. package/components/TokenInput/TokenInput.js.map +1 -1
  1057. package/components/TokenInput/TokenInput.mixins.d.ts +2 -0
  1058. package/components/TokenInput/TokenInput.mixins.js +7 -0
  1059. package/components/TokenInput/TokenInput.mixins.js.map +1 -0
  1060. package/components/TokenInput/TokenInput.styles.d.ts +19 -11
  1061. package/components/TokenInput/TokenInput.styles.js +61 -30
  1062. package/components/TokenInput/TokenInput.styles.js.map +1 -1
  1063. package/components/TokenInput/TokenInputMenu.d.ts +39 -12
  1064. package/components/TokenInput/TokenInputMenu.js +79 -24
  1065. package/components/TokenInput/TokenInputMenu.js.map +1 -1
  1066. package/components/TokenInput/TokenInputReducer.d.ts +25 -92
  1067. package/components/TokenInput/TokenInputReducer.js +81 -63
  1068. package/components/TokenInput/TokenInputReducer.js.map +1 -1
  1069. package/components/TokenInput/index.d.ts +1 -1
  1070. package/components/TokenInput/index.js +2 -5
  1071. package/components/TokenInput/index.js.map +1 -1
  1072. package/components/TokenInput/locale/index.d.ts +4 -4
  1073. package/components/TokenInput/locale/index.js +9 -9
  1074. package/components/TokenInput/locale/index.js.map +1 -1
  1075. package/components/TokenInput/locale/locales/en.d.ts +2 -3
  1076. package/components/TokenInput/locale/locales/en.js +5 -7
  1077. package/components/TokenInput/locale/locales/en.js.map +1 -1
  1078. package/components/TokenInput/locale/locales/ru.d.ts +2 -3
  1079. package/components/TokenInput/locale/locales/ru.js +5 -7
  1080. package/components/TokenInput/locale/locales/ru.js.map +1 -1
  1081. package/components/TokenInput/locale/types.d.ts +4 -4
  1082. package/components/TokenInput/locale/types.js +2 -2
  1083. package/components/TokenInput/locale/types.js.map +1 -1
  1084. package/components/Tooltip/Tooltip.d.ts +141 -149
  1085. package/components/Tooltip/Tooltip.js +404 -259
  1086. package/components/Tooltip/Tooltip.js.map +1 -1
  1087. package/components/Tooltip/Tooltip.styles.d.ts +11 -5
  1088. package/components/Tooltip/Tooltip.styles.js +36 -11
  1089. package/components/Tooltip/Tooltip.styles.js.map +1 -1
  1090. package/components/Tooltip/index.d.ts +1 -1
  1091. package/components/Tooltip/index.js +2 -4
  1092. package/components/Tooltip/index.js.map +1 -1
  1093. package/components/TooltipMenu/TooltipMenu.d.ts +58 -44
  1094. package/components/TooltipMenu/TooltipMenu.js +96 -34
  1095. package/components/TooltipMenu/TooltipMenu.js.map +1 -1
  1096. package/components/TooltipMenu/index.d.ts +1 -1
  1097. package/components/TooltipMenu/index.js +2 -4
  1098. package/components/TooltipMenu/index.js.map +1 -1
  1099. package/hooks/useDrop.d.ts +11 -0
  1100. package/hooks/useDrop.js +49 -0
  1101. package/hooks/useDrop.js.map +1 -0
  1102. package/hooks/useEffectWithoutInitCall.d.ts +2 -0
  1103. package/hooks/useEffectWithoutInitCall.js +16 -0
  1104. package/hooks/useEffectWithoutInitCall.js.map +1 -0
  1105. package/hooks/useMemoObject.d.ts +2 -0
  1106. package/hooks/useMemoObject.js +5 -0
  1107. package/hooks/useMemoObject.js.map +1 -0
  1108. package/index.d.ts +62 -0
  1109. package/index.js +62 -0
  1110. package/index.js.map +1 -0
  1111. package/internal/ClearCrossIcon/ClearCrossIcon.d.ts +11 -0
  1112. package/internal/ClearCrossIcon/ClearCrossIcon.js +68 -0
  1113. package/internal/ClearCrossIcon/ClearCrossIcon.js.map +1 -0
  1114. package/internal/ClearCrossIcon/ClearCrossIcon.styles.d.ts +12 -0
  1115. package/internal/ClearCrossIcon/ClearCrossIcon.styles.js +36 -0
  1116. package/internal/ClearCrossIcon/ClearCrossIcon.styles.js.map +1 -0
  1117. package/internal/ClearCrossIcon/CrossIcon.d.ts +3 -0
  1118. package/internal/ClearCrossIcon/CrossIcon.js +11 -0
  1119. package/internal/ClearCrossIcon/CrossIcon.js.map +1 -0
  1120. package/internal/CloseButtonIcon/CloseButtonIcon.d.ts +36 -0
  1121. package/internal/CloseButtonIcon/CloseButtonIcon.js +63 -0
  1122. package/internal/CloseButtonIcon/CloseButtonIcon.js.map +1 -0
  1123. package/internal/CloseButtonIcon/CloseButtonIcon.styles.d.ts +8 -0
  1124. package/internal/CloseButtonIcon/CloseButtonIcon.styles.js +24 -0
  1125. package/internal/CloseButtonIcon/CloseButtonIcon.styles.js.map +1 -0
  1126. package/internal/CloseButtonIcon/CrossIcon.d.ts +3 -0
  1127. package/internal/CloseButtonIcon/CrossIcon.js +10 -0
  1128. package/internal/CloseButtonIcon/CrossIcon.js.map +1 -0
  1129. package/internal/CommonWrapper/CommonWrapper.d.ts +15 -0
  1130. package/internal/CommonWrapper/CommonWrapper.js +105 -0
  1131. package/internal/CommonWrapper/CommonWrapper.js.map +1 -0
  1132. package/internal/CommonWrapper/index.d.ts +3 -0
  1133. package/internal/CommonWrapper/index.js +2 -0
  1134. package/internal/CommonWrapper/index.js.map +1 -0
  1135. package/internal/CommonWrapper/types.d.ts +25 -0
  1136. package/internal/CommonWrapper/types.js +2 -0
  1137. package/internal/CommonWrapper/types.js.map +1 -0
  1138. package/internal/CommonWrapper/utils/extractCommonProps.d.ts +3 -0
  1139. package/internal/CommonWrapper/utils/extractCommonProps.js +28 -0
  1140. package/internal/CommonWrapper/utils/extractCommonProps.js.map +1 -0
  1141. package/internal/CommonWrapper/utils/getCommonVisualStateDataAttributes.d.ts +2 -0
  1142. package/internal/CommonWrapper/utils/getCommonVisualStateDataAttributes.js +9 -0
  1143. package/internal/CommonWrapper/utils/getCommonVisualStateDataAttributes.js.map +1 -0
  1144. package/internal/CommonWrapper/utils/getVisualStateDataAttributes.d.ts +3 -0
  1145. package/internal/CommonWrapper/utils/getVisualStateDataAttributes.js +12 -0
  1146. package/internal/CommonWrapper/utils/getVisualStateDataAttributes.js.map +1 -0
  1147. package/internal/CommonWrapper/utils/tryGetBoolean.d.ts +1 -0
  1148. package/internal/CommonWrapper/utils/tryGetBoolean.js +2 -0
  1149. package/internal/CommonWrapper/utils/tryGetBoolean.js.map +1 -0
  1150. package/internal/CustomComboBox/ArrowDownIcon.d.ts +3 -0
  1151. package/internal/CustomComboBox/ArrowDownIcon.js +11 -0
  1152. package/internal/CustomComboBox/ArrowDownIcon.js.map +1 -0
  1153. package/internal/CustomComboBox/ComboBoxMenu.d.ts +48 -0
  1154. package/internal/CustomComboBox/ComboBoxMenu.js +136 -0
  1155. package/internal/CustomComboBox/ComboBoxMenu.js.map +1 -0
  1156. package/internal/CustomComboBox/ComboBoxView.d.ts +129 -0
  1157. package/internal/CustomComboBox/ComboBoxView.js +272 -0
  1158. package/internal/CustomComboBox/ComboBoxView.js.map +1 -0
  1159. package/internal/CustomComboBox/CustomComboBox.d.ts +161 -0
  1160. package/internal/CustomComboBox/CustomComboBox.js +430 -0
  1161. package/internal/CustomComboBox/CustomComboBox.js.map +1 -0
  1162. package/internal/CustomComboBox/CustomComboBox.styles.d.ts +4 -0
  1163. package/internal/CustomComboBox/CustomComboBox.styles.js +18 -0
  1164. package/internal/CustomComboBox/CustomComboBox.styles.js.map +1 -0
  1165. package/internal/CustomComboBox/CustomComboBoxReducer.d.ts +77 -0
  1166. package/internal/CustomComboBox/CustomComboBoxReducer.js +368 -0
  1167. package/internal/CustomComboBox/CustomComboBoxReducer.js.map +1 -0
  1168. package/internal/CustomComboBox/CustomComboBoxTypes.d.ts +6 -0
  1169. package/internal/CustomComboBox/CustomComboBoxTypes.js +8 -0
  1170. package/internal/CustomComboBox/CustomComboBoxTypes.js.map +1 -0
  1171. package/internal/CustomComboBox/getComboBoxTheme.d.ts +2 -0
  1172. package/internal/CustomComboBox/getComboBoxTheme.js +7 -0
  1173. package/internal/CustomComboBox/getComboBoxTheme.js.map +1 -0
  1174. package/internal/CustomComboBox/index.d.ts +2 -0
  1175. package/internal/CustomComboBox/index.js +3 -0
  1176. package/internal/CustomComboBox/index.js.map +1 -0
  1177. package/internal/CustomComboBox/locale/index.d.ts +4 -0
  1178. package/internal/CustomComboBox/locale/index.js +9 -0
  1179. package/internal/CustomComboBox/locale/index.js.map +1 -0
  1180. package/internal/CustomComboBox/locale/locales/en.d.ts +2 -0
  1181. package/internal/CustomComboBox/locale/locales/en.js +6 -0
  1182. package/internal/CustomComboBox/locale/locales/en.js.map +1 -0
  1183. package/internal/CustomComboBox/locale/locales/ru.d.ts +2 -0
  1184. package/internal/CustomComboBox/locale/locales/ru.js +6 -0
  1185. package/internal/CustomComboBox/locale/locales/ru.js.map +1 -0
  1186. package/internal/CustomComboBox/locale/types.d.ts +5 -0
  1187. package/internal/CustomComboBox/locale/types.js +2 -0
  1188. package/internal/CustomComboBox/locale/types.js.map +1 -0
  1189. package/internal/CustomComboBox/tids.d.ts +3 -0
  1190. package/internal/CustomComboBox/tids.js +4 -0
  1191. package/internal/CustomComboBox/tids.js.map +1 -0
  1192. package/internal/DateSelect/DateSelect.d.ts +38 -0
  1193. package/internal/DateSelect/DateSelect.js +167 -0
  1194. package/internal/DateSelect/DateSelect.js.map +1 -0
  1195. package/internal/DateSelect/DateSelect.styles.d.ts +9 -0
  1196. package/internal/DateSelect/DateSelect.styles.js +24 -0
  1197. package/internal/DateSelect/DateSelect.styles.js.map +1 -0
  1198. package/internal/DateSelect/index.d.ts +1 -0
  1199. package/internal/DateSelect/index.js +2 -0
  1200. package/internal/DateSelect/index.js.map +1 -0
  1201. package/internal/DateSelect/locale/index.d.ts +4 -0
  1202. package/internal/DateSelect/locale/index.js +9 -0
  1203. package/internal/DateSelect/locale/index.js.map +1 -0
  1204. package/internal/DateSelect/locale/locales/en.d.ts +2 -0
  1205. package/internal/DateSelect/locale/locales/en.js +7 -0
  1206. package/internal/DateSelect/locale/locales/en.js.map +1 -0
  1207. package/internal/DateSelect/locale/locales/ru.d.ts +2 -0
  1208. package/internal/DateSelect/locale/locales/ru.js +7 -0
  1209. package/internal/DateSelect/locale/locales/ru.js.map +1 -0
  1210. package/internal/DateSelect/locale/types.d.ts +6 -0
  1211. package/internal/DateSelect/locale/types.js +2 -0
  1212. package/internal/DateSelect/locale/types.js.map +1 -0
  1213. package/internal/FocusControlWrapper/FocusControlWrapper.d.ts +17 -0
  1214. package/internal/FocusControlWrapper/FocusControlWrapper.js +45 -0
  1215. package/internal/FocusControlWrapper/FocusControlWrapper.js.map +1 -0
  1216. package/internal/FocusControlWrapper/index.d.ts +1 -0
  1217. package/internal/FocusControlWrapper/index.js +2 -0
  1218. package/internal/FocusControlWrapper/index.js.map +1 -0
  1219. package/internal/FocusControlWrapper/useFocusControl.d.ts +12 -0
  1220. package/internal/FocusControlWrapper/useFocusControl.js +24 -0
  1221. package/internal/FocusControlWrapper/useFocusControl.js.map +1 -0
  1222. package/internal/FocusTrap/FocusTrap.d.ts +21 -0
  1223. package/internal/FocusTrap/FocusTrap.js +109 -0
  1224. package/internal/FocusTrap/FocusTrap.js.map +1 -0
  1225. package/internal/FocusTrap/index.d.ts +1 -0
  1226. package/internal/FocusTrap/index.js +2 -0
  1227. package/internal/FocusTrap/index.js.map +1 -0
  1228. package/internal/HideBodyVerticalScroll/HideBodyVerticalScroll.d.ts +18 -0
  1229. package/internal/HideBodyVerticalScroll/HideBodyVerticalScroll.js +128 -0
  1230. package/internal/HideBodyVerticalScroll/HideBodyVerticalScroll.js.map +1 -0
  1231. package/internal/HideBodyVerticalScroll/index.d.ts +1 -0
  1232. package/internal/HideBodyVerticalScroll/index.js +2 -0
  1233. package/internal/HideBodyVerticalScroll/index.js.map +1 -0
  1234. package/internal/InputLikeText/InputLikeText.d.ts +75 -0
  1235. package/internal/InputLikeText/InputLikeText.js +321 -0
  1236. package/internal/InputLikeText/InputLikeText.js.map +1 -0
  1237. package/internal/InputLikeText/InputLikeText.styles.d.ts +8 -0
  1238. package/internal/InputLikeText/InputLikeText.styles.js +30 -0
  1239. package/internal/InputLikeText/InputLikeText.styles.js.map +1 -0
  1240. package/internal/InputLikeText/index.d.ts +1 -0
  1241. package/internal/InputLikeText/index.js +2 -0
  1242. package/internal/InputLikeText/index.js.map +1 -0
  1243. package/internal/InternalTextareaWithLayout/InternalTextareaWithLayout.d.ts +43 -0
  1244. package/internal/InternalTextareaWithLayout/InternalTextareaWithLayout.js +237 -0
  1245. package/internal/InternalTextareaWithLayout/InternalTextareaWithLayout.js.map +1 -0
  1246. package/internal/InternalTextareaWithLayout/InternalTextareaWithLayout.styles.d.ts +3 -0
  1247. package/internal/InternalTextareaWithLayout/InternalTextareaWithLayout.styles.js +15 -0
  1248. package/internal/InternalTextareaWithLayout/InternalTextareaWithLayout.styles.js.map +1 -0
  1249. package/internal/MaskCharLowLine/MaskCharLowLine.d.ts +10 -0
  1250. package/internal/MaskCharLowLine/MaskCharLowLine.js +16 -0
  1251. package/internal/MaskCharLowLine/MaskCharLowLine.js.map +1 -0
  1252. package/internal/MaskCharLowLine/MaskCharLowLine.styles.d.ts +3 -0
  1253. package/internal/MaskCharLowLine/MaskCharLowLine.styles.js +15 -0
  1254. package/internal/MaskCharLowLine/MaskCharLowLine.styles.js.map +1 -0
  1255. package/internal/MaskCharLowLine/index.d.ts +1 -0
  1256. package/internal/MaskCharLowLine/index.js +2 -0
  1257. package/internal/MaskCharLowLine/index.js.map +1 -0
  1258. package/internal/Menu/Menu.d.ts +111 -0
  1259. package/internal/Menu/Menu.js +359 -0
  1260. package/internal/Menu/Menu.js.map +1 -0
  1261. package/internal/Menu/Menu.styles.d.ts +15 -0
  1262. package/internal/Menu/Menu.styles.js +48 -0
  1263. package/internal/Menu/Menu.styles.js.map +1 -0
  1264. package/internal/Menu/MenuContext.d.ts +10 -0
  1265. package/internal/Menu/MenuContext.js +6 -0
  1266. package/internal/Menu/MenuContext.js.map +1 -0
  1267. package/internal/Menu/MenuNavigation.d.ts +27 -0
  1268. package/internal/Menu/MenuNavigation.js +95 -0
  1269. package/internal/Menu/MenuNavigation.js.map +1 -0
  1270. package/internal/Menu/index.d.ts +1 -0
  1271. package/internal/Menu/index.js +2 -0
  1272. package/internal/Menu/index.js.map +1 -0
  1273. package/internal/MenuMessage/MenuMessage.d.ts +12 -0
  1274. package/internal/MenuMessage/MenuMessage.js +55 -0
  1275. package/internal/MenuMessage/MenuMessage.js.map +1 -0
  1276. package/internal/MenuMessage/MenuMessage.styles.d.ts +8 -0
  1277. package/internal/MenuMessage/MenuMessage.styles.js +32 -0
  1278. package/internal/MenuMessage/MenuMessage.styles.js.map +1 -0
  1279. package/internal/MenuMessage/index.d.ts +1 -0
  1280. package/internal/MenuMessage/index.js +2 -0
  1281. package/internal/MenuMessage/index.js.map +1 -0
  1282. package/internal/MobilePopup/MobilePopup.d.ts +53 -0
  1283. package/internal/MobilePopup/MobilePopup.js +87 -0
  1284. package/internal/MobilePopup/MobilePopup.js.map +1 -0
  1285. package/internal/MobilePopup/MobilePopup.styles.d.ts +10 -0
  1286. package/internal/MobilePopup/MobilePopup.styles.js +33 -0
  1287. package/internal/MobilePopup/MobilePopup.styles.js.map +1 -0
  1288. package/internal/MobilePopup/MobilePopupFooter/MobilePopupFooter.d.ts +9 -0
  1289. package/internal/MobilePopup/MobilePopupFooter/MobilePopupFooter.js +53 -0
  1290. package/internal/MobilePopup/MobilePopupFooter/MobilePopupFooter.js.map +1 -0
  1291. package/internal/MobilePopup/MobilePopupFooter/MobilePopupFooter.styles.d.ts +4 -0
  1292. package/internal/MobilePopup/MobilePopupFooter/MobilePopupFooter.styles.js +15 -0
  1293. package/internal/MobilePopup/MobilePopupFooter/MobilePopupFooter.styles.js.map +1 -0
  1294. package/internal/MobilePopup/MobilePopupFooter/index.d.ts +1 -0
  1295. package/internal/MobilePopup/MobilePopupFooter/index.js +2 -0
  1296. package/internal/MobilePopup/MobilePopupFooter/index.js.map +1 -0
  1297. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.d.ts +18 -0
  1298. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.js +62 -0
  1299. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.js.map +1 -0
  1300. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.styles.d.ts +8 -0
  1301. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.styles.js +27 -0
  1302. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.styles.js.map +1 -0
  1303. package/internal/MobilePopup/MobilePopupHeader/index.d.ts +1 -0
  1304. package/internal/MobilePopup/MobilePopupHeader/index.js +2 -0
  1305. package/internal/MobilePopup/MobilePopupHeader/index.js.map +1 -0
  1306. package/internal/MobilePopup/index.d.ts +1 -0
  1307. package/internal/MobilePopup/index.js +2 -0
  1308. package/internal/MobilePopup/index.js.map +1 -0
  1309. package/internal/NativeDateInput/NativeDateInput.d.ts +26 -0
  1310. package/internal/NativeDateInput/NativeDateInput.js +70 -0
  1311. package/internal/NativeDateInput/NativeDateInput.js.map +1 -0
  1312. package/internal/NativeDateInput/NativeDateInput.styles.d.ts +3 -0
  1313. package/internal/NativeDateInput/NativeDateInput.styles.js +15 -0
  1314. package/internal/NativeDateInput/NativeDateInput.styles.js.map +1 -0
  1315. package/internal/NativeDateInput/index.d.ts +1 -0
  1316. package/internal/NativeDateInput/index.js +2 -0
  1317. package/internal/NativeDateInput/index.js.map +1 -0
  1318. package/internal/NativeDateInput/utils.d.ts +7 -0
  1319. package/internal/NativeDateInput/utils.js +47 -0
  1320. package/internal/NativeDateInput/utils.js.map +1 -0
  1321. package/internal/Popup/Popup.d.ts +191 -0
  1322. package/internal/Popup/Popup.js +591 -0
  1323. package/internal/Popup/Popup.js.map +1 -0
  1324. package/internal/Popup/Popup.styles.d.ts +17 -0
  1325. package/internal/Popup/Popup.styles.js +54 -0
  1326. package/internal/Popup/Popup.styles.js.map +1 -0
  1327. package/internal/Popup/PopupHelper.d.ts +27 -0
  1328. package/internal/Popup/PopupHelper.js +95 -0
  1329. package/internal/Popup/PopupHelper.js.map +1 -0
  1330. package/internal/Popup/PopupPin.d.ts +34 -0
  1331. package/internal/Popup/PopupPin.js +183 -0
  1332. package/internal/Popup/PopupPin.js.map +1 -0
  1333. package/internal/Popup/PopupPin.styles.d.ts +7 -0
  1334. package/internal/Popup/PopupPin.styles.js +27 -0
  1335. package/internal/Popup/PopupPin.styles.js.map +1 -0
  1336. package/internal/Popup/index.d.ts +1 -0
  1337. package/internal/Popup/index.js +2 -0
  1338. package/internal/Popup/index.js.map +1 -0
  1339. package/internal/Popup/types.d.ts +2 -0
  1340. package/internal/Popup/types.js +2 -0
  1341. package/internal/Popup/types.js.map +1 -0
  1342. package/internal/PopupMenu/PopupMenu.d.ts +105 -0
  1343. package/internal/PopupMenu/PopupMenu.js +238 -0
  1344. package/internal/PopupMenu/PopupMenu.js.map +1 -0
  1345. package/internal/PopupMenu/PopupMenu.styles.d.ts +4 -0
  1346. package/internal/PopupMenu/PopupMenu.styles.js +18 -0
  1347. package/internal/PopupMenu/PopupMenu.styles.js.map +1 -0
  1348. package/internal/PopupMenu/index.d.ts +1 -0
  1349. package/internal/PopupMenu/index.js +2 -0
  1350. package/internal/PopupMenu/index.js.map +1 -0
  1351. package/internal/PopupMenu/tids.d.ts +4 -0
  1352. package/internal/PopupMenu/tids.js +5 -0
  1353. package/internal/PopupMenu/tids.js.map +1 -0
  1354. package/internal/PopupMenu/validatePositions.d.ts +2 -0
  1355. package/internal/PopupMenu/validatePositions.js +19 -0
  1356. package/internal/PopupMenu/validatePositions.js.map +1 -0
  1357. package/internal/RenderContainer/RenderContainer.d.ts +24 -0
  1358. package/internal/RenderContainer/RenderContainer.js +114 -0
  1359. package/internal/RenderContainer/RenderContainer.js.map +1 -0
  1360. package/internal/RenderContainer/RenderContainerTypes.d.ts +13 -0
  1361. package/internal/RenderContainer/RenderContainerTypes.js +2 -0
  1362. package/internal/RenderContainer/RenderContainerTypes.js.map +1 -0
  1363. package/internal/RenderContainer/RenderInnerContainer.d.ts +22 -0
  1364. package/internal/RenderContainer/RenderInnerContainer.js +89 -0
  1365. package/internal/RenderContainer/RenderInnerContainer.js.map +1 -0
  1366. package/internal/RenderContainer/index.d.ts +1 -0
  1367. package/internal/RenderContainer/index.js +2 -0
  1368. package/internal/RenderContainer/index.js.map +1 -0
  1369. package/internal/RenderLayer/RenderLayer.d.ts +32 -0
  1370. package/internal/RenderLayer/RenderLayer.js +128 -0
  1371. package/internal/RenderLayer/RenderLayer.js.map +1 -0
  1372. package/internal/RenderLayer/index.d.ts +1 -0
  1373. package/internal/RenderLayer/index.js +2 -0
  1374. package/internal/RenderLayer/index.js.map +1 -0
  1375. package/internal/ResizeDetector/ResizeDetector.d.ts +18 -0
  1376. package/internal/ResizeDetector/ResizeDetector.js +66 -0
  1377. package/internal/ResizeDetector/ResizeDetector.js.map +1 -0
  1378. package/internal/ResizeDetector/ResizeDetector.styles.d.ts +7 -0
  1379. package/internal/ResizeDetector/ResizeDetector.styles.js +27 -0
  1380. package/internal/ResizeDetector/ResizeDetector.styles.js.map +1 -0
  1381. package/internal/ResizeDetector/index.d.ts +1 -0
  1382. package/internal/ResizeDetector/index.js +2 -0
  1383. package/internal/ResizeDetector/index.js.map +1 -0
  1384. package/internal/SpinnerIcon/SpinnerIcon.d.ts +32 -0
  1385. package/internal/SpinnerIcon/SpinnerIcon.js +37 -0
  1386. package/internal/SpinnerIcon/SpinnerIcon.js.map +1 -0
  1387. package/internal/SpinnerIcon/SpinnerIcon.styles.d.ts +6 -0
  1388. package/internal/SpinnerIcon/SpinnerIcon.styles.js +24 -0
  1389. package/internal/SpinnerIcon/SpinnerIcon.styles.js.map +1 -0
  1390. package/internal/TextWidthHelper/TextWidthHelper.d.ts +17 -0
  1391. package/internal/TextWidthHelper/TextWidthHelper.js +57 -0
  1392. package/internal/TextWidthHelper/TextWidthHelper.js.map +1 -0
  1393. package/internal/TextWidthHelper/TextWidthHelper.styles.d.ts +4 -0
  1394. package/internal/TextWidthHelper/TextWidthHelper.styles.js +18 -0
  1395. package/internal/TextWidthHelper/TextWidthHelper.styles.js.map +1 -0
  1396. package/internal/ZIndex/ZIndex.d.ts +63 -0
  1397. package/internal/ZIndex/ZIndex.js +189 -0
  1398. package/internal/ZIndex/ZIndex.js.map +1 -0
  1399. package/internal/ZIndex/ZIndexStorage.d.ts +19 -0
  1400. package/internal/ZIndex/ZIndexStorage.js +47 -0
  1401. package/internal/ZIndex/ZIndexStorage.js.map +1 -0
  1402. package/internal/ZIndex/index.d.ts +2 -0
  1403. package/internal/ZIndex/index.js +2 -0
  1404. package/internal/ZIndex/index.js.map +1 -0
  1405. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon16Light.d.ts +2 -0
  1406. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon16Light.js +19 -0
  1407. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon16Light.js.map +1 -0
  1408. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon20Light.d.ts +2 -0
  1409. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon20Light.js +19 -0
  1410. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon20Light.js.map +1 -0
  1411. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon24Regular.d.ts +2 -0
  1412. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon24Regular.js +19 -0
  1413. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon24Regular.js.map +1 -0
  1414. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon16Light.d.ts +2 -0
  1415. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon16Light.js +19 -0
  1416. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon16Light.js.map +1 -0
  1417. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon20Light.d.ts +2 -0
  1418. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon20Light.js +19 -0
  1419. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon20Light.js.map +1 -0
  1420. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon24Regular.d.ts +2 -0
  1421. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon24Regular.js +19 -0
  1422. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon24Regular.js.map +1 -0
  1423. package/internal/icons2022/ArrowAUpIcon/ArrowAUp16Light.d.ts +2 -0
  1424. package/internal/icons2022/ArrowAUpIcon/ArrowAUp16Light.js +19 -0
  1425. package/internal/icons2022/ArrowAUpIcon/ArrowAUp16Light.js.map +1 -0
  1426. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon16Regular.d.ts +2 -0
  1427. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon16Regular.js +19 -0
  1428. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon16Regular.js.map +1 -0
  1429. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon20Regular.d.ts +2 -0
  1430. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon20Regular.js +19 -0
  1431. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon20Regular.js.map +1 -0
  1432. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon24Regular.d.ts +2 -0
  1433. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon24Regular.js +19 -0
  1434. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon24Regular.js.map +1 -0
  1435. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon16Light.d.ts +2 -0
  1436. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon16Light.js +19 -0
  1437. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon16Light.js.map +1 -0
  1438. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon20Light.d.ts +2 -0
  1439. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon20Light.js +19 -0
  1440. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon20Light.js.map +1 -0
  1441. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon24Regular.d.ts +2 -0
  1442. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon24Regular.js +19 -0
  1443. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon24Regular.js.map +1 -0
  1444. package/internal/icons2022/ArrowCollapseCVOpenIcon/ArrowCollapseCVOpenIcon16Regular.d.ts +2 -0
  1445. package/internal/icons2022/ArrowCollapseCVOpenIcon/ArrowCollapseCVOpenIcon16Regular.js +20 -0
  1446. package/internal/icons2022/ArrowCollapseCVOpenIcon/ArrowCollapseCVOpenIcon16Regular.js.map +1 -0
  1447. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon16Light.d.ts +2 -0
  1448. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon16Light.js +19 -0
  1449. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon16Light.js.map +1 -0
  1450. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon20Light.d.ts +2 -0
  1451. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon20Light.js +19 -0
  1452. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon20Light.js.map +1 -0
  1453. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon24Regular.d.ts +2 -0
  1454. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon24Regular.js +19 -0
  1455. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon24Regular.js.map +1 -0
  1456. package/internal/icons2022/BaseIcon.d.ts +15 -0
  1457. package/internal/icons2022/BaseIcon.js +36 -0
  1458. package/internal/icons2022/BaseIcon.js.map +1 -0
  1459. package/internal/icons2022/BaseIcon.styles.d.ts +3 -0
  1460. package/internal/icons2022/BaseIcon.styles.js +16 -0
  1461. package/internal/icons2022/BaseIcon.styles.js.map +1 -0
  1462. package/internal/icons2022/CalendarIcon/CalendarIcon16Light.d.ts +2 -0
  1463. package/internal/icons2022/CalendarIcon/CalendarIcon16Light.js +27 -0
  1464. package/internal/icons2022/CalendarIcon/CalendarIcon16Light.js.map +1 -0
  1465. package/internal/icons2022/CalendarIcon/CalendarIcon20Light.d.ts +2 -0
  1466. package/internal/icons2022/CalendarIcon/CalendarIcon20Light.js +27 -0
  1467. package/internal/icons2022/CalendarIcon/CalendarIcon20Light.js.map +1 -0
  1468. package/internal/icons2022/CalendarIcon/CalendarIcon24Regular.d.ts +2 -0
  1469. package/internal/icons2022/CalendarIcon/CalendarIcon24Regular.js +27 -0
  1470. package/internal/icons2022/CalendarIcon/CalendarIcon24Regular.js.map +1 -0
  1471. package/internal/icons2022/CheckAIcon/CheckAIcon16Solid.d.ts +2 -0
  1472. package/internal/icons2022/CheckAIcon/CheckAIcon16Solid.js +19 -0
  1473. package/internal/icons2022/CheckAIcon/CheckAIcon16Solid.js.map +1 -0
  1474. package/internal/icons2022/CheckAIcon/CheckAIcon20Solid.d.ts +2 -0
  1475. package/internal/icons2022/CheckAIcon/CheckAIcon20Solid.js +19 -0
  1476. package/internal/icons2022/CheckAIcon/CheckAIcon20Solid.js.map +1 -0
  1477. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon16Light.d.ts +2 -0
  1478. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon16Light.js +19 -0
  1479. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon16Light.js.map +1 -0
  1480. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon20Light.d.ts +2 -0
  1481. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon20Light.js +19 -0
  1482. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon20Light.js.map +1 -0
  1483. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon24Regular.d.ts +2 -0
  1484. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon24Regular.js +19 -0
  1485. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon24Regular.js.map +1 -0
  1486. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon16Light.d.ts +2 -0
  1487. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon16Light.js +20 -0
  1488. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon16Light.js.map +1 -0
  1489. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon20Light.d.ts +2 -0
  1490. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon20Light.js +20 -0
  1491. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon20Light.js.map +1 -0
  1492. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon24Regular.d.ts +2 -0
  1493. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon24Regular.js +20 -0
  1494. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon24Regular.js.map +1 -0
  1495. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon16Solid.d.ts +2 -0
  1496. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon16Solid.js +19 -0
  1497. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon16Solid.js.map +1 -0
  1498. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon20Solid.d.ts +2 -0
  1499. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon20Solid.js +20 -0
  1500. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon20Solid.js.map +1 -0
  1501. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon24Regular.d.ts +2 -0
  1502. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon24Regular.js +24 -0
  1503. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon24Regular.js.map +1 -0
  1504. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon24Solid.d.ts +2 -0
  1505. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon24Solid.js +20 -0
  1506. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon24Solid.js.map +1 -0
  1507. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon32Regular.d.ts +2 -0
  1508. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon32Regular.js +24 -0
  1509. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon32Regular.js.map +1 -0
  1510. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon64Regular.d.ts +2 -0
  1511. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon64Regular.js +24 -0
  1512. package/internal/icons2022/FileTypeArchiveIcon/ArchiveIcon64Regular.js.map +1 -0
  1513. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon16Solid.d.ts +2 -0
  1514. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon16Solid.js +20 -0
  1515. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon16Solid.js.map +1 -0
  1516. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon20Solid.d.ts +2 -0
  1517. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon20Solid.js +20 -0
  1518. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon20Solid.js.map +1 -0
  1519. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon24Regular.d.ts +2 -0
  1520. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon24Regular.js +21 -0
  1521. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon24Regular.js.map +1 -0
  1522. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon24Solid.d.ts +2 -0
  1523. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon24Solid.js +20 -0
  1524. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon24Solid.js.map +1 -0
  1525. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon32Regular.d.ts +2 -0
  1526. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon32Regular.js +21 -0
  1527. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon32Regular.js.map +1 -0
  1528. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon64Regular.d.ts +2 -0
  1529. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon64Regular.js +22 -0
  1530. package/internal/icons2022/FileTypeDocTextIcon/DocTextIcon64Regular.js.map +1 -0
  1531. package/internal/icons2022/FileTypeFolderIcon/FolderIcon16Solid.d.ts +2 -0
  1532. package/internal/icons2022/FileTypeFolderIcon/FolderIcon16Solid.js +19 -0
  1533. package/internal/icons2022/FileTypeFolderIcon/FolderIcon16Solid.js.map +1 -0
  1534. package/internal/icons2022/FileTypeFolderIcon/FolderIcon20Solid.d.ts +2 -0
  1535. package/internal/icons2022/FileTypeFolderIcon/FolderIcon20Solid.js +19 -0
  1536. package/internal/icons2022/FileTypeFolderIcon/FolderIcon20Solid.js.map +1 -0
  1537. package/internal/icons2022/FileTypeFolderIcon/FolderIcon24Regular.d.ts +2 -0
  1538. package/internal/icons2022/FileTypeFolderIcon/FolderIcon24Regular.js +20 -0
  1539. package/internal/icons2022/FileTypeFolderIcon/FolderIcon24Regular.js.map +1 -0
  1540. package/internal/icons2022/FileTypeFolderIcon/FolderIcon24Solid.d.ts +2 -0
  1541. package/internal/icons2022/FileTypeFolderIcon/FolderIcon24Solid.js +19 -0
  1542. package/internal/icons2022/FileTypeFolderIcon/FolderIcon24Solid.js.map +1 -0
  1543. package/internal/icons2022/FileTypeFolderIcon/FolderIcon32Regular.d.ts +2 -0
  1544. package/internal/icons2022/FileTypeFolderIcon/FolderIcon32Regular.js +20 -0
  1545. package/internal/icons2022/FileTypeFolderIcon/FolderIcon32Regular.js.map +1 -0
  1546. package/internal/icons2022/FileTypeFolderIcon/FolderIcon64Regular.d.ts +2 -0
  1547. package/internal/icons2022/FileTypeFolderIcon/FolderIcon64Regular.js +20 -0
  1548. package/internal/icons2022/FileTypeFolderIcon/FolderIcon64Regular.js.map +1 -0
  1549. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon16Solid.d.ts +2 -0
  1550. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon16Solid.js +19 -0
  1551. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon16Solid.js.map +1 -0
  1552. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon20Solid.d.ts +2 -0
  1553. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon20Solid.js +19 -0
  1554. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon20Solid.js.map +1 -0
  1555. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon24Regular.d.ts +2 -0
  1556. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon24Regular.js +21 -0
  1557. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon24Regular.js.map +1 -0
  1558. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon24Solid.d.ts +2 -0
  1559. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon24Solid.js +19 -0
  1560. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon24Solid.js.map +1 -0
  1561. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon32Regular.d.ts +2 -0
  1562. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon32Regular.js +21 -0
  1563. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon32Regular.js.map +1 -0
  1564. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon64Regular.d.ts +2 -0
  1565. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon64Regular.js +21 -0
  1566. package/internal/icons2022/FileTypeMarkupIcon/MarkupIcon64Regular.js.map +1 -0
  1567. package/internal/icons2022/FileTypePdfIcon/PdfIcon16Solid.d.ts +2 -0
  1568. package/internal/icons2022/FileTypePdfIcon/PdfIcon16Solid.js +20 -0
  1569. package/internal/icons2022/FileTypePdfIcon/PdfIcon16Solid.js.map +1 -0
  1570. package/internal/icons2022/FileTypePdfIcon/PdfIcon20Solid.d.ts +2 -0
  1571. package/internal/icons2022/FileTypePdfIcon/PdfIcon20Solid.js +20 -0
  1572. package/internal/icons2022/FileTypePdfIcon/PdfIcon20Solid.js.map +1 -0
  1573. package/internal/icons2022/FileTypePdfIcon/PdfIcon24Regular.d.ts +2 -0
  1574. package/internal/icons2022/FileTypePdfIcon/PdfIcon24Regular.js +20 -0
  1575. package/internal/icons2022/FileTypePdfIcon/PdfIcon24Regular.js.map +1 -0
  1576. package/internal/icons2022/FileTypePdfIcon/PdfIcon24Solid.d.ts +2 -0
  1577. package/internal/icons2022/FileTypePdfIcon/PdfIcon24Solid.js +20 -0
  1578. package/internal/icons2022/FileTypePdfIcon/PdfIcon24Solid.js.map +1 -0
  1579. package/internal/icons2022/FileTypePdfIcon/PdfIcon32Regular.d.ts +2 -0
  1580. package/internal/icons2022/FileTypePdfIcon/PdfIcon32Regular.js +20 -0
  1581. package/internal/icons2022/FileTypePdfIcon/PdfIcon32Regular.js.map +1 -0
  1582. package/internal/icons2022/FileTypePdfIcon/PdfIcon64Regular.d.ts +2 -0
  1583. package/internal/icons2022/FileTypePdfIcon/PdfIcon64Regular.js +20 -0
  1584. package/internal/icons2022/FileTypePdfIcon/PdfIcon64Regular.js.map +1 -0
  1585. package/internal/icons2022/FileTypePictureIcon/PictureIcon16Solid.d.ts +2 -0
  1586. package/internal/icons2022/FileTypePictureIcon/PictureIcon16Solid.js +19 -0
  1587. package/internal/icons2022/FileTypePictureIcon/PictureIcon16Solid.js.map +1 -0
  1588. package/internal/icons2022/FileTypePictureIcon/PictureIcon20Solid.d.ts +2 -0
  1589. package/internal/icons2022/FileTypePictureIcon/PictureIcon20Solid.js +20 -0
  1590. package/internal/icons2022/FileTypePictureIcon/PictureIcon20Solid.js.map +1 -0
  1591. package/internal/icons2022/FileTypePictureIcon/PictureIcon24Regular.d.ts +2 -0
  1592. package/internal/icons2022/FileTypePictureIcon/PictureIcon24Regular.js +21 -0
  1593. package/internal/icons2022/FileTypePictureIcon/PictureIcon24Regular.js.map +1 -0
  1594. package/internal/icons2022/FileTypePictureIcon/PictureIcon24Solid.d.ts +2 -0
  1595. package/internal/icons2022/FileTypePictureIcon/PictureIcon24Solid.js +19 -0
  1596. package/internal/icons2022/FileTypePictureIcon/PictureIcon24Solid.js.map +1 -0
  1597. package/internal/icons2022/FileTypePictureIcon/PictureIcon32Regular.d.ts +2 -0
  1598. package/internal/icons2022/FileTypePictureIcon/PictureIcon32Regular.js +21 -0
  1599. package/internal/icons2022/FileTypePictureIcon/PictureIcon32Regular.js.map +1 -0
  1600. package/internal/icons2022/FileTypePictureIcon/PictureIcon64Regular.d.ts +2 -0
  1601. package/internal/icons2022/FileTypePictureIcon/PictureIcon64Regular.js +21 -0
  1602. package/internal/icons2022/FileTypePictureIcon/PictureIcon64Regular.js.map +1 -0
  1603. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon16Solid.d.ts +2 -0
  1604. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon16Solid.js +20 -0
  1605. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon16Solid.js.map +1 -0
  1606. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon20Solid.d.ts +2 -0
  1607. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon20Solid.js +20 -0
  1608. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon20Solid.js.map +1 -0
  1609. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon24Regular.d.ts +2 -0
  1610. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon24Regular.js +21 -0
  1611. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon24Regular.js.map +1 -0
  1612. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon24Solid.d.ts +2 -0
  1613. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon24Solid.js +20 -0
  1614. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon24Solid.js.map +1 -0
  1615. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon32Regular.d.ts +2 -0
  1616. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon32Regular.js +21 -0
  1617. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon32Regular.js.map +1 -0
  1618. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon64Regular.d.ts +2 -0
  1619. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon64Regular.js +21 -0
  1620. package/internal/icons2022/FileTypePresentationIcon/PresentationIcon64Regular.js.map +1 -0
  1621. package/internal/icons2022/FileTypeTableIcon/TableIcon16Solid.d.ts +2 -0
  1622. package/internal/icons2022/FileTypeTableIcon/TableIcon16Solid.js +19 -0
  1623. package/internal/icons2022/FileTypeTableIcon/TableIcon16Solid.js.map +1 -0
  1624. package/internal/icons2022/FileTypeTableIcon/TableIcon20Solid.d.ts +2 -0
  1625. package/internal/icons2022/FileTypeTableIcon/TableIcon20Solid.js +19 -0
  1626. package/internal/icons2022/FileTypeTableIcon/TableIcon20Solid.js.map +1 -0
  1627. package/internal/icons2022/FileTypeTableIcon/TableIcon24Regular.d.ts +2 -0
  1628. package/internal/icons2022/FileTypeTableIcon/TableIcon24Regular.js +19 -0
  1629. package/internal/icons2022/FileTypeTableIcon/TableIcon24Regular.js.map +1 -0
  1630. package/internal/icons2022/FileTypeTableIcon/TableIcon24Solid.d.ts +2 -0
  1631. package/internal/icons2022/FileTypeTableIcon/TableIcon24Solid.js +19 -0
  1632. package/internal/icons2022/FileTypeTableIcon/TableIcon24Solid.js.map +1 -0
  1633. package/internal/icons2022/FileTypeTableIcon/TableIcon32Regular.d.ts +2 -0
  1634. package/internal/icons2022/FileTypeTableIcon/TableIcon32Regular.js +20 -0
  1635. package/internal/icons2022/FileTypeTableIcon/TableIcon32Regular.js.map +1 -0
  1636. package/internal/icons2022/FileTypeTableIcon/TableIcon64Regular.d.ts +2 -0
  1637. package/internal/icons2022/FileTypeTableIcon/TableIcon64Regular.js +20 -0
  1638. package/internal/icons2022/FileTypeTableIcon/TableIcon64Regular.js.map +1 -0
  1639. package/internal/icons2022/FileTypeTextIcon/TextIcon16Solid.d.ts +2 -0
  1640. package/internal/icons2022/FileTypeTextIcon/TextIcon16Solid.js +19 -0
  1641. package/internal/icons2022/FileTypeTextIcon/TextIcon16Solid.js.map +1 -0
  1642. package/internal/icons2022/FileTypeTextIcon/TextIcon20Solid.d.ts +2 -0
  1643. package/internal/icons2022/FileTypeTextIcon/TextIcon20Solid.js +19 -0
  1644. package/internal/icons2022/FileTypeTextIcon/TextIcon20Solid.js.map +1 -0
  1645. package/internal/icons2022/FileTypeTextIcon/TextIcon24Regular.d.ts +2 -0
  1646. package/internal/icons2022/FileTypeTextIcon/TextIcon24Regular.js +20 -0
  1647. package/internal/icons2022/FileTypeTextIcon/TextIcon24Regular.js.map +1 -0
  1648. package/internal/icons2022/FileTypeTextIcon/TextIcon24Solid.d.ts +2 -0
  1649. package/internal/icons2022/FileTypeTextIcon/TextIcon24Solid.js +19 -0
  1650. package/internal/icons2022/FileTypeTextIcon/TextIcon24Solid.js.map +1 -0
  1651. package/internal/icons2022/FileTypeTextIcon/TextIcon32Regular.d.ts +2 -0
  1652. package/internal/icons2022/FileTypeTextIcon/TextIcon32Regular.js +20 -0
  1653. package/internal/icons2022/FileTypeTextIcon/TextIcon32Regular.js.map +1 -0
  1654. package/internal/icons2022/FileTypeTextIcon/TextIcon64Regular.d.ts +2 -0
  1655. package/internal/icons2022/FileTypeTextIcon/TextIcon64Regular.js +20 -0
  1656. package/internal/icons2022/FileTypeTextIcon/TextIcon64Regular.js.map +1 -0
  1657. package/internal/icons2022/InfoCircleIcon/InfoCircleIcon64Regular.d.ts +2 -0
  1658. package/internal/icons2022/InfoCircleIcon/InfoCircleIcon64Regular.js +21 -0
  1659. package/internal/icons2022/InfoCircleIcon/InfoCircleIcon64Regular.js.map +1 -0
  1660. package/internal/icons2022/LoadingIcon.d.ts +4 -0
  1661. package/internal/icons2022/LoadingIcon.js +37 -0
  1662. package/internal/icons2022/LoadingIcon.js.map +1 -0
  1663. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon16Light.d.ts +2 -0
  1664. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon16Light.js +20 -0
  1665. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon16Light.js.map +1 -0
  1666. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon20Light.d.ts +2 -0
  1667. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon20Light.js +20 -0
  1668. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon20Light.js.map +1 -0
  1669. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon24Regular.d.ts +2 -0
  1670. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon24Regular.js +20 -0
  1671. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon24Regular.js.map +1 -0
  1672. package/internal/icons2022/NetUploadIcon/NetUploadIcon16Light.d.ts +2 -0
  1673. package/internal/icons2022/NetUploadIcon/NetUploadIcon16Light.js +20 -0
  1674. package/internal/icons2022/NetUploadIcon/NetUploadIcon16Light.js.map +1 -0
  1675. package/internal/icons2022/NetUploadIcon/NetUploadIcon20Regular.d.ts +2 -0
  1676. package/internal/icons2022/NetUploadIcon/NetUploadIcon20Regular.js +20 -0
  1677. package/internal/icons2022/NetUploadIcon/NetUploadIcon20Regular.js.map +1 -0
  1678. package/internal/icons2022/NetUploadIcon/NetUploadIcon24Regular.d.ts +2 -0
  1679. package/internal/icons2022/NetUploadIcon/NetUploadIcon24Regular.js +20 -0
  1680. package/internal/icons2022/NetUploadIcon/NetUploadIcon24Regular.js.map +1 -0
  1681. package/internal/icons2022/NetUploadIcon/NetUploadIcon32Regular.d.ts +2 -0
  1682. package/internal/icons2022/NetUploadIcon/NetUploadIcon32Regular.js +20 -0
  1683. package/internal/icons2022/NetUploadIcon/NetUploadIcon32Regular.js.map +1 -0
  1684. package/internal/icons2022/QuestionCircleIcon/QuestionCircleIcon16Solid.d.ts +2 -0
  1685. package/internal/icons2022/QuestionCircleIcon/QuestionCircleIcon16Solid.js +19 -0
  1686. package/internal/icons2022/QuestionCircleIcon/QuestionCircleIcon16Solid.js.map +1 -0
  1687. package/internal/icons2022/ShapeSquareIcon/ShapeSquareIcon16Solid.d.ts +2 -0
  1688. package/internal/icons2022/ShapeSquareIcon/ShapeSquareIcon16Solid.js +19 -0
  1689. package/internal/icons2022/ShapeSquareIcon/ShapeSquareIcon16Solid.js.map +1 -0
  1690. package/internal/icons2022/UiMenuDots3HIcon/UiMenuDots3HIcon16Regular.d.ts +2 -0
  1691. package/internal/icons2022/UiMenuDots3HIcon/UiMenuDots3HIcon16Regular.js +19 -0
  1692. package/internal/icons2022/UiMenuDots3HIcon/UiMenuDots3HIcon16Regular.js.map +1 -0
  1693. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon16Light.d.ts +2 -0
  1694. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon16Light.js +21 -0
  1695. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon16Light.js.map +1 -0
  1696. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon20Regular.d.ts +2 -0
  1697. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon20Regular.js +21 -0
  1698. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon20Regular.js.map +1 -0
  1699. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon24Regular.d.ts +2 -0
  1700. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon24Regular.js +21 -0
  1701. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon24Regular.js.map +1 -0
  1702. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon16Solid.d.ts +2 -0
  1703. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon16Solid.js +19 -0
  1704. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon16Solid.js.map +1 -0
  1705. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon20Solid.d.ts +2 -0
  1706. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon20Solid.js +19 -0
  1707. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon20Solid.js.map +1 -0
  1708. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon24Regular.d.ts +2 -0
  1709. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon24Regular.js +21 -0
  1710. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon24Regular.js.map +1 -0
  1711. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon24Solid.d.ts +2 -0
  1712. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon24Solid.js +19 -0
  1713. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon24Solid.js.map +1 -0
  1714. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon32Regular.d.ts +2 -0
  1715. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon32Regular.js +21 -0
  1716. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon32Regular.js.map +1 -0
  1717. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon64Regular.d.ts +2 -0
  1718. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon64Regular.js +21 -0
  1719. package/internal/icons2022/WarningTriangleIcon/WarningTriangleIcon64Regular.js.map +1 -0
  1720. package/internal/icons2022/XCircleIcon/XCircleIcon16Solid.d.ts +2 -0
  1721. package/internal/icons2022/XCircleIcon/XCircleIcon16Solid.js +19 -0
  1722. package/internal/icons2022/XCircleIcon/XCircleIcon16Solid.js.map +1 -0
  1723. package/internal/icons2022/XCircleIcon/XCircleIcon20Solid.d.ts +2 -0
  1724. package/internal/icons2022/XCircleIcon/XCircleIcon20Solid.js +19 -0
  1725. package/internal/icons2022/XCircleIcon/XCircleIcon20Solid.js.map +1 -0
  1726. package/internal/icons2022/XCircleIcon/XCircleIcon24Regular.d.ts +2 -0
  1727. package/internal/icons2022/XCircleIcon/XCircleIcon24Regular.js +20 -0
  1728. package/internal/icons2022/XCircleIcon/XCircleIcon24Regular.js.map +1 -0
  1729. package/internal/icons2022/XCircleIcon/XCircleIcon24Solid.d.ts +2 -0
  1730. package/internal/icons2022/XCircleIcon/XCircleIcon24Solid.js +19 -0
  1731. package/internal/icons2022/XCircleIcon/XCircleIcon24Solid.js.map +1 -0
  1732. package/internal/icons2022/XCircleIcon/XCircleIcon32Regular.d.ts +2 -0
  1733. package/internal/icons2022/XCircleIcon/XCircleIcon32Regular.js +20 -0
  1734. package/internal/icons2022/XCircleIcon/XCircleIcon32Regular.js.map +1 -0
  1735. package/internal/icons2022/XCircleIcon/XCircleIcon64Regular.d.ts +2 -0
  1736. package/internal/icons2022/XCircleIcon/XCircleIcon64Regular.js +20 -0
  1737. package/internal/icons2022/XCircleIcon/XCircleIcon64Regular.js.map +1 -0
  1738. package/internal/icons2022/XIcon/XIcon16Light.d.ts +2 -0
  1739. package/internal/icons2022/XIcon/XIcon16Light.js +19 -0
  1740. package/internal/icons2022/XIcon/XIcon16Light.js.map +1 -0
  1741. package/internal/icons2022/XIcon/XIcon20Light.d.ts +2 -0
  1742. package/internal/icons2022/XIcon/XIcon20Light.js +19 -0
  1743. package/internal/icons2022/XIcon/XIcon20Light.js.map +1 -0
  1744. package/internal/icons2022/XIcon/XIcon20Regular.d.ts +2 -0
  1745. package/internal/icons2022/XIcon/XIcon20Regular.js +19 -0
  1746. package/internal/icons2022/XIcon/XIcon20Regular.js.map +1 -0
  1747. package/internal/icons2022/XIcon/XIcon24Regular.d.ts +2 -0
  1748. package/internal/icons2022/XIcon/XIcon24Regular.js +19 -0
  1749. package/internal/icons2022/XIcon/XIcon24Regular.js.map +1 -0
  1750. package/internal/icons2022/iconConstants.d.ts +8 -0
  1751. package/internal/icons2022/iconConstants.js +8 -0
  1752. package/internal/icons2022/iconConstants.js.map +1 -0
  1753. package/internal/icons2022/iconSizer.d.ts +11 -0
  1754. package/internal/icons2022/iconSizer.js +50 -0
  1755. package/internal/icons2022/iconSizer.js.map +1 -0
  1756. package/internal/react-focus-lock/Combination.d.ts +4 -0
  1757. package/internal/react-focus-lock/Combination.js +20 -0
  1758. package/internal/react-focus-lock/Combination.js.map +1 -0
  1759. package/internal/react-focus-lock/FocusGuard.d.ts +6 -0
  1760. package/internal/react-focus-lock/FocusGuard.js +19 -0
  1761. package/internal/react-focus-lock/FocusGuard.js.map +1 -0
  1762. package/internal/react-focus-lock/Lock.d.ts +43 -0
  1763. package/internal/react-focus-lock/Lock.js +129 -0
  1764. package/internal/react-focus-lock/Lock.js.map +1 -0
  1765. package/internal/react-focus-lock/Trap.d.ts +2 -0
  1766. package/internal/react-focus-lock/Trap.js +254 -0
  1767. package/internal/react-focus-lock/Trap.js.map +1 -0
  1768. package/internal/react-focus-lock/constants.d.ts +22 -0
  1769. package/internal/react-focus-lock/constants.js +23 -0
  1770. package/internal/react-focus-lock/constants.js.map +1 -0
  1771. package/internal/react-focus-lock/index.d.ts +2 -0
  1772. package/internal/react-focus-lock/index.js +3 -0
  1773. package/internal/react-focus-lock/index.js.map +1 -0
  1774. package/internal/react-focus-lock/medium.d.ts +7 -0
  1775. package/internal/react-focus-lock/medium.js +15 -0
  1776. package/internal/react-focus-lock/medium.js.map +1 -0
  1777. package/internal/react-focus-lock/scope.d.ts +8 -0
  1778. package/internal/react-focus-lock/scope.js +3 -0
  1779. package/internal/react-focus-lock/scope.js.map +1 -0
  1780. package/internal/react-focus-lock/util.d.ts +3 -0
  1781. package/internal/react-focus-lock/util.js +10 -0
  1782. package/internal/react-focus-lock/util.js.map +1 -0
  1783. package/internal/themes/BasicTheme.d.ts +1353 -0
  1784. package/internal/themes/BasicTheme.js +4502 -0
  1785. package/internal/themes/BasicTheme.js.map +1 -0
  1786. package/internal/themes/DarkTheme6_0.d.ts +1 -0
  1787. package/internal/themes/DarkTheme6_0.js +1579 -0
  1788. package/internal/themes/DarkTheme6_0.js.map +1 -0
  1789. package/internal/themes/LightTheme6_0.d.ts +1 -0
  1790. package/internal/themes/LightTheme6_0.js +29 -0
  1791. package/internal/themes/LightTheme6_0.js.map +1 -0
  1792. package/lib/ConditionalHandler.d.ts +12 -0
  1793. package/lib/ConditionalHandler.js +34 -0
  1794. package/lib/ConditionalHandler.js.map +1 -0
  1795. package/lib/InstanceWithAnchorElement.d.ts +5 -0
  1796. package/lib/InstanceWithAnchorElement.js +4 -0
  1797. package/lib/InstanceWithAnchorElement.js.map +1 -0
  1798. package/lib/LayoutEvents.d.ts +5 -9
  1799. package/lib/LayoutEvents.js +33 -35
  1800. package/lib/LayoutEvents.js.map +1 -1
  1801. package/lib/ModalStack.d.ts +22 -0
  1802. package/lib/ModalStack.js +91 -0
  1803. package/lib/ModalStack.js.map +1 -0
  1804. package/lib/Upgrades.d.ts +6 -11
  1805. package/lib/Upgrades.js +32 -38
  1806. package/lib/Upgrades.js.map +1 -1
  1807. package/lib/animation/index.d.ts +7 -0
  1808. package/lib/animation/index.js +70 -0
  1809. package/lib/animation/index.js.map +1 -0
  1810. package/lib/animation/presets.d.ts +18 -0
  1811. package/lib/animation/presets.js +7 -0
  1812. package/lib/animation/presets.js.map +1 -0
  1813. package/lib/animation/stepper.d.ts +1 -0
  1814. package/lib/animation/stepper.js +24 -0
  1815. package/lib/animation/stepper.js.map +1 -0
  1816. package/lib/blink.d.ts +15 -0
  1817. package/lib/blink.js +64 -0
  1818. package/lib/blink.js.map +1 -0
  1819. package/lib/callChildRef/callChildRef.d.ts +3 -0
  1820. package/lib/callChildRef/callChildRef.js +13 -0
  1821. package/lib/callChildRef/callChildRef.js.map +1 -0
  1822. package/lib/chars.d.ts +8 -0
  1823. package/lib/chars.js +9 -0
  1824. package/lib/chars.js.map +1 -0
  1825. package/lib/client.d.ts +10 -0
  1826. package/lib/client.js +24 -0
  1827. package/lib/client.js.map +1 -0
  1828. package/lib/createPropsGetter.d.ts +3 -0
  1829. package/lib/createPropsGetter.js +9 -0
  1830. package/lib/createPropsGetter.js.map +1 -0
  1831. package/lib/currentEnvironment.d.ts +3 -0
  1832. package/lib/currentEnvironment.js +24 -0
  1833. package/lib/currentEnvironment.js.map +1 -0
  1834. package/lib/date/InternalDate.d.ts +61 -55
  1835. package/lib/date/InternalDate.js +318 -282
  1836. package/lib/date/InternalDate.js.map +1 -1
  1837. package/lib/date/InternalDateCalculator.d.ts +7 -6
  1838. package/lib/date/InternalDateCalculator.js +55 -45
  1839. package/lib/date/InternalDateCalculator.js.map +1 -1
  1840. package/lib/date/InternalDateGetter.d.ts +16 -15
  1841. package/lib/date/InternalDateGetter.js +81 -68
  1842. package/lib/date/InternalDateGetter.js.map +1 -1
  1843. package/lib/date/InternalDateSetter.d.ts +7 -6
  1844. package/lib/date/InternalDateSetter.js +38 -39
  1845. package/lib/date/InternalDateSetter.js.map +1 -1
  1846. package/lib/date/InternalDateTransformer.d.ts +16 -12
  1847. package/lib/date/InternalDateTransformer.js +172 -133
  1848. package/lib/date/InternalDateTransformer.js.map +1 -1
  1849. package/lib/date/InternalDateValidator.d.ts +13 -9
  1850. package/lib/date/InternalDateValidator.js +102 -70
  1851. package/lib/date/InternalDateValidator.js.map +1 -1
  1852. package/lib/date/comparison.d.ts +6 -0
  1853. package/lib/date/comparison.js +37 -0
  1854. package/lib/date/comparison.js.map +1 -0
  1855. package/lib/date/constants.d.ts +28 -27
  1856. package/lib/date/constants.js +29 -29
  1857. package/lib/date/constants.js.map +1 -1
  1858. package/lib/date/localeSets.d.ts +5 -5
  1859. package/lib/date/localeSets.js +17 -18
  1860. package/lib/date/localeSets.js.map +1 -1
  1861. package/lib/date/types.d.ts +94 -88
  1862. package/lib/date/types.js +43 -41
  1863. package/lib/date/types.js.map +1 -1
  1864. package/lib/delay.d.ts +1 -0
  1865. package/lib/delay.js +2 -0
  1866. package/lib/delay.js.map +1 -0
  1867. package/lib/dom/getDOMRect.d.ts +10 -0
  1868. package/lib/dom/getDOMRect.js +35 -0
  1869. package/lib/dom/getDOMRect.js.map +1 -0
  1870. package/lib/dom/getParentOrShadowHost.d.ts +1 -0
  1871. package/lib/dom/getParentOrShadowHost.js +4 -0
  1872. package/lib/dom/getParentOrShadowHost.js.map +1 -0
  1873. package/lib/dom/getScrollWidth.d.ts +3 -1
  1874. package/lib/dom/getScrollWidth.js +27 -23
  1875. package/lib/dom/getScrollWidth.js.map +1 -1
  1876. package/lib/dom/scrollYCenterIntoNearestScrollable.d.ts +2 -0
  1877. package/lib/dom/scrollYCenterIntoNearestScrollable.js +38 -0
  1878. package/lib/dom/scrollYCenterIntoNearestScrollable.js.map +1 -0
  1879. package/lib/dom/selectionHelpers.d.ts +3 -0
  1880. package/lib/dom/selectionHelpers.js +52 -0
  1881. package/lib/dom/selectionHelpers.js.map +1 -0
  1882. package/lib/dom/tabbableHelpers.d.ts +17 -0
  1883. package/lib/dom/tabbableHelpers.js +33 -0
  1884. package/lib/dom/tabbableHelpers.js.map +1 -0
  1885. package/lib/events/MouseDrag.d.ts +59 -15
  1886. package/lib/events/MouseDrag.js +138 -65
  1887. package/lib/events/MouseDrag.js.map +1 -1
  1888. package/lib/events/fixFirefoxModifiedClickOnLabel.d.ts +2 -3
  1889. package/lib/events/fixFirefoxModifiedClickOnLabel.js +23 -14
  1890. package/lib/events/fixFirefoxModifiedClickOnLabel.js.map +1 -1
  1891. package/lib/events/keyListener.d.ts +7 -0
  1892. package/lib/events/keyListener.js +26 -0
  1893. package/lib/events/keyListener.js.map +1 -0
  1894. package/lib/events/keyboard/KeyboardEventCodes.d.ts +30 -31
  1895. package/lib/events/keyboard/KeyboardEventCodes.js +30 -32
  1896. package/lib/events/keyboard/KeyboardEventCodes.js.map +1 -1
  1897. package/lib/events/keyboard/KeyboardMapKeys.d.ts +7 -6
  1898. package/lib/events/keyboard/KeyboardMapKeys.js +37 -35
  1899. package/lib/events/keyboard/KeyboardMapKeys.js.map +1 -1
  1900. package/lib/events/keyboard/extractCode.d.ts +2 -3
  1901. package/lib/events/keyboard/extractCode.js +18 -17
  1902. package/lib/events/keyboard/extractCode.js.map +1 -1
  1903. package/lib/events/keyboard/identifiers.d.ts +50 -47
  1904. package/lib/events/keyboard/identifiers.js +68 -62
  1905. package/lib/events/keyboard/identifiers.js.map +1 -1
  1906. package/lib/extractKeyboardAction.d.ts +13 -0
  1907. package/lib/extractKeyboardAction.js +19 -0
  1908. package/lib/extractKeyboardAction.js.map +1 -0
  1909. package/lib/featureFlagsContext/FeatureFlagsHelpers.d.ts +2 -0
  1910. package/lib/featureFlagsContext/FeatureFlagsHelpers.js +16 -0
  1911. package/lib/featureFlagsContext/FeatureFlagsHelpers.js.map +1 -0
  1912. package/lib/featureFlagsContext/ReactUIFeatureFlagsContext.d.ts +5 -0
  1913. package/lib/featureFlagsContext/ReactUIFeatureFlagsContext.js +6 -0
  1914. package/lib/featureFlagsContext/ReactUIFeatureFlagsContext.js.map +1 -0
  1915. package/lib/featureFlagsContext/index.d.ts +2 -0
  1916. package/lib/featureFlagsContext/index.js +3 -0
  1917. package/lib/featureFlagsContext/index.js.map +1 -0
  1918. package/lib/filterProps.d.ts +12 -0
  1919. package/lib/filterProps.js +10 -0
  1920. package/lib/filterProps.js.map +1 -0
  1921. package/lib/forwardRefAndName.d.ts +9 -0
  1922. package/lib/forwardRefAndName.js +19 -0
  1923. package/lib/forwardRefAndName.js.map +1 -0
  1924. package/lib/getElementRef.d.ts +6 -0
  1925. package/lib/getElementRef.js +14 -0
  1926. package/lib/getElementRef.js.map +1 -0
  1927. package/lib/getMenuPositions.d.ts +22 -0
  1928. package/lib/getMenuPositions.js +43 -0
  1929. package/lib/getMenuPositions.js.map +1 -0
  1930. package/lib/globalObject.d.ts +9 -0
  1931. package/lib/globalObject.js +31 -0
  1932. package/lib/globalObject.js.map +1 -0
  1933. package/lib/isInstanceOf.d.ts +1 -0
  1934. package/lib/isInstanceOf.js +4 -0
  1935. package/lib/isInstanceOf.js.map +1 -0
  1936. package/lib/listenFocusOutside.d.ts +9 -5
  1937. package/lib/listenFocusOutside.js +93 -82
  1938. package/lib/listenFocusOutside.js.map +1 -1
  1939. package/lib/locale/LocaleContext.d.ts +7 -0
  1940. package/lib/locale/LocaleContext.js +9 -0
  1941. package/lib/locale/LocaleContext.js.map +1 -0
  1942. package/lib/locale/LocaleHelper.d.ts +9 -0
  1943. package/lib/locale/LocaleHelper.js +15 -0
  1944. package/lib/locale/LocaleHelper.js.map +1 -0
  1945. package/lib/locale/constants.d.ts +5 -0
  1946. package/lib/locale/constants.js +8 -0
  1947. package/lib/locale/constants.js.map +1 -0
  1948. package/lib/locale/decorators.d.ts +4 -0
  1949. package/lib/locale/decorators.js +65 -0
  1950. package/lib/locale/decorators.js.map +1 -0
  1951. package/lib/locale/index.d.ts +3 -0
  1952. package/lib/locale/index.js +4 -0
  1953. package/lib/locale/index.js.map +1 -0
  1954. package/lib/locale/types.d.ts +27 -0
  1955. package/lib/locale/types.js +6 -0
  1956. package/lib/locale/types.js.map +1 -0
  1957. package/lib/locale/useLocaleForControl.d.ts +3 -0
  1958. package/lib/locale/useLocaleForControl.js +8 -0
  1959. package/lib/locale/useLocaleForControl.js.map +1 -0
  1960. package/lib/memo.d.ts +3 -0
  1961. package/lib/memo.js +30 -0
  1962. package/lib/memo.js.map +1 -0
  1963. package/lib/mergeRefs.d.ts +22 -0
  1964. package/lib/mergeRefs.js +70 -0
  1965. package/lib/mergeRefs.js.map +1 -0
  1966. package/lib/needsPolyfillPlaceholder.d.ts +6 -0
  1967. package/lib/needsPolyfillPlaceholder.js +18 -0
  1968. package/lib/needsPolyfillPlaceholder.js.map +1 -0
  1969. package/lib/pluralize.d.ts +2 -1
  1970. package/lib/pluralize.js +28 -13
  1971. package/lib/pluralize.js.map +1 -1
  1972. package/lib/react-is.d.ts +9 -0
  1973. package/lib/react-is.js +93 -0
  1974. package/lib/react-is.js.map +1 -0
  1975. package/lib/reactGetTextContent.d.ts +2 -0
  1976. package/lib/reactGetTextContent.js +22 -0
  1977. package/lib/reactGetTextContent.js.map +1 -0
  1978. package/lib/renderEnvironment/RenderEnvironmentContext.d.ts +17 -0
  1979. package/lib/renderEnvironment/RenderEnvironmentContext.js +27 -0
  1980. package/lib/renderEnvironment/RenderEnvironmentContext.js.map +1 -0
  1981. package/lib/renderEnvironment/RenderEnvironmentDecorator.d.ts +8 -0
  1982. package/lib/renderEnvironment/RenderEnvironmentDecorator.js +55 -0
  1983. package/lib/renderEnvironment/RenderEnvironmentDecorator.js.map +1 -0
  1984. package/lib/renderEnvironment/index.d.ts +2 -0
  1985. package/lib/renderEnvironment/index.js +3 -0
  1986. package/lib/renderEnvironment/index.js.map +1 -0
  1987. package/lib/rootNode/getRootNode.d.ts +12 -0
  1988. package/lib/rootNode/getRootNode.js +42 -0
  1989. package/lib/rootNode/getRootNode.js.map +1 -0
  1990. package/lib/rootNode/index.d.ts +2 -0
  1991. package/lib/rootNode/index.js +3 -0
  1992. package/lib/rootNode/index.js.map +1 -0
  1993. package/lib/rootNode/rootNodeDecorator.d.ts +24 -0
  1994. package/lib/rootNode/rootNodeDecorator.js +69 -0
  1995. package/lib/rootNode/rootNodeDecorator.js.map +1 -0
  1996. package/lib/scrollInputCaretIntoView.d.ts +14 -0
  1997. package/lib/scrollInputCaretIntoView.js +38 -0
  1998. package/lib/scrollInputCaretIntoView.js.map +1 -0
  1999. package/lib/size/SizeControlContext.d.ts +6 -0
  2000. package/lib/size/SizeControlContext.js +8 -0
  2001. package/lib/size/SizeControlContext.js.map +1 -0
  2002. package/lib/size/SizeDecorator.d.ts +8 -0
  2003. package/lib/size/SizeDecorator.js +47 -0
  2004. package/lib/size/SizeDecorator.js.map +1 -0
  2005. package/lib/size/constants.d.ts +2 -0
  2006. package/lib/size/constants.js +2 -0
  2007. package/lib/size/constants.js.map +1 -0
  2008. package/lib/size/index.d.ts +1 -0
  2009. package/lib/size/index.js +2 -0
  2010. package/lib/size/index.js.map +1 -0
  2011. package/lib/size/useSizeControl.d.ts +2 -0
  2012. package/lib/size/useSizeControl.js +7 -0
  2013. package/lib/size/useSizeControl.js.map +1 -0
  2014. package/lib/stringUtils.d.ts +1 -0
  2015. package/lib/stringUtils.js +12 -0
  2016. package/lib/stringUtils.js.map +1 -0
  2017. package/lib/styles/ColorFactory.d.ts +11 -11
  2018. package/lib/styles/ColorFactory.js +96 -99
  2019. package/lib/styles/ColorFactory.js.map +1 -1
  2020. package/lib/styles/ColorFunctions.d.ts +11 -12
  2021. package/lib/styles/ColorFunctions.js +93 -95
  2022. package/lib/styles/ColorFunctions.js.map +1 -1
  2023. package/lib/styles/ColorHelpers.d.ts +21 -20
  2024. package/lib/styles/ColorHelpers.js +86 -91
  2025. package/lib/styles/ColorHelpers.js.map +1 -1
  2026. package/lib/styles/ColorKeywords.d.ts +150 -150
  2027. package/lib/styles/ColorKeywords.js +151 -151
  2028. package/lib/styles/ColorKeywords.js.map +1 -1
  2029. package/lib/styles/ColorObject.d.ts +52 -51
  2030. package/lib/styles/ColorObject.js +96 -94
  2031. package/lib/styles/ColorObject.js.map +1 -1
  2032. package/lib/styles/DimensionFunctions.d.ts +1 -4
  2033. package/lib/styles/DimensionFunctions.js +8 -12
  2034. package/lib/styles/DimensionFunctions.js.map +1 -1
  2035. package/lib/styles/Mixins.d.ts +2 -2
  2036. package/lib/styles/Mixins.js +5 -9
  2037. package/lib/styles/Mixins.js.map +1 -1
  2038. package/lib/styles/UiFont.d.ts +3 -0
  2039. package/lib/styles/UiFont.js +18 -0
  2040. package/lib/styles/UiFont.js.map +1 -0
  2041. package/lib/styles/getLabGrotesqueBaselineCompensation.d.ts +1 -0
  2042. package/lib/styles/getLabGrotesqueBaselineCompensation.js +10 -0
  2043. package/lib/styles/getLabGrotesqueBaselineCompensation.js.map +1 -0
  2044. package/lib/taskWithDelayAndMinimalDuration.d.ts +21 -0
  2045. package/lib/taskWithDelayAndMinimalDuration.js +75 -0
  2046. package/lib/taskWithDelayAndMinimalDuration.js.map +1 -0
  2047. package/lib/theming/AnimationKeyframes.d.ts +7 -9
  2048. package/lib/theming/AnimationKeyframes.js +24 -25
  2049. package/lib/theming/AnimationKeyframes.js.map +1 -1
  2050. package/lib/theming/Emotion.d.ts +15 -13
  2051. package/lib/theming/Emotion.js +71 -26
  2052. package/lib/theming/Emotion.js.map +1 -1
  2053. package/lib/theming/Theme.d.ts +5 -9
  2054. package/lib/theming/Theme.js +3 -2
  2055. package/lib/theming/Theme.js.map +1 -1
  2056. package/lib/theming/ThemeContext.d.ts +2 -6
  2057. package/lib/theming/ThemeContext.js +6 -11
  2058. package/lib/theming/ThemeContext.js.map +1 -1
  2059. package/lib/theming/ThemeFactory.d.ts +17 -10
  2060. package/lib/theming/ThemeFactory.js +64 -48
  2061. package/lib/theming/ThemeFactory.js.map +1 -1
  2062. package/lib/theming/ThemeHelpers.d.ts +68 -1
  2063. package/lib/theming/ThemeHelpers.js +126 -14
  2064. package/lib/theming/ThemeHelpers.js.map +1 -1
  2065. package/lib/theming/ThemeVersions.d.ts +25 -0
  2066. package/lib/theming/ThemeVersions.js +48 -0
  2067. package/lib/theming/ThemeVersions.js.map +1 -0
  2068. package/lib/theming/themes/DarkTheme.d.ts +2 -0
  2069. package/lib/theming/themes/DarkTheme.js +4 -0
  2070. package/lib/theming/themes/DarkTheme.js.map +1 -0
  2071. package/lib/theming/themes/LightTheme.d.ts +2 -0
  2072. package/lib/theming/themes/LightTheme.js +4 -0
  2073. package/lib/theming/themes/LightTheme.js.map +1 -0
  2074. package/lib/theming/useTheme.d.ts +2 -0
  2075. package/lib/theming/useTheme.js +6 -0
  2076. package/lib/theming/useTheme.js.map +1 -0
  2077. package/lib/toKebabCase.d.ts +1 -0
  2078. package/lib/toKebabCase.js +10 -0
  2079. package/lib/toKebabCase.js.map +1 -0
  2080. package/lib/typeGuards.d.ts +1 -0
  2081. package/lib/typeGuards.js +6 -0
  2082. package/lib/typeGuards.js.map +1 -0
  2083. package/lib/types/button-link.d.ts +1 -0
  2084. package/lib/types/button-link.js +2 -0
  2085. package/lib/types/button-link.js.map +1 -0
  2086. package/lib/types/polymorphic-component.d.ts +20 -0
  2087. package/lib/types/polymorphic-component.js +2 -0
  2088. package/lib/types/polymorphic-component.js.map +1 -0
  2089. package/lib/types/props.d.ts +1 -0
  2090. package/lib/types/props.js +2 -0
  2091. package/lib/types/props.js.map +1 -0
  2092. package/lib/uidUtils.d.ts +1 -0
  2093. package/lib/uidUtils.js +5 -0
  2094. package/lib/uidUtils.js.map +1 -0
  2095. package/lib/utils.d.ts +102 -28
  2096. package/lib/utils.js +195 -57
  2097. package/lib/utils.js.map +1 -1
  2098. package/package.json +354 -36
  2099. package/typings/console.d.ts +3 -3
  2100. package/typings/event-types.d.ts +4 -4
  2101. package/typings/fonts.d.ts +12 -0
  2102. package/typings/global-react.d.ts +12 -0
  2103. package/typings/global.d.ts +16 -6
  2104. package/typings/html.d.ts +123 -0
  2105. package/typings/images.d.ts +1 -1
  2106. package/typings/normalize-wheel.d.ts +5 -1
  2107. package/typings/stories.d.ts +7 -0
  2108. package/typings/stylis-plugin-extra-scope.d.ts +3 -3
  2109. package/typings/utility-types.d.ts +23 -17
  2110. package/Autocomplete.d.ts +0 -2
  2111. package/Autocomplete.js +0 -1
  2112. package/Autocomplete.js.flow +0 -3
  2113. package/Button.d.ts +0 -2
  2114. package/Button.js +0 -1
  2115. package/Button.js.flow +0 -3
  2116. package/Calendar.d.ts +0 -2
  2117. package/Calendar.js +0 -1
  2118. package/Calendar.js.flow +0 -3
  2119. package/Center.d.ts +0 -2
  2120. package/Center.js +0 -1
  2121. package/Center.js.flow +0 -3
  2122. package/Checkbox.d.ts +0 -2
  2123. package/Checkbox.js +0 -1
  2124. package/Checkbox.js.flow +0 -3
  2125. package/ComboBox.d.ts +0 -2
  2126. package/ComboBox.js +0 -1
  2127. package/ComboBox.js.flow +0 -3
  2128. package/ComboBoxOld.d.ts +0 -2
  2129. package/ComboBoxOld.js +0 -1
  2130. package/CurrencyInput.d.ts +0 -2
  2131. package/CurrencyInput.js +0 -1
  2132. package/CurrencyInput.js.flow +0 -3
  2133. package/CurrencyLabel.d.ts +0 -2
  2134. package/CurrencyLabel.js +0 -1
  2135. package/CurrencyLabel.js.flow +0 -3
  2136. package/CustomComboBox.d.ts +0 -2
  2137. package/CustomComboBox.js +0 -1
  2138. package/CustomComboBox.js.flow +0 -3
  2139. package/DateInput.d.ts +0 -2
  2140. package/DateInput.js +0 -1
  2141. package/DateInput.js.flow +0 -3
  2142. package/DatePicker.d.ts +0 -2
  2143. package/DatePicker.js +0 -1
  2144. package/DatePicker.js.flow +0 -3
  2145. package/DatePickerOld.d.ts +0 -2
  2146. package/DatePickerOld.js +0 -1
  2147. package/DateSelect.d.ts +0 -2
  2148. package/DateSelect.js +0 -1
  2149. package/DateSelect.js.flow +0 -3
  2150. package/Dropdown.d.ts +0 -2
  2151. package/Dropdown.js +0 -1
  2152. package/Dropdown.js.flow +0 -3
  2153. package/DropdownMenu.d.ts +0 -2
  2154. package/DropdownMenu.js +0 -1
  2155. package/DropdownMenu.js.flow +0 -3
  2156. package/Fias.d.ts +0 -2
  2157. package/Fias.js +0 -1
  2158. package/Fias.js.flow +0 -3
  2159. package/FxInput.d.ts +0 -2
  2160. package/FxInput.js +0 -1
  2161. package/FxInput.js.flow +0 -3
  2162. package/Gapped.d.ts +0 -2
  2163. package/Gapped.js +0 -1
  2164. package/Gapped.js.flow +0 -3
  2165. package/Group.d.ts +0 -2
  2166. package/Group.js +0 -1
  2167. package/Group.js.flow +0 -3
  2168. package/HideBodyVerticalScroll.d.ts +0 -2
  2169. package/HideBodyVerticalScroll.js +0 -1
  2170. package/HideBodyVerticalScroll.js.flow +0 -3
  2171. package/Hint.d.ts +0 -2
  2172. package/Hint.js +0 -1
  2173. package/Hint.js.flow +0 -3
  2174. package/IgnoreLayerClick.d.ts +0 -2
  2175. package/IgnoreLayerClick.js +0 -1
  2176. package/IgnoreLayerClick.js.flow +0 -3
  2177. package/Input.d.ts +0 -2
  2178. package/Input.js +0 -1
  2179. package/Input.js.flow +0 -3
  2180. package/Kebab.d.ts +0 -2
  2181. package/Kebab.js +0 -1
  2182. package/Kebab.js.flow +0 -3
  2183. package/Kladr.d.ts +0 -2
  2184. package/Kladr.js +0 -1
  2185. package/Kladr.js.flow +0 -3
  2186. package/Link.d.ts +0 -2
  2187. package/Link.js +0 -1
  2188. package/Link.js.flow +0 -3
  2189. package/Loader.d.ts +0 -2
  2190. package/Loader.js +0 -1
  2191. package/Loader.js.flow +0 -3
  2192. package/LocaleProvider.d.ts +0 -2
  2193. package/LocaleProvider.js +0 -1
  2194. package/Logotype.d.ts +0 -2
  2195. package/Logotype.js +0 -1
  2196. package/Logotype.js.flow +0 -3
  2197. package/MenuHeader.d.ts +0 -2
  2198. package/MenuHeader.js +0 -1
  2199. package/MenuHeader.js.flow +0 -3
  2200. package/MenuItem.d.ts +0 -2
  2201. package/MenuItem.js +0 -1
  2202. package/MenuItem.js.flow +0 -3
  2203. package/MenuSeparator.d.ts +0 -2
  2204. package/MenuSeparator.js +0 -1
  2205. package/MenuSeparator.js.flow +0 -3
  2206. package/Modal.d.ts +0 -2
  2207. package/Modal.js +0 -1
  2208. package/Modal.js.flow +0 -3
  2209. package/ModalStack.d.ts +0 -2
  2210. package/ModalStack.js +0 -1
  2211. package/ModalStack.js.flow +0 -3
  2212. package/Paging.d.ts +0 -2
  2213. package/Paging.js +0 -1
  2214. package/Paging.js.flow +0 -3
  2215. package/PasswordInput.d.ts +0 -2
  2216. package/PasswordInput.js +0 -1
  2217. package/PasswordInput.js.flow +0 -3
  2218. package/PhoneInput.js +0 -1
  2219. package/Popup.d.ts +0 -2
  2220. package/Popup.js +0 -1
  2221. package/Popup.js.flow +0 -3
  2222. package/Radio.d.ts +0 -2
  2223. package/Radio.js +0 -1
  2224. package/Radio.js.flow +0 -3
  2225. package/RadioGroup.d.ts +0 -2
  2226. package/RadioGroup.js +0 -1
  2227. package/RadioGroup.js.flow +0 -3
  2228. package/RenderContainer.d.ts +0 -2
  2229. package/RenderContainer.js +0 -1
  2230. package/RenderContainer.js.flow +0 -3
  2231. package/RenderLayer.d.ts +0 -2
  2232. package/RenderLayer.js +0 -1
  2233. package/RenderLayer.js.flow +0 -3
  2234. package/ScrollContainer.d.ts +0 -2
  2235. package/ScrollContainer.js +0 -1
  2236. package/ScrollContainer.js.flow +0 -3
  2237. package/Select.d.ts +0 -2
  2238. package/Select.js +0 -1
  2239. package/Select.js.flow +0 -3
  2240. package/SidePage.d.ts +0 -2
  2241. package/SidePage.js +0 -1
  2242. package/SidePage.js.flow +0 -3
  2243. package/Spinner.d.ts +0 -2
  2244. package/Spinner.js +0 -1
  2245. package/Spinner.js.flow +0 -3
  2246. package/Sticky.d.ts +0 -2
  2247. package/Sticky.js +0 -1
  2248. package/Sticky.js.flow +0 -3
  2249. package/Switcher.d.ts +0 -2
  2250. package/Switcher.js +0 -1
  2251. package/Switcher.js.flow +0 -3
  2252. package/Tabs.d.ts +0 -2
  2253. package/Tabs.js +0 -1
  2254. package/Tabs.js.flow +0 -3
  2255. package/Textarea.d.ts +0 -2
  2256. package/Textarea.js +0 -1
  2257. package/Textarea.js.flow +0 -3
  2258. package/ThemeConsumer.d.ts +0 -2
  2259. package/ThemeConsumer.js +0 -1
  2260. package/ThemeProvider.d.ts +0 -2
  2261. package/ThemeProvider.js +0 -1
  2262. package/Toast.d.ts +0 -2
  2263. package/Toast.js +0 -1
  2264. package/Toast.js.flow +0 -3
  2265. package/Toggle.d.ts +0 -2
  2266. package/Toggle.js +0 -1
  2267. package/Toggle.js.flow +0 -3
  2268. package/Token.d.ts +0 -2
  2269. package/Token.js +0 -1
  2270. package/Token.js.flow +0 -3
  2271. package/TokenInput.d.ts +0 -2
  2272. package/TokenInput.js +0 -1
  2273. package/TokenInput.js.flow +0 -3
  2274. package/Tooltip.d.ts +0 -2
  2275. package/Tooltip.js +0 -1
  2276. package/Tooltip.js.flow +0 -3
  2277. package/TooltipMenu.d.ts +0 -2
  2278. package/TooltipMenu.js +0 -1
  2279. package/TooltipMenu.js.flow +0 -3
  2280. package/TopBar.d.ts +0 -2
  2281. package/TopBar.js +0 -1
  2282. package/TopBar.js.flow +0 -3
  2283. package/ZIndex.d.ts +0 -2
  2284. package/ZIndex.js +0 -1
  2285. package/ZIndex.js.flow +0 -3
  2286. package/components/Autocomplete/Autocomplete.adapter.d.ts +0 -2
  2287. package/components/Autocomplete/Autocomplete.adapter.js +0 -22
  2288. package/components/Autocomplete/Autocomplete.adapter.js.flow +0 -4
  2289. package/components/Autocomplete/Autocomplete.adapter.js.map +0 -1
  2290. package/components/Autocomplete/Autocomplete.js.flow +0 -37
  2291. package/components/Autocomplete/README.md +0 -7
  2292. package/components/Autocomplete/index.js.flow +0 -2
  2293. package/components/Button/Button.adapter.d.ts +0 -3
  2294. package/components/Button/Button.adapter.js +0 -17
  2295. package/components/Button/Button.adapter.js.flow +0 -4
  2296. package/components/Button/Button.adapter.js.map +0 -1
  2297. package/components/Button/Button.js.flow +0 -58
  2298. package/components/Button/Button.mixins.css +0 -16
  2299. package/components/Button/Button.module.css +0 -301
  2300. package/components/Button/Corners.d.ts +0 -7
  2301. package/components/Button/Corners.js +0 -7
  2302. package/components/Button/Corners.js.flow +0 -12
  2303. package/components/Button/Corners.js.map +0 -1
  2304. package/components/Button/README.md +0 -85
  2305. package/components/Button/index.js.flow +0 -2
  2306. package/components/Calendar/Animation.d.ts +0 -6
  2307. package/components/Calendar/Animation.js +0 -69
  2308. package/components/Calendar/Animation.js.flow +0 -7
  2309. package/components/Calendar/Animation.js.map +0 -1
  2310. package/components/Calendar/Calendar.js.flow +0 -33
  2311. package/components/Calendar/Calendar.module.css +0 -11
  2312. package/components/Calendar/CalendarDateShape.js.flow +0 -26
  2313. package/components/Calendar/CalendarScrollEvents.js.flow +0 -15
  2314. package/components/Calendar/CalendarUtils.js.flow +0 -35
  2315. package/components/Calendar/DayCellView.js.flow +0 -16
  2316. package/components/Calendar/DayCellView.module.css +0 -13
  2317. package/components/Calendar/DayCellViewModel.js.flow +0 -9
  2318. package/components/Calendar/Month.js.flow +0 -23
  2319. package/components/Calendar/MonthView.js.flow +0 -24
  2320. package/components/Calendar/MonthView.module.css +0 -23
  2321. package/components/Calendar/MonthViewModel.js.flow +0 -16
  2322. package/components/Calendar/config.js.flow +0 -11
  2323. package/components/Calendar/index.js.flow +0 -2
  2324. package/components/Calendar/presets.d.ts +0 -19
  2325. package/components/Calendar/presets.js +0 -7
  2326. package/components/Calendar/presets.js.flow +0 -21
  2327. package/components/Calendar/presets.js.map +0 -1
  2328. package/components/Calendar/stepper.d.ts +0 -1
  2329. package/components/Calendar/stepper.js +0 -26
  2330. package/components/Calendar/stepper.js.flow +0 -2
  2331. package/components/Calendar/stepper.js.map +0 -1
  2332. package/components/Calendar/utils.d.ts +0 -1
  2333. package/components/Calendar/utils.js +0 -34
  2334. package/components/Calendar/utils.js.flow +0 -2
  2335. package/components/Calendar/utils.js.map +0 -1
  2336. package/components/Center/Center.js.flow +0 -15
  2337. package/components/Center/Center.module.css +0 -13
  2338. package/components/Center/README.md +0 -5
  2339. package/components/Center/index.js.flow +0 -2
  2340. package/components/Checkbox/Checkbox.adapter.d.ts +0 -2
  2341. package/components/Checkbox/Checkbox.adapter.js +0 -17
  2342. package/components/Checkbox/Checkbox.adapter.js.flow +0 -4
  2343. package/components/Checkbox/Checkbox.adapter.js.map +0 -1
  2344. package/components/Checkbox/Checkbox.js.flow +0 -27
  2345. package/components/Checkbox/README.md +0 -61
  2346. package/components/Checkbox/index.js.flow +0 -2
  2347. package/components/ComboBox/ComboBox.js.flow +0 -58
  2348. package/components/ComboBox/README.md +0 -423
  2349. package/components/ComboBox/__mocks__/getCities.js +0 -19
  2350. package/components/ComboBox/__mocks__/getCities.js.map +0 -1
  2351. package/components/ComboBox/__mocks__/kladr.json +0 -20002
  2352. package/components/ComboBox/index.js.flow +0 -2
  2353. package/components/ComboBoxOld/ComboBoxOld.adapter.js +0 -45
  2354. package/components/ComboBoxOld/ComboBoxOld.adapter.js.map +0 -1
  2355. package/components/ComboBoxOld/ComboBoxOld.d.ts +0 -120
  2356. package/components/ComboBoxOld/ComboBoxOld.js +0 -257
  2357. package/components/ComboBoxOld/ComboBoxOld.js.map +0 -1
  2358. package/components/ComboBoxOld/ComboBoxRenderer.js +0 -546
  2359. package/components/ComboBoxOld/ComboBoxRenderer.js.map +0 -1
  2360. package/components/ComboBoxOld/ComboBoxRenderer.module.css +0 -28
  2361. package/components/ComboBoxOld/README.md +0 -83
  2362. package/components/ComboBoxOld/index.d.ts +0 -1
  2363. package/components/ComboBoxOld/index.js +0 -2
  2364. package/components/ComboBoxOld/index.js.map +0 -1
  2365. package/components/CurrencyInput/CurrencyHelper.js.flow +0 -44
  2366. package/components/CurrencyInput/CurrencyInput.js.flow +0 -30
  2367. package/components/CurrencyInput/CurrencyInputHelper.js.flow +0 -38
  2368. package/components/CurrencyInput/CurrencyInputKeyboardActions.js.flow +0 -19
  2369. package/components/CurrencyInput/CursorHelper.js.flow +0 -15
  2370. package/components/CurrencyInput/README.md +0 -19
  2371. package/components/CurrencyInput/SelectionHelper.js.flow +0 -16
  2372. package/components/CurrencyInput/index.js.flow +0 -2
  2373. package/components/CurrencyLabel/CurrencyLabel.js.flow +0 -10
  2374. package/components/CurrencyLabel/README.md +0 -23
  2375. package/components/CurrencyLabel/index.js.flow +0 -2
  2376. package/components/CustomComboBox/ComboBoxMenu.d.ts +0 -32
  2377. package/components/CustomComboBox/ComboBoxMenu.js +0 -79
  2378. package/components/CustomComboBox/ComboBoxMenu.js.flow +0 -22
  2379. package/components/CustomComboBox/ComboBoxMenu.js.map +0 -1
  2380. package/components/CustomComboBox/ComboBoxView.d.ts +0 -77
  2381. package/components/CustomComboBox/ComboBoxView.js +0 -110
  2382. package/components/CustomComboBox/ComboBoxView.js.flow +0 -52
  2383. package/components/CustomComboBox/ComboBoxView.js.map +0 -1
  2384. package/components/CustomComboBox/CustomComboBox.d.ts +0 -130
  2385. package/components/CustomComboBox/CustomComboBox.js +0 -300
  2386. package/components/CustomComboBox/CustomComboBox.js.flow +0 -130
  2387. package/components/CustomComboBox/CustomComboBox.js.map +0 -1
  2388. package/components/CustomComboBox/CustomComboBox.module.css +0 -18
  2389. package/components/CustomComboBox/CustomComboBoxReducer.d.ts +0 -73
  2390. package/components/CustomComboBox/CustomComboBoxReducer.js +0 -319
  2391. package/components/CustomComboBox/CustomComboBoxReducer.js.map +0 -1
  2392. package/components/CustomComboBox/CustomComboBoxTypes.d.ts +0 -6
  2393. package/components/CustomComboBox/CustomComboBoxTypes.js +0 -9
  2394. package/components/CustomComboBox/CustomComboBoxTypes.js.map +0 -1
  2395. package/components/CustomComboBox/index.d.ts +0 -1
  2396. package/components/CustomComboBox/index.js +0 -4
  2397. package/components/CustomComboBox/index.js.flow +0 -2
  2398. package/components/CustomComboBox/index.js.map +0 -1
  2399. package/components/CustomComboBox/locale/index.d.ts +0 -4
  2400. package/components/CustomComboBox/locale/index.js +0 -9
  2401. package/components/CustomComboBox/locale/index.js.map +0 -1
  2402. package/components/CustomComboBox/locale/locales/en.d.ts +0 -3
  2403. package/components/CustomComboBox/locale/locales/en.js +0 -8
  2404. package/components/CustomComboBox/locale/locales/en.js.map +0 -1
  2405. package/components/CustomComboBox/locale/locales/ru.d.ts +0 -3
  2406. package/components/CustomComboBox/locale/locales/ru.js +0 -8
  2407. package/components/CustomComboBox/locale/locales/ru.js.map +0 -1
  2408. package/components/CustomComboBox/locale/types.d.ts +0 -5
  2409. package/components/CustomComboBox/locale/types.js +0 -2
  2410. package/components/CustomComboBox/locale/types.js.map +0 -1
  2411. package/components/DateInput/DateFragmentsView.module.css +0 -16
  2412. package/components/DateInput/DateInput.js.flow +0 -60
  2413. package/components/DateInput/DateInput.module.css +0 -6
  2414. package/components/DateInput/README.md +0 -104
  2415. package/components/DateInput/ViewDateInputValidateChecks.d.ts +0 -10
  2416. package/components/DateInput/ViewDateInputValidateChecks.js +0 -66
  2417. package/components/DateInput/ViewDateInputValidateChecks.js.map +0 -1
  2418. package/components/DateInput/helpers/DateInputKeyboardActions.js.flow +0 -17
  2419. package/components/DateInput/helpers/SelectionHelpers.d.ts +0 -2
  2420. package/components/DateInput/helpers/SelectionHelpers.js +0 -51
  2421. package/components/DateInput/helpers/SelectionHelpers.js.flow +0 -3
  2422. package/components/DateInput/helpers/SelectionHelpers.js.map +0 -1
  2423. package/components/DateInput/helpers/inputNumber.js.flow +0 -4
  2424. package/components/DateInput/index.js.flow +0 -2
  2425. package/components/DateInput/mask-char-font/font.eot +0 -0
  2426. package/components/DateInput/mask-char-font/font.woff +0 -0
  2427. package/components/DateInput/mask-char-font/font.woff2 +0 -0
  2428. package/components/DatePicker/DatePicker.js.flow +0 -45
  2429. package/components/DatePicker/DatePicker.module.css +0 -4
  2430. package/components/DatePicker/DatePickerHelpers.d.ts +0 -2
  2431. package/components/DatePicker/DatePickerHelpers.js +0 -8
  2432. package/components/DatePicker/DatePickerHelpers.js.flow +0 -7
  2433. package/components/DatePicker/DatePickerHelpers.js.map +0 -1
  2434. package/components/DatePicker/DateShape.js.flow +0 -11
  2435. package/components/DatePicker/Picker.d.ts +0 -33
  2436. package/components/DatePicker/Picker.js +0 -95
  2437. package/components/DatePicker/Picker.js.flow +0 -23
  2438. package/components/DatePicker/Picker.js.map +0 -1
  2439. package/components/DatePicker/Picker.module.css +0 -16
  2440. package/components/DatePicker/Picker.styles.d.ts +0 -6
  2441. package/components/DatePicker/Picker.styles.js +0 -14
  2442. package/components/DatePicker/Picker.styles.js.map +0 -1
  2443. package/components/DatePicker/README.md +0 -307
  2444. package/components/DatePicker/index.js.flow +0 -2
  2445. package/components/DatePickerOld/Calendar.js +0 -170
  2446. package/components/DatePickerOld/Calendar.js.map +0 -1
  2447. package/components/DatePickerOld/Calendar.module.css +0 -62
  2448. package/components/DatePickerOld/CalendarCell.js +0 -88
  2449. package/components/DatePickerOld/CalendarCell.js.map +0 -1
  2450. package/components/DatePickerOld/DateInput.js +0 -371
  2451. package/components/DatePickerOld/DateInput.js.map +0 -1
  2452. package/components/DatePickerOld/DatePicker.adapter.js +0 -32
  2453. package/components/DatePickerOld/DatePicker.adapter.js.map +0 -1
  2454. package/components/DatePickerOld/DatePickerOld.d.ts +0 -35
  2455. package/components/DatePickerOld/DatePickerOld.js +0 -330
  2456. package/components/DatePickerOld/DatePickerOld.js.map +0 -1
  2457. package/components/DatePickerOld/DatePickerOld.module.css +0 -23
  2458. package/components/DatePickerOld/Picker.js +0 -59
  2459. package/components/DatePickerOld/Picker.js.map +0 -1
  2460. package/components/DatePickerOld/Picker.module.css +0 -13
  2461. package/components/DatePickerOld/README.md +0 -7
  2462. package/components/DatePickerOld/dateParser.js +0 -46
  2463. package/components/DatePickerOld/dateParser.js.map +0 -1
  2464. package/components/DatePickerOld/index.d.ts +0 -1
  2465. package/components/DatePickerOld/index.js +0 -2
  2466. package/components/DatePickerOld/index.js.map +0 -1
  2467. package/components/DateSelect/DateSelect.d.ts +0 -90
  2468. package/components/DateSelect/DateSelect.js +0 -356
  2469. package/components/DateSelect/DateSelect.js.flow +0 -30
  2470. package/components/DateSelect/DateSelect.js.map +0 -1
  2471. package/components/DateSelect/DateSelect.module.css +0 -78
  2472. package/components/DateSelect/DateSelect.styles.d.ts +0 -13
  2473. package/components/DateSelect/DateSelect.styles.js +0 -35
  2474. package/components/DateSelect/DateSelect.styles.js.map +0 -1
  2475. package/components/DateSelect/index.d.ts +0 -1
  2476. package/components/DateSelect/index.js +0 -4
  2477. package/components/DateSelect/index.js.flow +0 -2
  2478. package/components/DateSelect/index.js.map +0 -1
  2479. package/components/Dropdown/Dropdown.js.flow +0 -41
  2480. package/components/Dropdown/README.md +0 -14
  2481. package/components/Dropdown/index.js.flow +0 -2
  2482. package/components/DropdownContainer/DropdownContainer.d.ts +0 -46
  2483. package/components/DropdownContainer/DropdownContainer.js +0 -147
  2484. package/components/DropdownContainer/DropdownContainer.js.flow +0 -29
  2485. package/components/DropdownContainer/DropdownContainer.js.map +0 -1
  2486. package/components/DropdownMenu/DropdownMenu.js.flow +0 -20
  2487. package/components/DropdownMenu/README.md +0 -66
  2488. package/components/DropdownMenu/index.js.flow +0 -2
  2489. package/components/Fias/Fias.d.ts +0 -134
  2490. package/components/Fias/Fias.js +0 -219
  2491. package/components/Fias/Fias.js.flow +0 -37
  2492. package/components/Fias/Fias.js.map +0 -1
  2493. package/components/Fias/Fias.styles.d.ts +0 -6
  2494. package/components/Fias/Fias.styles.js +0 -14
  2495. package/components/Fias/Fias.styles.js.map +0 -1
  2496. package/components/Fias/FiasModal.d.ts +0 -15
  2497. package/components/Fias/FiasModal.js +0 -36
  2498. package/components/Fias/FiasModal.js.flow +0 -12
  2499. package/components/Fias/FiasModal.js.map +0 -1
  2500. package/components/Fias/FiasSearch/FiasSearch.d.ts +0 -54
  2501. package/components/Fias/FiasSearch/FiasSearch.js +0 -101
  2502. package/components/Fias/FiasSearch/FiasSearch.js.flow +0 -32
  2503. package/components/Fias/FiasSearch/FiasSearch.js.map +0 -1
  2504. package/components/Fias/FiasSearch/README.md +0 -78
  2505. package/components/Fias/Form/FiasComboBox.d.ts +0 -39
  2506. package/components/Fias/Form/FiasComboBox.js +0 -113
  2507. package/components/Fias/Form/FiasComboBox.js.flow +0 -25
  2508. package/components/Fias/Form/FiasComboBox.js.map +0 -1
  2509. package/components/Fias/Form/FiasCountrySelector.d.ts +0 -20
  2510. package/components/Fias/Form/FiasCountrySelector.js +0 -66
  2511. package/components/Fias/Form/FiasCountrySelector.js.map +0 -1
  2512. package/components/Fias/Form/FiasForm.d.ts +0 -95
  2513. package/components/Fias/Form/FiasForm.js +0 -381
  2514. package/components/Fias/Form/FiasForm.js.flow +0 -21
  2515. package/components/Fias/Form/FiasForm.js.map +0 -1
  2516. package/components/Fias/Form/FiasForm.module.css +0 -10
  2517. package/components/Fias/README.md +0 -436
  2518. package/components/Fias/api/APIResultFactory.d.ts +0 -5
  2519. package/components/Fias/api/APIResultFactory.js +0 -21
  2520. package/components/Fias/api/APIResultFactory.js.flow +0 -7
  2521. package/components/Fias/api/APIResultFactory.js.map +0 -1
  2522. package/components/Fias/api/FiasAPI.d.ts +0 -27
  2523. package/components/Fias/api/FiasAPI.js +0 -238
  2524. package/components/Fias/api/FiasAPI.js.flow +0 -13
  2525. package/components/Fias/api/FiasAPI.js.map +0 -1
  2526. package/components/Fias/api/MockAPI.d.ts +0 -9
  2527. package/components/Fias/api/MockAPI.js +0 -57
  2528. package/components/Fias/api/MockAPI.js.flow +0 -13
  2529. package/components/Fias/api/MockAPI.js.map +0 -1
  2530. package/components/Fias/api/data.json +0 -285
  2531. package/components/Fias/constants/abbreviations.d.ts +0 -4
  2532. package/components/Fias/constants/abbreviations.js +0 -156
  2533. package/components/Fias/constants/abbreviations.js.flow +0 -7
  2534. package/components/Fias/constants/abbreviations.js.map +0 -1
  2535. package/components/Fias/index.d.ts +0 -4
  2536. package/components/Fias/index.js +0 -11
  2537. package/components/Fias/index.js.flow +0 -5
  2538. package/components/Fias/index.js.map +0 -1
  2539. package/components/Fias/locale/index.d.ts +0 -4
  2540. package/components/Fias/locale/index.js +0 -7
  2541. package/components/Fias/locale/index.js.map +0 -1
  2542. package/components/Fias/locale/locales/ru.d.ts +0 -3
  2543. package/components/Fias/locale/locales/ru.js +0 -59
  2544. package/components/Fias/locale/locales/ru.js.map +0 -1
  2545. package/components/Fias/locale/types.d.ts +0 -56
  2546. package/components/Fias/locale/types.js +0 -2
  2547. package/components/Fias/locale/types.js.flow +0 -71
  2548. package/components/Fias/locale/types.js.map +0 -1
  2549. package/components/Fias/logger/Logger.d.ts +0 -9
  2550. package/components/Fias/logger/Logger.js +0 -19
  2551. package/components/Fias/logger/Logger.js.flow +0 -13
  2552. package/components/Fias/logger/Logger.js.map +0 -1
  2553. package/components/Fias/models/Address.d.ts +0 -97
  2554. package/components/Fias/models/Address.js +0 -483
  2555. package/components/Fias/models/Address.js.flow +0 -57
  2556. package/components/Fias/models/Address.js.map +0 -1
  2557. package/components/Fias/models/AddressElement.d.ts +0 -18
  2558. package/components/Fias/models/AddressElement.js +0 -180
  2559. package/components/Fias/models/AddressElement.js.flow +0 -15
  2560. package/components/Fias/models/AddressElement.js.map +0 -1
  2561. package/components/Fias/models/FiasData.d.ts +0 -20
  2562. package/components/Fias/models/FiasData.js +0 -118
  2563. package/components/Fias/models/FiasData.js.flow +0 -10
  2564. package/components/Fias/models/FiasData.js.map +0 -1
  2565. package/components/Fias/types.d.ts +0 -142
  2566. package/components/Fias/types.js +0 -44
  2567. package/components/Fias/types.js.flow +0 -133
  2568. package/components/Fias/types.js.map +0 -1
  2569. package/components/FxInput/FxInput.adapter.d.ts +0 -2
  2570. package/components/FxInput/FxInput.adapter.js +0 -31
  2571. package/components/FxInput/FxInput.adapter.js.flow +0 -4
  2572. package/components/FxInput/FxInput.adapter.js.map +0 -1
  2573. package/components/FxInput/FxInput.js.flow +0 -24
  2574. package/components/FxInput/README.md +0 -13
  2575. package/components/FxInput/index.js.flow +0 -2
  2576. package/components/Gapped/Gapped.js.flow +0 -13
  2577. package/components/Gapped/README.md +0 -44
  2578. package/components/Gapped/index.js.flow +0 -2
  2579. package/components/Group/Group.js.flow +0 -14
  2580. package/components/Group/Group.module.css +0 -24
  2581. package/components/Group/README.md +0 -27
  2582. package/components/Group/index.js.flow +0 -2
  2583. package/components/HideBodyVerticalScroll/HideBodyVerticalScroll.d.ts +0 -16
  2584. package/components/HideBodyVerticalScroll/HideBodyVerticalScroll.js +0 -131
  2585. package/components/HideBodyVerticalScroll/HideBodyVerticalScroll.js.flow +0 -7
  2586. package/components/HideBodyVerticalScroll/HideBodyVerticalScroll.js.map +0 -1
  2587. package/components/HideBodyVerticalScroll/index.d.ts +0 -1
  2588. package/components/HideBodyVerticalScroll/index.js +0 -4
  2589. package/components/HideBodyVerticalScroll/index.js.flow +0 -2
  2590. package/components/HideBodyVerticalScroll/index.js.map +0 -1
  2591. package/components/Hint/Hint.js.flow +0 -37
  2592. package/components/Hint/HintBox.module.css +0 -13
  2593. package/components/Hint/README.md +0 -3
  2594. package/components/Hint/index.js.flow +0 -2
  2595. package/components/Icon/20px/Icon.d.ts +0 -33
  2596. package/components/Icon/20px/Icon.js +0 -45
  2597. package/components/Icon/20px/Icon.js.flow +0 -27
  2598. package/components/Icon/20px/Icon.js.map +0 -1
  2599. package/components/Icon/20px/Icon.module.css +0 -25
  2600. package/components/Icon/20px/Kontur-Iconic-eco-20px.eot +0 -0
  2601. package/components/Icon/20px/Kontur-Iconic-eco-20px.woff +0 -0
  2602. package/components/Icon/20px/Kontur-Iconic-eco-20px.woff2 +0 -0
  2603. package/components/Icon/20px/index.d.ts +0 -1
  2604. package/components/Icon/20px/index.js +0 -4
  2605. package/components/Icon/20px/index.js.flow +0 -2
  2606. package/components/Icon/20px/index.js.map +0 -1
  2607. package/components/Icon/README.md +0 -64
  2608. package/components/IgnoreLayerClick/IgnoreLayerClick.d.ts +0 -8
  2609. package/components/IgnoreLayerClick/IgnoreLayerClick.js +0 -47
  2610. package/components/IgnoreLayerClick/IgnoreLayerClick.js.flow +0 -12
  2611. package/components/IgnoreLayerClick/IgnoreLayerClick.js.map +0 -1
  2612. package/components/IgnoreLayerClick/index.d.ts +0 -1
  2613. package/components/IgnoreLayerClick/index.js +0 -4
  2614. package/components/IgnoreLayerClick/index.js.flow +0 -2
  2615. package/components/IgnoreLayerClick/index.js.map +0 -1
  2616. package/components/Input/Input.adapter.d.ts +0 -7
  2617. package/components/Input/Input.adapter.js +0 -18
  2618. package/components/Input/Input.adapter.js.flow +0 -9
  2619. package/components/Input/Input.adapter.js.map +0 -1
  2620. package/components/Input/Input.js.flow +0 -55
  2621. package/components/Input/Input.module.css +0 -132
  2622. package/components/Input/README.md +0 -13
  2623. package/components/Input/index.js.flow +0 -2
  2624. package/components/Kebab/Kebab.js.flow +0 -23
  2625. package/components/Kebab/Kebab.module.css +0 -42
  2626. package/components/Kebab/README.md +0 -44
  2627. package/components/Kebab/index.js.flow +0 -2
  2628. package/components/Kladr/AddressModal.d.ts +0 -39
  2629. package/components/Kladr/AddressModal.js +0 -341
  2630. package/components/Kladr/AddressModal.js.flow +0 -20
  2631. package/components/Kladr/AddressModal.js.map +0 -1
  2632. package/components/Kladr/AddressModal.module.css +0 -17
  2633. package/components/Kladr/Kladr.d.ts +0 -39
  2634. package/components/Kladr/Kladr.js +0 -130
  2635. package/components/Kladr/Kladr.js.flow +0 -27
  2636. package/components/Kladr/Kladr.js.map +0 -1
  2637. package/components/Kladr/KladrAPI.d.ts +0 -8
  2638. package/components/Kladr/KladrAPI.js +0 -80
  2639. package/components/Kladr/KladrAPI.js.flow +0 -8
  2640. package/components/Kladr/KladrAPI.js.map +0 -1
  2641. package/components/Kladr/README.md +0 -3
  2642. package/components/Kladr/Types.d.ts +0 -40
  2643. package/components/Kladr/Types.js +0 -1
  2644. package/components/Kladr/Types.js.flow +0 -39
  2645. package/components/Kladr/Types.js.map +0 -1
  2646. package/components/Kladr/index.d.ts +0 -1
  2647. package/components/Kladr/index.js +0 -2
  2648. package/components/Kladr/index.js.flow +0 -2
  2649. package/components/Kladr/index.js.map +0 -1
  2650. package/components/Kladr/util.js +0 -57
  2651. package/components/Kladr/util.js.map +0 -1
  2652. package/components/Kladr/utils.d.ts +0 -4
  2653. package/components/Kladr/utils.js.flow +0 -4
  2654. package/components/Link/Link.adapter.d.ts +0 -2
  2655. package/components/Link/Link.adapter.js +0 -16
  2656. package/components/Link/Link.adapter.js.flow +0 -4
  2657. package/components/Link/Link.adapter.js.map +0 -1
  2658. package/components/Link/Link.js.flow +0 -25
  2659. package/components/Link/Link.module.css +0 -106
  2660. package/components/Link/README.md +0 -11
  2661. package/components/Link/index.js.flow +0 -2
  2662. package/components/Loader/Loader.js.flow +0 -20
  2663. package/components/Loader/Loader.module.css +0 -49
  2664. package/components/Loader/README.md +0 -25
  2665. package/components/Loader/index.js.flow +0 -2
  2666. package/components/LocaleProvider/LocaleHelper.d.ts +0 -9
  2667. package/components/LocaleProvider/LocaleHelper.js +0 -16
  2668. package/components/LocaleProvider/LocaleHelper.js.map +0 -1
  2669. package/components/LocaleProvider/LocaleProvider.d.ts +0 -17
  2670. package/components/LocaleProvider/LocaleProvider.js +0 -25
  2671. package/components/LocaleProvider/LocaleProvider.js.map +0 -1
  2672. package/components/LocaleProvider/constants.d.ts +0 -2
  2673. package/components/LocaleProvider/constants.js +0 -4
  2674. package/components/LocaleProvider/constants.js.map +0 -1
  2675. package/components/LocaleProvider/decorators.d.ts +0 -24
  2676. package/components/LocaleProvider/decorators.js +0 -50
  2677. package/components/LocaleProvider/decorators.js.map +0 -1
  2678. package/components/LocaleProvider/index.d.ts +0 -3
  2679. package/components/LocaleProvider/index.js +0 -9
  2680. package/components/LocaleProvider/index.js.map +0 -1
  2681. package/components/LocaleProvider/types.d.ts +0 -24
  2682. package/components/LocaleProvider/types.js +0 -7
  2683. package/components/LocaleProvider/types.js.map +0 -1
  2684. package/components/Logotype/Logotype.d.ts +0 -92
  2685. package/components/Logotype/Logotype.js +0 -158
  2686. package/components/Logotype/Logotype.js.flow +0 -21
  2687. package/components/Logotype/Logotype.js.map +0 -1
  2688. package/components/Logotype/Logotype.module.css +0 -44
  2689. package/components/Logotype/Logotype.styles.d.ts +0 -12
  2690. package/components/Logotype/Logotype.styles.js +0 -32
  2691. package/components/Logotype/Logotype.styles.js.map +0 -1
  2692. package/components/Logotype/ProductWidget.d.ts +0 -4
  2693. package/components/Logotype/ProductWidget.js +0 -16
  2694. package/components/Logotype/ProductWidget.js.flow +0 -7
  2695. package/components/Logotype/ProductWidget.js.map +0 -1
  2696. package/components/Logotype/README.md +0 -52
  2697. package/components/Logotype/cloud.png +0 -0
  2698. package/components/Logotype/index.d.ts +0 -1
  2699. package/components/Logotype/index.js +0 -4
  2700. package/components/Logotype/index.js.flow +0 -2
  2701. package/components/Logotype/index.js.map +0 -1
  2702. package/components/Logotype/locale/index.d.ts +0 -4
  2703. package/components/Logotype/locale/index.js +0 -9
  2704. package/components/Logotype/locale/index.js.map +0 -1
  2705. package/components/Logotype/locale/locales/en.d.ts +0 -3
  2706. package/components/Logotype/locale/locales/en.js +0 -7
  2707. package/components/Logotype/locale/locales/en.js.map +0 -1
  2708. package/components/Logotype/locale/locales/ru.d.ts +0 -3
  2709. package/components/Logotype/locale/locales/ru.js +0 -7
  2710. package/components/Logotype/locale/locales/ru.js.map +0 -1
  2711. package/components/Logotype/locale/types.d.ts +0 -4
  2712. package/components/Logotype/locale/types.js +0 -2
  2713. package/components/Logotype/locale/types.js.map +0 -1
  2714. package/components/Menu/Menu.d.ts +0 -63
  2715. package/components/Menu/Menu.js +0 -222
  2716. package/components/Menu/Menu.js.flow +0 -24
  2717. package/components/Menu/Menu.js.map +0 -1
  2718. package/components/Menu/Menu.module.css +0 -5
  2719. package/components/Menu/Menu.styles.d.ts +0 -6
  2720. package/components/Menu/Menu.styles.js +0 -14
  2721. package/components/Menu/Menu.styles.js.map +0 -1
  2722. package/components/Menu/isActiveElement.d.ts +0 -3
  2723. package/components/Menu/isActiveElement.js +0 -7
  2724. package/components/Menu/isActiveElement.js.flow +0 -7
  2725. package/components/Menu/isActiveElement.js.map +0 -1
  2726. package/components/MenuHeader/MenuHeader.js.flow +0 -11
  2727. package/components/MenuHeader/MenuHeader.module.css +0 -6
  2728. package/components/MenuHeader/README.md +0 -0
  2729. package/components/MenuHeader/index.js.flow +0 -2
  2730. package/components/MenuItem/MenuItem.js.flow +0 -33
  2731. package/components/MenuItem/MenuItem.module.css +0 -30
  2732. package/components/MenuItem/README.md +0 -5
  2733. package/components/MenuItem/index.js.flow +0 -2
  2734. package/components/MenuSeparator/MenuSeparator.js.flow +0 -7
  2735. package/components/MenuSeparator/MenuSeparator.module.css +0 -3
  2736. package/components/MenuSeparator/README.md +0 -0
  2737. package/components/MenuSeparator/index.js.flow +0 -2
  2738. package/components/Modal/Modal.adapter.d.ts +0 -2
  2739. package/components/Modal/Modal.adapter.js +0 -12
  2740. package/components/Modal/Modal.adapter.js.flow +0 -4
  2741. package/components/Modal/Modal.adapter.js.map +0 -1
  2742. package/components/Modal/Modal.js.flow +0 -30
  2743. package/components/Modal/Modal.module.css +0 -134
  2744. package/components/Modal/ModalBody.js.flow +0 -7
  2745. package/components/Modal/ModalClose.js.flow +0 -6
  2746. package/components/Modal/ModalContext.js.flow +0 -15
  2747. package/components/Modal/ModalFooter.js.flow +0 -11
  2748. package/components/Modal/ModalHeader.js.flow +0 -11
  2749. package/components/Modal/README.md +0 -38
  2750. package/components/Modal/helpers.d.ts +0 -2
  2751. package/components/Modal/helpers.js +0 -8
  2752. package/components/Modal/helpers.js.map +0 -1
  2753. package/components/Modal/index.js.flow +0 -2
  2754. package/components/ModalStack/ModalStack.d.ts +0 -9
  2755. package/components/ModalStack/ModalStack.js +0 -43
  2756. package/components/ModalStack/ModalStack.js.flow +0 -10
  2757. package/components/ModalStack/ModalStack.js.map +0 -1
  2758. package/components/ModalStack/index.d.ts +0 -1
  2759. package/components/ModalStack/index.js +0 -4
  2760. package/components/ModalStack/index.js.flow +0 -2
  2761. package/components/ModalStack/index.js.map +0 -1
  2762. package/components/Paging/NavigationHelper.js.flow +0 -13
  2763. package/components/Paging/Paging.js.flow +0 -38
  2764. package/components/Paging/Paging.module.css +0 -66
  2765. package/components/Paging/PagingHelper.js.flow +0 -10
  2766. package/components/Paging/README.md +0 -43
  2767. package/components/Paging/index.js.flow +0 -2
  2768. package/components/PasswordInput/PasswordInput.js.flow +0 -26
  2769. package/components/PasswordInput/PasswordInput.module.css +0 -39
  2770. package/components/PasswordInput/PasswordInputFallback.d.ts +0 -18
  2771. package/components/PasswordInput/PasswordInputFallback.js +0 -54
  2772. package/components/PasswordInput/PasswordInputFallback.js.flow +0 -13
  2773. package/components/PasswordInput/PasswordInputFallback.js.map +0 -1
  2774. package/components/PasswordInput/getCharHelper.js.flow +0 -4
  2775. package/components/PasswordInput/index.js.flow +0 -2
  2776. package/components/PerformanceMetrics/PerformanceMetrics.d.ts +0 -7
  2777. package/components/PerformanceMetrics/PerformanceMetrics.js +0 -61
  2778. package/components/PerformanceMetrics/PerformanceMetrics.js.map +0 -1
  2779. package/components/PhoneInput/PhoneInput.js +0 -15
  2780. package/components/PhoneInput/PhoneInput.js.map +0 -1
  2781. package/components/PhoneInput/index.js +0 -2
  2782. package/components/PhoneInput/index.js.map +0 -1
  2783. package/components/Popup/Popup.d.ts +0 -145
  2784. package/components/Popup/Popup.js +0 -416
  2785. package/components/Popup/Popup.js.flow +0 -60
  2786. package/components/Popup/Popup.js.map +0 -1
  2787. package/components/Popup/Popup.module.css +0 -35
  2788. package/components/Popup/Popup.styles.d.ts +0 -8
  2789. package/components/Popup/Popup.styles.js +0 -20
  2790. package/components/Popup/Popup.styles.js.map +0 -1
  2791. package/components/Popup/PopupHelper.d.ts +0 -26
  2792. package/components/Popup/PopupHelper.js +0 -90
  2793. package/components/Popup/PopupHelper.js.flow +0 -29
  2794. package/components/Popup/PopupHelper.js.map +0 -1
  2795. package/components/Popup/PopupPin.d.ts +0 -56
  2796. package/components/Popup/PopupPin.js +0 -203
  2797. package/components/Popup/PopupPin.js.flow +0 -15
  2798. package/components/Popup/PopupPin.js.map +0 -1
  2799. package/components/Popup/PopupPin.module.css +0 -5
  2800. package/components/Popup/index.d.ts +0 -1
  2801. package/components/Popup/index.js +0 -5
  2802. package/components/Popup/index.js.flow +0 -2
  2803. package/components/Popup/index.js.map +0 -1
  2804. package/components/Radio/README.md +0 -14
  2805. package/components/Radio/Radio.js.flow +0 -33
  2806. package/components/Radio/Radio.module.css +0 -76
  2807. package/components/Radio/index.js.flow +0 -2
  2808. package/components/RadioGroup/Prevent.js.flow +0 -9
  2809. package/components/RadioGroup/README.md +0 -44
  2810. package/components/RadioGroup/RadioGroup.adapter.d.ts +0 -2
  2811. package/components/RadioGroup/RadioGroup.adapter.js +0 -28
  2812. package/components/RadioGroup/RadioGroup.adapter.js.flow +0 -4
  2813. package/components/RadioGroup/RadioGroup.adapter.js.map +0 -1
  2814. package/components/RadioGroup/RadioGroup.js.flow +0 -42
  2815. package/components/RadioGroup/RadioGroup.module.css +0 -31
  2816. package/components/RadioGroup/index.js.flow +0 -2
  2817. package/components/RenderContainer/RenderContainer.d.ts +0 -17
  2818. package/components/RenderContainer/RenderContainer.js +0 -76
  2819. package/components/RenderContainer/RenderContainer.js.flow +0 -11
  2820. package/components/RenderContainer/RenderContainer.js.map +0 -1
  2821. package/components/RenderContainer/RenderContainerFallback.d.ts +0 -26
  2822. package/components/RenderContainer/RenderContainerFallback.js +0 -71
  2823. package/components/RenderContainer/RenderContainerFallback.js.map +0 -1
  2824. package/components/RenderContainer/RenderContainerNative.d.ts +0 -13
  2825. package/components/RenderContainer/RenderContainerNative.js +0 -30
  2826. package/components/RenderContainer/RenderContainerNative.js.map +0 -1
  2827. package/components/RenderContainer/RenderContainerTypes.d.ts +0 -8
  2828. package/components/RenderContainer/RenderContainerTypes.js +0 -2
  2829. package/components/RenderContainer/RenderContainerTypes.js.map +0 -1
  2830. package/components/RenderContainer/index.d.ts +0 -1
  2831. package/components/RenderContainer/index.js +0 -4
  2832. package/components/RenderContainer/index.js.flow +0 -2
  2833. package/components/RenderContainer/index.js.map +0 -1
  2834. package/components/RenderLayer/RenderLayer.d.ts +0 -27
  2835. package/components/RenderLayer/RenderLayer.js +0 -81
  2836. package/components/RenderLayer/RenderLayer.js.flow +0 -12
  2837. package/components/RenderLayer/RenderLayer.js.map +0 -1
  2838. package/components/RenderLayer/index.d.ts +0 -1
  2839. package/components/RenderLayer/index.js +0 -4
  2840. package/components/RenderLayer/index.js.flow +0 -2
  2841. package/components/RenderLayer/index.js.map +0 -1
  2842. package/components/ScrollContainer/README.md +0 -60
  2843. package/components/ScrollContainer/ScrollContainer.js.flow +0 -24
  2844. package/components/ScrollContainer/ScrollContainer.module.css +0 -41
  2845. package/components/ScrollContainer/index.js.flow +0 -2
  2846. package/components/Select/Item.js.flow +0 -7
  2847. package/components/Select/README.md +0 -23
  2848. package/components/Select/Select.adapter.d.ts +0 -2
  2849. package/components/Select/Select.adapter.js +0 -23
  2850. package/components/Select/Select.adapter.js.flow +0 -4
  2851. package/components/Select/Select.adapter.js.map +0 -1
  2852. package/components/Select/Select.js.flow +0 -81
  2853. package/components/Select/Select.module.css +0 -56
  2854. package/components/Select/index.js.flow +0 -2
  2855. package/components/SidePage/README.md +0 -46
  2856. package/components/SidePage/SidePage.js.flow +0 -34
  2857. package/components/SidePage/SidePage.module.css +0 -115
  2858. package/components/SidePage/SidePageBody.js.flow +0 -13
  2859. package/components/SidePage/SidePageContainer.js.flow +0 -9
  2860. package/components/SidePage/SidePageContext.js.flow +0 -15
  2861. package/components/SidePage/SidePageFooter.js.flow +0 -16
  2862. package/components/SidePage/SidePageHeader.js.flow +0 -11
  2863. package/components/SidePage/index.js.flow +0 -2
  2864. package/components/Spinner/README.md +0 -33
  2865. package/components/Spinner/Spinner.js.flow +0 -20
  2866. package/components/Spinner/Spinner.module.css +0 -35
  2867. package/components/Spinner/SpinnerFallback.d.ts +0 -25
  2868. package/components/Spinner/SpinnerFallback.js +0 -78
  2869. package/components/Spinner/SpinnerFallback.js.flow +0 -15
  2870. package/components/Spinner/SpinnerFallback.js.map +0 -1
  2871. package/components/Spinner/fallback_circle.png +0 -0
  2872. package/components/Spinner/fallback_circle_dimmed.png +0 -0
  2873. package/components/Spinner/fallback_cloud_big.png +0 -0
  2874. package/components/Spinner/fallback_cloud_normal.png +0 -0
  2875. package/components/Spinner/index.js.flow +0 -2
  2876. package/components/Spinner/locale/index.d.ts +0 -4
  2877. package/components/Spinner/locale/index.js +0 -9
  2878. package/components/Spinner/locale/index.js.map +0 -1
  2879. package/components/Spinner/locale/locales/en.d.ts +0 -3
  2880. package/components/Spinner/locale/locales/en.js +0 -6
  2881. package/components/Spinner/locale/locales/en.js.map +0 -1
  2882. package/components/Spinner/locale/locales/ru.d.ts +0 -3
  2883. package/components/Spinner/locale/locales/ru.js +0 -6
  2884. package/components/Spinner/locale/locales/ru.js.map +0 -1
  2885. package/components/Spinner/locale/types.d.ts +0 -4
  2886. package/components/Spinner/locale/types.js +0 -2
  2887. package/components/Spinner/locale/types.js.map +0 -1
  2888. package/components/Spinner/settings.d.ts +0 -38
  2889. package/components/Spinner/settings.js +0 -43
  2890. package/components/Spinner/settings.js.flow +0 -48
  2891. package/components/Spinner/settings.js.map +0 -1
  2892. package/components/Sticky/README.md +0 -27
  2893. package/components/Sticky/Sticky.js.flow +0 -22
  2894. package/components/Sticky/Sticky.module.css +0 -17
  2895. package/components/Sticky/index.js.flow +0 -2
  2896. package/components/Switcher/README.md +0 -10
  2897. package/components/Switcher/Switcher.js.flow +0 -26
  2898. package/components/Switcher/Switcher.module.css +0 -18
  2899. package/components/Switcher/index.js.flow +0 -2
  2900. package/components/Tabs/Indicator.js.flow +0 -21
  2901. package/components/Tabs/Indicator.module.css +0 -5
  2902. package/components/Tabs/README.md +0 -28
  2903. package/components/Tabs/Tab.js.flow +0 -48
  2904. package/components/Tabs/Tab.module.css +0 -61
  2905. package/components/Tabs/Tabs.js.flow +0 -28
  2906. package/components/Tabs/Tabs.module.css +0 -9
  2907. package/components/Tabs/index.js.flow +0 -2
  2908. package/components/Textarea/README.md +0 -9
  2909. package/components/Textarea/Textarea.adapter.d.ts +0 -7
  2910. package/components/Textarea/Textarea.adapter.js +0 -18
  2911. package/components/Textarea/Textarea.adapter.js.flow +0 -11
  2912. package/components/Textarea/Textarea.adapter.js.map +0 -1
  2913. package/components/Textarea/Textarea.js.flow +0 -33
  2914. package/components/Textarea/Textarea.module.css +0 -41
  2915. package/components/Textarea/TextareaHelpers.js.flow +0 -6
  2916. package/components/Textarea/index.js.flow +0 -2
  2917. package/components/ThemeConsumer/ThemeConsumer.d.ts +0 -1
  2918. package/components/ThemeConsumer/ThemeConsumer.js +0 -5
  2919. package/components/ThemeConsumer/ThemeConsumer.js.map +0 -1
  2920. package/components/ThemeConsumer/index.d.ts +0 -1
  2921. package/components/ThemeConsumer/index.js +0 -5
  2922. package/components/ThemeConsumer/index.js.map +0 -1
  2923. package/components/ThemeProvider/Playground/AnotherInputsPlayground.d.ts +0 -13
  2924. package/components/ThemeProvider/Playground/AnotherInputsPlayground.js +0 -48
  2925. package/components/ThemeProvider/Playground/AnotherInputsPlayground.js.map +0 -1
  2926. package/components/ThemeProvider/Playground/CheckboxPlayground.d.ts +0 -4
  2927. package/components/ThemeProvider/Playground/CheckboxPlayground.js +0 -27
  2928. package/components/ThemeProvider/Playground/CheckboxPlayground.js.map +0 -1
  2929. package/components/ThemeProvider/Playground/ComponentsGroup.d.ts +0 -10
  2930. package/components/ThemeProvider/Playground/ComponentsGroup.js +0 -15
  2931. package/components/ThemeProvider/Playground/ComponentsGroup.js.map +0 -1
  2932. package/components/ThemeProvider/Playground/CurrencyInputPlayground.d.ts +0 -11
  2933. package/components/ThemeProvider/Playground/CurrencyInputPlayground.js +0 -24
  2934. package/components/ThemeProvider/Playground/CurrencyInputPlayground.js.map +0 -1
  2935. package/components/ThemeProvider/Playground/FxInputPlayground.d.ts +0 -10
  2936. package/components/ThemeProvider/Playground/FxInputPlayground.js +0 -30
  2937. package/components/ThemeProvider/Playground/FxInputPlayground.js.map +0 -1
  2938. package/components/ThemeProvider/Playground/HintPlayground.d.ts +0 -6
  2939. package/components/ThemeProvider/Playground/HintPlayground.js +0 -30
  2940. package/components/ThemeProvider/Playground/HintPlayground.js.map +0 -1
  2941. package/components/ThemeProvider/Playground/PagingPlayground.d.ts +0 -10
  2942. package/components/ThemeProvider/Playground/PagingPlayground.js +0 -23
  2943. package/components/ThemeProvider/Playground/PagingPlayground.js.map +0 -1
  2944. package/components/ThemeProvider/Playground/Playground.d.ts +0 -33
  2945. package/components/ThemeProvider/Playground/Playground.js +0 -184
  2946. package/components/ThemeProvider/Playground/Playground.js.map +0 -1
  2947. package/components/ThemeProvider/Playground/README.md +0 -7
  2948. package/components/ThemeProvider/Playground/RadioPlayground.d.ts +0 -4
  2949. package/components/ThemeProvider/Playground/RadioPlayground.js +0 -26
  2950. package/components/ThemeProvider/Playground/RadioPlayground.js.map +0 -1
  2951. package/components/ThemeProvider/Playground/SelectPlayground.d.ts +0 -12
  2952. package/components/ThemeProvider/Playground/SelectPlayground.js +0 -30
  2953. package/components/ThemeProvider/Playground/SelectPlayground.js.map +0 -1
  2954. package/components/ThemeProvider/Playground/ShowcaseGroup.d.ts +0 -6
  2955. package/components/ThemeProvider/Playground/ShowcaseGroup.js +0 -18
  2956. package/components/ThemeProvider/Playground/ShowcaseGroup.js.map +0 -1
  2957. package/components/ThemeProvider/Playground/SwitcherPlayground.d.ts +0 -15
  2958. package/components/ThemeProvider/Playground/SwitcherPlayground.js +0 -26
  2959. package/components/ThemeProvider/Playground/SwitcherPlayground.js.map +0 -1
  2960. package/components/ThemeProvider/Playground/ThemeEditor.d.ts +0 -30
  2961. package/components/ThemeProvider/Playground/ThemeEditor.js +0 -93
  2962. package/components/ThemeProvider/Playground/ThemeEditor.js.map +0 -1
  2963. package/components/ThemeProvider/Playground/ThemeProviderPlayground.d.ts +0 -50
  2964. package/components/ThemeProvider/Playground/ThemeProviderPlayground.js +0 -150
  2965. package/components/ThemeProvider/Playground/ThemeProviderPlayground.js.map +0 -1
  2966. package/components/ThemeProvider/Playground/TogglePlayground.d.ts +0 -9
  2967. package/components/ThemeProvider/Playground/TogglePlayground.js +0 -29
  2968. package/components/ThemeProvider/Playground/TogglePlayground.js.map +0 -1
  2969. package/components/ThemeProvider/Playground/TokenInputPlayground.d.ts +0 -7
  2970. package/components/ThemeProvider/Playground/TokenInputPlayground.js +0 -61
  2971. package/components/ThemeProvider/Playground/TokenInputPlayground.js.map +0 -1
  2972. package/components/ThemeProvider/Playground/VariableValue.d.ts +0 -42
  2973. package/components/ThemeProvider/Playground/VariableValue.js +0 -144
  2974. package/components/ThemeProvider/Playground/VariableValue.js.map +0 -1
  2975. package/components/ThemeProvider/Playground/constants.d.ts +0 -14
  2976. package/components/ThemeProvider/Playground/constants.js +0 -30
  2977. package/components/ThemeProvider/Playground/constants.js.map +0 -1
  2978. package/components/ThemeProvider/Playground/darkTheme.d.ts +0 -252
  2979. package/components/ThemeProvider/Playground/darkTheme.js +0 -254
  2980. package/components/ThemeProvider/Playground/darkTheme.js.map +0 -1
  2981. package/components/ThemeProvider/Playground/helpers.d.ts +0 -2
  2982. package/components/ThemeProvider/Playground/helpers.js +0 -25
  2983. package/components/ThemeProvider/Playground/helpers.js.map +0 -1
  2984. package/components/ThemeProvider/Playground/jsStyles.d.ts +0 -8
  2985. package/components/ThemeProvider/Playground/jsStyles.js +0 -20
  2986. package/components/ThemeProvider/Playground/jsStyles.js.map +0 -1
  2987. package/components/ThemeProvider/Playground/styles.module.css +0 -70
  2988. package/components/ThemeProvider/README.md +0 -172
  2989. package/components/ThemeProvider/ThemeProvider.d.ts +0 -15
  2990. package/components/ThemeProvider/ThemeProvider.js +0 -40
  2991. package/components/ThemeProvider/ThemeProvider.js.map +0 -1
  2992. package/components/ThemeProvider/index.d.ts +0 -1
  2993. package/components/ThemeProvider/index.js +0 -5
  2994. package/components/ThemeProvider/index.js.map +0 -1
  2995. package/components/ThemeShowcase/README.md +0 -13
  2996. package/components/ThemeShowcase/ThemeShowcase.d.ts +0 -22
  2997. package/components/ThemeShowcase/ThemeShowcase.js +0 -259
  2998. package/components/ThemeShowcase/ThemeShowcase.js.map +0 -1
  2999. package/components/ThemeShowcase/ThemeShowcase.module.css +0 -113
  3000. package/components/ThemeShowcase/ThemeShowcaseHelpers/FormatSourceCode.d.ts +0 -2
  3001. package/components/ThemeShowcase/ThemeShowcaseHelpers/FormatSourceCode.js +0 -151
  3002. package/components/ThemeShowcase/ThemeShowcaseHelpers/FormatSourceCode.js.map +0 -1
  3003. package/components/ThemeShowcase/ThemeShowcaseHelpers/VariablesCollector.d.ts +0 -24
  3004. package/components/ThemeShowcase/ThemeShowcaseHelpers/VariablesCollector.js +0 -104
  3005. package/components/ThemeShowcase/ThemeShowcaseHelpers/VariablesCollector.js.map +0 -1
  3006. package/components/Toast/README.md +0 -39
  3007. package/components/Toast/Toast.js.flow +0 -29
  3008. package/components/Toast/Toast.module.css +0 -15
  3009. package/components/Toast/ToastStatic.d.ts +0 -9
  3010. package/components/Toast/ToastStatic.js +0 -39
  3011. package/components/Toast/ToastStatic.js.flow +0 -10
  3012. package/components/Toast/ToastStatic.js.map +0 -1
  3013. package/components/Toast/ToastView.js.flow +0 -16
  3014. package/components/Toast/ToastView.module.css +0 -39
  3015. package/components/Toast/index.js.flow +0 -2
  3016. package/components/Toggle/README.md +0 -9
  3017. package/components/Toggle/Toggle.js.flow +0 -28
  3018. package/components/Toggle/Toggle.module.css +0 -75
  3019. package/components/Toggle/index.js.flow +0 -2
  3020. package/components/Token/README.md +0 -109
  3021. package/components/Token/Token.js.flow +0 -25
  3022. package/components/Token/Token.module.css +0 -46
  3023. package/components/Token/TokenRemoveIcon.d.ts +0 -7
  3024. package/components/Token/TokenRemoveIcon.js +0 -7
  3025. package/components/Token/TokenRemoveIcon.js.flow +0 -11
  3026. package/components/Token/TokenRemoveIcon.js.map +0 -1
  3027. package/components/Token/index.js.flow +0 -2
  3028. package/components/TokenInput/README.md +0 -82
  3029. package/components/TokenInput/TextWidthHelper.js.flow +0 -10
  3030. package/components/TokenInput/TokenInput.js.flow +0 -39
  3031. package/components/TokenInput/TokenInput.module.css +0 -43
  3032. package/components/TokenInput/TokenInputMenu.js.flow +0 -17
  3033. package/components/TokenInput/TokenInputReducer.js.flow +0 -63
  3034. package/components/TokenInput/index.js.flow +0 -2
  3035. package/components/Tooltip/README.md +0 -207
  3036. package/components/Tooltip/Tooltip.js.flow +0 -33
  3037. package/components/Tooltip/Tooltip.module.css +0 -17
  3038. package/components/Tooltip/index.js.flow +0 -2
  3039. package/components/TooltipMenu/README.md +0 -106
  3040. package/components/TooltipMenu/TooltipMenu.js.flow +0 -19
  3041. package/components/TooltipMenu/index.js.flow +0 -2
  3042. package/components/TopBar/ButtonItem.d.ts +0 -21
  3043. package/components/TopBar/ButtonItem.js +0 -21
  3044. package/components/TopBar/ButtonItem.js.flow +0 -22
  3045. package/components/TopBar/ButtonItem.js.map +0 -1
  3046. package/components/TopBar/Divider.d.ts +0 -8
  3047. package/components/TopBar/Divider.js +0 -27
  3048. package/components/TopBar/Divider.js.flow +0 -5
  3049. package/components/TopBar/Divider.js.map +0 -1
  3050. package/components/TopBar/Item.d.ts +0 -28
  3051. package/components/TopBar/Item.js +0 -49
  3052. package/components/TopBar/Item.js.flow +0 -19
  3053. package/components/TopBar/Item.js.map +0 -1
  3054. package/components/TopBar/Organizations.d.ts +0 -26
  3055. package/components/TopBar/Organizations.js +0 -70
  3056. package/components/TopBar/Organizations.js.flow +0 -16
  3057. package/components/TopBar/Organizations.js.map +0 -1
  3058. package/components/TopBar/README.md +0 -110
  3059. package/components/TopBar/TopBar.d.ts +0 -111
  3060. package/components/TopBar/TopBar.js +0 -156
  3061. package/components/TopBar/TopBar.js.flow +0 -53
  3062. package/components/TopBar/TopBar.js.map +0 -1
  3063. package/components/TopBar/TopBar.module.css +0 -113
  3064. package/components/TopBar/TopBar.styles.d.ts +0 -7
  3065. package/components/TopBar/TopBar.styles.js +0 -17
  3066. package/components/TopBar/TopBar.styles.js.map +0 -1
  3067. package/components/TopBar/TopBarDropdown.d.ts +0 -33
  3068. package/components/TopBar/TopBarDropdown.js +0 -47
  3069. package/components/TopBar/TopBarDropdown.js.flow +0 -23
  3070. package/components/TopBar/TopBarDropdown.js.map +0 -1
  3071. package/components/TopBar/TopBarEnd.d.ts +0 -3
  3072. package/components/TopBar/TopBarEnd.js +0 -11
  3073. package/components/TopBar/TopBarEnd.js.flow +0 -4
  3074. package/components/TopBar/TopBarEnd.js.map +0 -1
  3075. package/components/TopBar/TopBarLogout.d.ts +0 -11
  3076. package/components/TopBar/TopBarLogout.js +0 -23
  3077. package/components/TopBar/TopBarLogout.js.flow +0 -6
  3078. package/components/TopBar/TopBarLogout.js.map +0 -1
  3079. package/components/TopBar/TopBarStart.d.ts +0 -3
  3080. package/components/TopBar/TopBarStart.js +0 -11
  3081. package/components/TopBar/TopBarStart.js.flow +0 -4
  3082. package/components/TopBar/TopBarStart.js.map +0 -1
  3083. package/components/TopBar/User.d.ts +0 -22
  3084. package/components/TopBar/User.js +0 -39
  3085. package/components/TopBar/User.js.flow +0 -9
  3086. package/components/TopBar/User.js.map +0 -1
  3087. package/components/TopBar/index.d.ts +0 -1
  3088. package/components/TopBar/index.js +0 -4
  3089. package/components/TopBar/index.js.flow +0 -2
  3090. package/components/TopBar/index.js.map +0 -1
  3091. package/components/TopBar/locale/index.d.ts +0 -4
  3092. package/components/TopBar/locale/index.js +0 -9
  3093. package/components/TopBar/locale/index.js.map +0 -1
  3094. package/components/TopBar/locale/locales/en.d.ts +0 -3
  3095. package/components/TopBar/locale/locales/en.js +0 -9
  3096. package/components/TopBar/locale/locales/en.js.map +0 -1
  3097. package/components/TopBar/locale/locales/ru.d.ts +0 -3
  3098. package/components/TopBar/locale/locales/ru.js +0 -9
  3099. package/components/TopBar/locale/locales/ru.js.map +0 -1
  3100. package/components/TopBar/locale/types.d.ts +0 -6
  3101. package/components/TopBar/locale/types.js +0 -2
  3102. package/components/TopBar/locale/types.js.map +0 -1
  3103. package/components/ZIndex/ZIndex.d.ts +0 -34
  3104. package/components/ZIndex/ZIndex.js +0 -73
  3105. package/components/ZIndex/ZIndex.js.flow +0 -11
  3106. package/components/ZIndex/ZIndex.js.map +0 -1
  3107. package/components/ZIndex/ZIndexStorage.d.ts +0 -18
  3108. package/components/ZIndex/ZIndexStorage.js +0 -46
  3109. package/components/ZIndex/ZIndexStorage.js.map +0 -1
  3110. package/components/ZIndex/index.d.ts +0 -1
  3111. package/components/ZIndex/index.js +0 -4
  3112. package/components/ZIndex/index.js.flow +0 -2
  3113. package/components/ZIndex/index.js.map +0 -1
  3114. package/components/__mocks__/react-addons-css-transition-group.js +0 -5
  3115. package/components/__mocks__/react-addons-css-transition-group.js.map +0 -1
  3116. package/components/all.d.ts +0 -36
  3117. package/components/all.js +0 -77
  3118. package/components/all.js.flow +0 -36
  3119. package/components/all.js.map +0 -1
  3120. package/components/ensureOldIEClassName.d.ts +0 -4
  3121. package/components/ensureOldIEClassName.js +0 -29
  3122. package/components/ensureOldIEClassName.js.flow +0 -6
  3123. package/components/ensureOldIEClassName.js.map +0 -1
  3124. package/components/eventHandlers.js.flow +0 -9
  3125. package/components/filterProps.d.ts +0 -15
  3126. package/components/filterProps.js +0 -18
  3127. package/components/filterProps.js.map +0 -1
  3128. package/components/index.d.ts +0 -4
  3129. package/components/index.js +0 -10
  3130. package/components/index.js.flow +0 -2
  3131. package/components/index.js.map +0 -1
  3132. package/components/internal/ComponentCombinator.d.ts +0 -25
  3133. package/components/internal/ComponentCombinator.js +0 -63
  3134. package/components/internal/ComponentCombinator.js.map +0 -1
  3135. package/components/internal/ComponentTable.d.ts +0 -21
  3136. package/components/internal/ComponentTable.js +0 -68
  3137. package/components/internal/ComponentTable.js.map +0 -1
  3138. package/components/internal/FocusTrap/FocusTrap.d.ts +0 -15
  3139. package/components/internal/FocusTrap/FocusTrap.js +0 -68
  3140. package/components/internal/FocusTrap/FocusTrap.js.map +0 -1
  3141. package/components/internal/FocusTrap/__test__/FocusTrap.test.d.ts +0 -1
  3142. package/components/internal/FocusTrap/__test__/FocusTrap.test.js +0 -43
  3143. package/components/internal/FocusTrap/__test__/FocusTrap.test.js.map +0 -1
  3144. package/components/internal/FocusTrap/index.d.ts +0 -1
  3145. package/components/internal/FocusTrap/index.js +0 -4
  3146. package/components/internal/FocusTrap/index.js.map +0 -1
  3147. package/components/internal/InputLikeText/InputLikeText.d.ts +0 -50
  3148. package/components/internal/InputLikeText/InputLikeText.js +0 -149
  3149. package/components/internal/InputLikeText/InputLikeText.js.flow +0 -24
  3150. package/components/internal/InputLikeText/InputLikeText.js.map +0 -1
  3151. package/components/internal/InputLikeText/InputLikeText.module.css +0 -4
  3152. package/components/internal/InputLikeText/index.d.ts +0 -1
  3153. package/components/internal/InputLikeText/index.js +0 -4
  3154. package/components/internal/InputLikeText/index.js.flow +0 -2
  3155. package/components/internal/InputLikeText/index.js.map +0 -1
  3156. package/components/internal/InternalMenu/InternalMenu.d.ts +0 -64
  3157. package/components/internal/InternalMenu/InternalMenu.js +0 -298
  3158. package/components/internal/InternalMenu/InternalMenu.js.flow +0 -23
  3159. package/components/internal/InternalMenu/InternalMenu.js.map +0 -1
  3160. package/components/internal/InternalMenu/InternalMenu.module.css +0 -31
  3161. package/components/internal/InternalMenu/InternalMenu.styles.d.ts +0 -5
  3162. package/components/internal/InternalMenu/InternalMenu.styles.js +0 -11
  3163. package/components/internal/InternalMenu/InternalMenu.styles.js.map +0 -1
  3164. package/components/internal/InternalMenu/isActiveElement.d.ts +0 -3
  3165. package/components/internal/InternalMenu/isActiveElement.js +0 -7
  3166. package/components/internal/InternalMenu/isActiveElement.js.flow +0 -7
  3167. package/components/internal/InternalMenu/isActiveElement.js.map +0 -1
  3168. package/components/internal/LifeCycleProxy.d.ts +0 -13
  3169. package/components/internal/LifeCycleProxy.js +0 -31
  3170. package/components/internal/LifeCycleProxy.js.map +0 -1
  3171. package/components/internal/MaskedInput/MaskedInput.d.ts +0 -38
  3172. package/components/internal/MaskedInput/MaskedInput.js +0 -116
  3173. package/components/internal/MaskedInput/MaskedInput.js.flow +0 -24
  3174. package/components/internal/MaskedInput/MaskedInput.js.map +0 -1
  3175. package/components/internal/MaskedInput/MaskedInput.module.css +0 -24
  3176. package/components/internal/MaskedInput/MaskedInput.styles.d.ts +0 -5
  3177. package/components/internal/MaskedInput/MaskedInput.styles.js +0 -11
  3178. package/components/internal/MaskedInput/MaskedInput.styles.js.map +0 -1
  3179. package/components/internal/MaskedInput/index.d.ts +0 -1
  3180. package/components/internal/MaskedInput/index.js +0 -4
  3181. package/components/internal/MaskedInput/index.js.flow +0 -2
  3182. package/components/internal/MaskedInput/index.js.map +0 -1
  3183. package/components/internal/MaskedInput/mask-char-font/font.eot +0 -0
  3184. package/components/internal/MaskedInput/mask-char-font/font.woff +0 -0
  3185. package/components/internal/MaskedInput/mask-char-font/font.woff2 +0 -0
  3186. package/components/internal/MockDate.d.ts +0 -9
  3187. package/components/internal/MockDate.js +0 -22
  3188. package/components/internal/MockDate.js.flow +0 -9
  3189. package/components/internal/MockDate.js.map +0 -1
  3190. package/components/internal/PopupMenu/PopupMenu.d.ts +0 -82
  3191. package/components/internal/PopupMenu/PopupMenu.js +0 -139
  3192. package/components/internal/PopupMenu/PopupMenu.js.flow +0 -40
  3193. package/components/internal/PopupMenu/PopupMenu.js.map +0 -1
  3194. package/components/internal/PopupMenu/PopupMenu.module.css +0 -4
  3195. package/components/internal/PopupMenu/PopupMenuPositions.d.ts +0 -3
  3196. package/components/internal/PopupMenu/PopupMenuPositions.js +0 -17
  3197. package/components/internal/PopupMenu/PopupMenuPositions.js.flow +0 -4
  3198. package/components/internal/PopupMenu/PopupMenuPositions.js.map +0 -1
  3199. package/components/internal/PopupMenu/index.d.ts +0 -1
  3200. package/components/internal/PopupMenu/index.js +0 -5
  3201. package/components/internal/PopupMenu/index.js.flow +0 -2
  3202. package/components/internal/PopupMenu/index.js.map +0 -1
  3203. package/components/internal/PopupMenu/validatePositions.d.ts +0 -3
  3204. package/components/internal/PopupMenu/validatePositions.js +0 -23
  3205. package/components/internal/PopupMenu/validatePositions.js.flow +0 -4
  3206. package/components/internal/PopupMenu/validatePositions.js.map +0 -1
  3207. package/components/internal/ResizeDetector/ResizeDetector.d.ts +0 -12
  3208. package/components/internal/ResizeDetector/ResizeDetector.js +0 -36
  3209. package/components/internal/ResizeDetector/ResizeDetector.js.flow +0 -8
  3210. package/components/internal/ResizeDetector/ResizeDetector.js.map +0 -1
  3211. package/components/internal/ResizeDetector/ResizeDetector.module.css +0 -17
  3212. package/components/internal/ResizeDetector/index.d.ts +0 -1
  3213. package/components/internal/ResizeDetector/index.js +0 -4
  3214. package/components/internal/ResizeDetector/index.js.flow +0 -2
  3215. package/components/internal/ResizeDetector/index.js.map +0 -1
  3216. package/components/internal/Supports.d.ts +0 -1
  3217. package/components/internal/Supports.js +0 -10
  3218. package/components/internal/Supports.js.map +0 -1
  3219. package/components/internal/createPropsGetter.d.ts +0 -2
  3220. package/components/internal/createPropsGetter.js +0 -8
  3221. package/components/internal/createPropsGetter.js.flow +0 -8
  3222. package/components/internal/createPropsGetter.js.map +0 -1
  3223. package/components/internal/cross.d.ts +0 -4
  3224. package/components/internal/cross.js +0 -12
  3225. package/components/internal/cross.js.flow +0 -4
  3226. package/components/internal/cross.js.map +0 -1
  3227. package/components/internal/currentEnvironment.d.ts +0 -3
  3228. package/components/internal/currentEnvironment.js +0 -5
  3229. package/components/internal/currentEnvironment.js.flow +0 -4
  3230. package/components/internal/currentEnvironment.js.map +0 -1
  3231. package/components/internal/extractKeyboardAction.d.ts +0 -13
  3232. package/components/internal/extractKeyboardAction.js +0 -20
  3233. package/components/internal/extractKeyboardAction.js.flow +0 -12
  3234. package/components/internal/extractKeyboardAction.js.map +0 -1
  3235. package/components/mixins.css +0 -0
  3236. package/components/polyfillPlaceholder.d.ts +0 -2
  3237. package/components/polyfillPlaceholder.js +0 -12
  3238. package/components/polyfillPlaceholder.js.flow +0 -4
  3239. package/components/polyfillPlaceholder.js.map +0 -1
  3240. package/components/variables.css +0 -306
  3241. package/components/variables.flat.css +0 -182
  3242. package/components/variables.flat.module.css +0 -182
  3243. package/components/variables.module.css +0 -306
  3244. package/lib/BGRuler.d.ts +0 -30
  3245. package/lib/BGRuler.js +0 -96
  3246. package/lib/BGRuler.js.map +0 -1
  3247. package/lib/Colors.d.ts +0 -6
  3248. package/lib/Colors.js +0 -6
  3249. package/lib/Colors.js.map +0 -1
  3250. package/lib/SSRSafePropTypes.d.ts +0 -2
  3251. package/lib/SSRSafePropTypes.js +0 -11
  3252. package/lib/SSRSafePropTypes.js.map +0 -1
  3253. package/lib/dom/getComputedStyle.d.ts +0 -2
  3254. package/lib/dom/getComputedStyle.js +0 -135
  3255. package/lib/dom/getComputedStyle.js.map +0 -1
  3256. package/lib/dom/getFocusableElements.d.ts +0 -42
  3257. package/lib/dom/getFocusableElements.js +0 -83
  3258. package/lib/dom/getFocusableElements.js.map +0 -1
  3259. package/lib/events/fixClickFocusIE.d.ts +0 -1
  3260. package/lib/events/fixClickFocusIE.js +0 -18
  3261. package/lib/events/fixClickFocusIE.js.map +0 -1
  3262. package/lib/events/stopPropagation.d.ts +0 -1
  3263. package/lib/events/stopPropagation.js +0 -11
  3264. package/lib/events/stopPropagation.js.map +0 -1
  3265. package/lib/events/tabListener.d.ts +0 -6
  3266. package/lib/events/tabListener.js +0 -13
  3267. package/lib/events/tabListener.js.map +0 -1
  3268. package/lib/net/fetch-cors.d.ts +0 -13
  3269. package/lib/net/fetch-cors.js +0 -32
  3270. package/lib/net/fetch-cors.js.map +0 -1
  3271. package/lib/reactGetTextContent/reactGetTextContent.d.ts +0 -2
  3272. package/lib/reactGetTextContent/reactGetTextContent.js +0 -23
  3273. package/lib/reactGetTextContent/reactGetTextContent.js.map +0 -1
  3274. package/lib/styles/HoldSelectionColor.d.ts +0 -1
  3275. package/lib/styles/HoldSelectionColor.js +0 -10
  3276. package/lib/styles/HoldSelectionColor.js.map +0 -1
  3277. package/lib/theming/themes/DefaultTheme.d.ts +0 -4
  3278. package/lib/theming/themes/DefaultTheme.js +0 -351
  3279. package/lib/theming/themes/DefaultTheme.js.map +0 -1
  3280. package/lib/theming/themes/FlatTheme.d.ts +0 -4
  3281. package/lib/theming/themes/FlatTheme.js +0 -243
  3282. package/lib/theming/themes/FlatTheme.js.map +0 -1
  3283. package/typings/fbjs.d.ts +0 -4
  3284. package/typings/less.d.ts +0 -4
  3285. package/typings/mockdate.d.ts +0 -1
  3286. package/typings/raf.d.ts +0 -1
  3287. package/typings/react-addons-css-transition-group.d.ts +0 -1
  3288. package/typings/react-testing/index.d.ts +0 -4
  3289. package/typings/react-testing/window.d.ts +0 -5
  3290. package/typings/react.d.ts +0 -8
package/CHANGELOG.md ADDED
@@ -0,0 +1,4519 @@
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
+ ## [5.6.8](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.6.7...@skbkontur/react-ui@5.6.8) (2026-03-12)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **Calendar:** show year label only for first month ([0513727](https://github.com/skbkontur/retail-ui/commit/05137279c82a4a77bc4d875e708890117659aac1))
12
+ * **Textarea:** remove min-width ([8941d1b](https://github.com/skbkontur/retail-ui/commit/8941d1ba9f3aa88e53cd9d6fdc2b3bd99606a674))
13
+
14
+
15
+
16
+
17
+
18
+ ## [5.6.7](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.6.6...@skbkontur/react-ui@5.6.7) (2026-03-12)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * **Calendar:** fix color calendar active weekend by figma ([ab605b6](https://github.com/skbkontur/retail-ui/commit/ab605b6b1933cd23fa2cc7553496812f4bdc37cf))
24
+
25
+
26
+
27
+
28
+
29
+ ## [5.6.6](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.6.5...@skbkontur/react-ui@5.6.6) (2026-02-26)
30
+
31
+
32
+ ### Bug Fixes
33
+
34
+ * **MaskedInput:** scroll when cursor move in input ([1b574d5](https://github.com/skbkontur/retail-ui/commit/1b574d50539bfab0b71d1963eefdbab3edef77e6))
35
+
36
+
37
+
38
+
39
+
40
+ ## [5.6.5](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.6.4...@skbkontur/react-ui@5.6.5) (2026-02-20)
41
+
42
+
43
+ ### Bug Fixes
44
+
45
+ * **Modal:** double scroll bars in mobile with panel footer ([a92b8ef](https://github.com/skbkontur/retail-ui/commit/a92b8ef35788f19b61b07522e20673a4c4cf1373))
46
+
47
+
48
+
49
+
50
+
51
+ ## [5.6.4](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.6.3...@skbkontur/react-ui@5.6.4) (2026-02-06)
52
+
53
+
54
+ ### Bug Fixes
55
+
56
+ * **react-ui:** fix warning colors ([07295bd](https://github.com/skbkontur/retail-ui/commit/07295bde42f9582f50db069d5d91e1ca01a599b2))
57
+
58
+
59
+
60
+
61
+
62
+ ## [5.6.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.6.2...@skbkontur/react-ui@5.6.3) (2026-01-30)
63
+
64
+
65
+ ### Bug Fixes
66
+
67
+ * **TokenInput:** fix focus by click with maxHeight prop ([7d814b6](https://github.com/skbkontur/retail-ui/commit/7d814b6310b9bab5c41b65bf16043d56da5575b9))
68
+ * **ZIndex:** ignore string values from DOM context ([f5e02fb](https://github.com/skbkontur/retail-ui/commit/f5e02fbc402b301fe2af55f387cbd53680619e6f))
69
+
70
+
71
+
72
+
73
+
74
+ ## [5.6.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.6.1...@skbkontur/react-ui@5.6.2) (2026-01-16)
75
+
76
+
77
+ ### Bug Fixes
78
+
79
+ * **Input:** decrease rerenders count ([07e9ae5](https://github.com/skbkontur/retail-ui/commit/07e9ae5ddb8168777c2f89ec17d22d2cb286b0d0))
80
+
81
+
82
+
83
+
84
+
85
+ ## [5.6.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.6.0...@skbkontur/react-ui@5.6.1) (2026-01-14)
86
+
87
+
88
+ ### Bug Fixes
89
+
90
+ * **Loader:** add transparency to the overlay veil ([68a8260](https://github.com/skbkontur/retail-ui/commit/68a8260e72e897c8686fe7b4e1e4f17722c76f82))
91
+
92
+
93
+
94
+
95
+
96
+ # [5.6.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.5.2...@skbkontur/react-ui@5.6.0) (2025-12-26)
97
+
98
+
99
+ ### Features
100
+
101
+ * **react-ui:** add new Kontur Colors with 10 schemes, dark/light themes ([130933e](https://github.com/skbkontur/retail-ui/commit/130933e24f7c3c1921eeca33408a84bac079b860))
102
+
103
+
104
+
105
+
106
+
107
+ ## [5.5.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.5.1...@skbkontur/react-ui@5.5.2) (2025-12-25)
108
+
109
+
110
+ ### Bug Fixes
111
+
112
+ * **Combobox:** fix input scroll when select via keyboard ([294a35d](https://github.com/skbkontur/retail-ui/commit/294a35da9c948cbba0ea33ab8b035c7c0a4caafc))
113
+
114
+
115
+
116
+
117
+
118
+ ## [5.5.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.5.0...@skbkontur/react-ui@5.5.1) (2025-12-18)
119
+
120
+
121
+ ### Bug Fixes
122
+
123
+ * **Checkbox:** add paddingX variable ([8fcdd01](https://github.com/skbkontur/retail-ui/commit/8fcdd0174c3b93d596ac92254ee48ffd32740dbc))
124
+ * **DateRangePicker:** add onClick to DateRangePickerInput ([7022e3a](https://github.com/skbkontur/retail-ui/commit/7022e3a7ef65fa0ad990e1aad1b953d14ae5993c))
125
+ * **DateRangePicker:** add types `useRef<DateRangePicker>`, show api in docs ([27dc117](https://github.com/skbkontur/retail-ui/commit/27dc11713b73e59d8e61f85ad3b3140754963ed6))
126
+ * **FileUploader:** rename `useRef<FileUploaderRef>` → `useRef<FileUploader>` ([5c673d9](https://github.com/skbkontur/retail-ui/commit/5c673d9f8cc7af719633e9e3c9673207c70340ee))
127
+
128
+
129
+
130
+
131
+
132
+ # [5.5.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.4.6...@skbkontur/react-ui@5.5.0) (2025-12-17)
133
+
134
+
135
+ ### Bug Fixes
136
+
137
+ * **TokenInput:** add index argument to renderToken prop ([06ec9b4](https://github.com/skbkontur/retail-ui/commit/06ec9b47119d8f923837d694ae78607ac6434baa))
138
+ * **TokenInput:** extend type of item ([44b9ab0](https://github.com/skbkontur/retail-ui/commit/44b9ab0989b37099157517f88d639304a3e365af))
139
+ * **FileUploader:**: show fileChosen label for short filenames
140
+ * **FileUploader**: forbid from dropping multiple files in single mode
141
+
142
+
143
+ ### Features
144
+
145
+ * **FileUploader:** new design ([0adf523](https://github.com/skbkontur/retail-ui/commit/0adf523f49fcdac913f8ff5bb850d28d10310f45))
146
+ * **FileUploader:** add `size` prop
147
+ * **FileUploader:** add file extensions icons
148
+ * **FileUploader:** add tile files view
149
+ * **FileUploader:** add error/warning summary
150
+ * **FileUploader:** update dark theme colors
151
+ * **FileUploader:** remove check icon after upload
152
+ * **FileUploader:** make `FileUploaderFile` component public
153
+ * **FileUploader:** add showFilenameHint prop to `FileUploaderFile`
154
+ * **TokenInput:** add `maxHeight` prop ([d39093f](https://github.com/skbkontur/retail-ui/commit/d39093f6b85034a2ac5fdb52b67608b5306921de))
155
+
156
+
157
+
158
+
159
+
160
+ ## [5.4.6](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.4.5...@skbkontur/react-ui@5.4.6) (2025-12-08)
161
+
162
+
163
+ ### Bug Fixes
164
+
165
+ * **TokenInput:** restore expected behavior with object type items ([a6ed0b7](https://github.com/skbkontur/retail-ui/commit/a6ed0b740c315f79ed5acdf3a64e5da5be0771a9))
166
+
167
+
168
+
169
+
170
+
171
+ ## [5.4.5](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.4.4...@skbkontur/react-ui@5.4.5) (2025-12-03)
172
+
173
+
174
+ ### Bug Fixes
175
+
176
+ * **MenuItem:** add menuItemCommentOpacityHover var ([97bcab4](https://github.com/skbkontur/retail-ui/commit/97bcab43f64cdc09cdcccdeff7307e9405872604))
177
+ * **TokenInput:** add onKeyDown prop ([848cb97](https://github.com/skbkontur/retail-ui/commit/848cb9717b4b4f19b48a93fb0dbd2e38e73b832b))
178
+
179
+
180
+
181
+
182
+
183
+ ## [5.4.4](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.4.2...@skbkontur/react-ui@5.4.4) (2025-11-28)
184
+
185
+
186
+ ### Bug Fixes
187
+
188
+ * **DateRangePicker:** show picker under input by `menuAnchorElement` on focus ([a0099f3](https://github.com/skbkontur/retail-ui/commit/a0099f30262239f1203e6c9aac910e6a4b304b9f))
189
+ * **Textarea:** baseline alignment ([98e4dc0](https://github.com/skbkontur/retail-ui/commit/98e4dc0575e0c3c6315ea0adedad5f85df7b95d1))
190
+ * **TokenInput:** prevent set hidden items, setting on editing object, fix itemToId prop ([c922996](https://github.com/skbkontur/retail-ui/commit/c922996ed0b27c45e8f3a9876faca6096699b807))
191
+
192
+
193
+
194
+
195
+
196
+ ## [5.4.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.4.2...@skbkontur/react-ui@5.4.3) (2025-11-24)
197
+
198
+
199
+ ### Bug Fixes
200
+
201
+ * **Textarea:** baseline alignment ([98e4dc0](https://github.com/skbkontur/retail-ui/commit/98e4dc0575e0c3c6315ea0adedad5f85df7b95d1))
202
+
203
+
204
+
205
+
206
+
207
+ ## [5.4.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.4.1...@skbkontur/react-ui@5.4.2) (2025-11-20)
208
+
209
+
210
+ ### Bug Fixes
211
+
212
+ * **ComboBox:** downgrade `react-focus-lock` to stable ([91eaf3b](https://github.com/skbkontur/retail-ui/commit/91eaf3b68156b6cda33e3049be5cb0d3ddddeb2a))
213
+
214
+
215
+
216
+
217
+
218
+ ## [5.4.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.4.0...@skbkontur/react-ui@5.4.1) (2025-11-01)
219
+
220
+
221
+ ### Bug Fixes
222
+
223
+ * **CurrencyInput:** do not warn about null value ([5a2f5bd](https://github.com/skbkontur/retail-ui/commit/5a2f5bd09598e11e4e69dd96eca55dd44c6f78e0))
224
+ * **CurrencyInput:** fix onPaste handler ([a50f7e0](https://github.com/skbkontur/retail-ui/commit/a50f7e0cf859381c0eb54a38fe5aca61a77f5f5d))
225
+ * **FxInput:** add support `mask` & feature flag `fxInputUseMaskedInput` ([f86d3bd](https://github.com/skbkontur/retail-ui/commit/f86d3bde8e205dbea77faee0fd079266af04980f))
226
+
227
+
228
+
229
+
230
+
231
+ # [5.4.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.3.11...@skbkontur/react-ui@5.4.0) (2025-10-23)
232
+
233
+
234
+ ### Bug Fixes
235
+
236
+ * **Button, Link:** fix passing of disabled attribute to root ([beb66d9](https://github.com/skbkontur/retail-ui/commit/beb66d9cefbe4efa0b55916a5cd0fcb649a12993))
237
+ * **Tooltip:** use correct default positions ([3237031](https://github.com/skbkontur/retail-ui/commit/3237031370d74729b3b4dcb2bc7439cfb38b0df3))
238
+
239
+
240
+ ### Features
241
+
242
+ * **SizeControlContext:** Add size control context ([66cc2ac](https://github.com/skbkontur/retail-ui/commit/66cc2acb818f4391fb7349b52da7433f627a367d))
243
+ * **Combobox:** add multiline behavior ([cab53bd](https://github.com/skbkontur/retail-ui/commit/cab53bd482d8716cf294db333d39b6fc8515955c))
244
+ * **Toast,SingleToast:** add `use` option and `error` view ([9958f1b](https://github.com/skbkontur/retail-ui/commit/9958f1b117645244566ef652290766d3923dfc4a))
245
+ * **react-ui:** update react-focus-lock package ([d733020](https://github.com/skbkontur/retail-ui/commit/d73302034bc23e703fca38022fe038e717635bab))
246
+
247
+
248
+
249
+
250
+
251
+ ## [5.3.11](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.3.10...@skbkontur/react-ui@5.3.11) (2025-10-22)
252
+
253
+
254
+ ### Bug Fixes
255
+
256
+ * **SidePage:** fix clipping of shadows/focuses inside SidePage.Body ([d41d10e](https://github.com/skbkontur/retail-ui/commit/d41d10ea28c546c97b3f0dff902b37054f6be364))
257
+
258
+
259
+
260
+
261
+
262
+ ## [5.3.10](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.3.9...@skbkontur/react-ui@5.3.10) (2025-10-16)
263
+
264
+
265
+ ### Bug Fixes
266
+
267
+ * **DatePicker:** pass correct value to onValueChange on blur ([8e82ee0](https://github.com/skbkontur/retail-ui/commit/8e82ee07ae2e29a6ab608863e89bb85511597a10))
268
+
269
+
270
+
271
+
272
+
273
+ ## [5.3.9](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.3.8...@skbkontur/react-ui@5.3.9) (2025-10-03)
274
+
275
+
276
+ ### Bug Fixes
277
+
278
+ * **SidePage:** add support for overlays from widgets ([8a968cb](https://github.com/skbkontur/retail-ui/commit/8a968cb3b896d4ca22f9ed5116bb600a036426b4))
279
+
280
+
281
+
282
+
283
+
284
+ ## [5.3.8](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.3.7...@skbkontur/react-ui@5.3.8) (2025-10-01)
285
+
286
+
287
+ ### Bug Fixes
288
+
289
+ * **TokenInput:** create token on blur in "withoutReference" mode (feature flag) ([10ebcbb](https://github.com/skbkontur/retail-ui/commit/10ebcbb58e3736f5c4887ea8daca148b55b6c6d6))
290
+
291
+
292
+
293
+
294
+
295
+ ## [5.3.7](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.3.6...@skbkontur/react-ui@5.3.7) (2025-09-24)
296
+
297
+
298
+ ### Bug Fixes
299
+
300
+ * **MaskedInput:** return "" from onValueChange after input cleaning ([884ed1c](https://github.com/skbkontur/retail-ui/commit/884ed1c296d36bea895b3cb13481dcf67052193f))
301
+
302
+
303
+
304
+
305
+
306
+ ## [5.3.6](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.3.5...@skbkontur/react-ui@5.3.6) (2025-09-24)
307
+
308
+
309
+ ### Bug Fixes
310
+
311
+ * **ComboBox,MaskedInput:** support mask and filter value on paste ([a6f6935](https://github.com/skbkontur/retail-ui/commit/a6f69355a1b962dbaf8a86158c6b833b2159eb48))
312
+
313
+
314
+
315
+
316
+
317
+ ## [5.3.5](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.3.4...@skbkontur/react-ui@5.3.5) (2025-09-24)
318
+
319
+
320
+ ### Bug Fixes
321
+
322
+ * **FileUploader:** set files on drop ([ba181f3](https://github.com/skbkontur/retail-ui/commit/ba181f3e89354bea9e18e4ca20dd97c43c7e292e))
323
+
324
+
325
+
326
+
327
+
328
+ ## [5.3.4](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.3.3...@skbkontur/react-ui@5.3.4) (2025-09-23)
329
+
330
+
331
+ ### Bug Fixes
332
+
333
+ * **react-ui:** use imask with fixed sourcemap ([a4ee23d](https://github.com/skbkontur/retail-ui/commit/a4ee23de971210302c2e3dfcf9f1e9b1c5eb2ad5))
334
+
335
+
336
+
337
+
338
+
339
+ ## [5.3.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.3.2...@skbkontur/react-ui@5.3.3) (2025-09-22)
340
+
341
+
342
+ ### Bug Fixes
343
+
344
+ * **Tooltip:** fix incorrect import ([58206c9](https://github.com/skbkontur/retail-ui/commit/58206c91875e3180180be91800e302031b1b3266))
345
+
346
+
347
+
348
+
349
+
350
+ ## [5.3.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.3.1...@skbkontur/react-ui@5.3.2) (2025-09-10)
351
+
352
+ **Note:** Version bump only for package @skbkontur/react-ui
353
+
354
+
355
+
356
+
357
+
358
+ ## [5.3.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.3.0...@skbkontur/react-ui@5.3.1) (2025-09-01)
359
+
360
+
361
+ ### Bug Fixes
362
+
363
+ * **select:** fix pass empty placeholder ([eb5b0ed](https://github.com/skbkontur/retail-ui/commit/eb5b0ed94c5133ab4a0a461ca656512583c292ff))
364
+
365
+
366
+
367
+
368
+
369
+ # [5.3.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.2.1...@skbkontur/react-ui@5.3.0) (2025-08-25)
370
+
371
+
372
+ ### Bug Fixes
373
+
374
+ * **Autocomplete:** fix display with percentage menuWidth ([bf66bf3](https://github.com/skbkontur/retail-ui/commit/bf66bf36f9f3021693b6fba73a86e13df578f424))
375
+ * **Button:** backless buttons theme variables work ([4ea52a2](https://github.com/skbkontur/retail-ui/commit/4ea52a2139b8126ba7f1dfad99b6baf1e361d14d))
376
+ * **Button:** fix padding for Button with rightIcon ([0ef8416](https://github.com/skbkontur/retail-ui/commit/0ef8416b03068f92cdf2d53a042a6d08266eac4f))
377
+ * **MiniModal:** change fontSize and lineHeight at description section ([edbe400](https://github.com/skbkontur/retail-ui/commit/edbe4002e5872ba088336267ecf46ed5aab3a297))
378
+ * **Tooltip:** remove extra gap between Popup and pin ([f7e7533](https://github.com/skbkontur/retail-ui/commit/f7e75338ca72db382866a3aca22083dd05093a31))
379
+ * **react-ui:** make getRootNode public ([192b23b](https://github.com/skbkontur/retail-ui/commit/192b23b1374eb5460a151879ac1cf113a82f85ff))
380
+ * export PopupMenuCaptionProps type ([3283924](https://github.com/skbkontur/retail-ui/commit/3283924fe3839524ee446243cf71bb3b75a392b2))
381
+
382
+
383
+ ### Features
384
+
385
+ * **Autocomplete:** change mask behaviour ([2ef8a58](https://github.com/skbkontur/retail-ui/commit/2ef8a586d1f24548ba907439de4624c220aa999d))
386
+ * **Group:** add Hint and Tooltip support ([8a0f130](https://github.com/skbkontur/retail-ui/commit/8a0f13013a667dc5097ae9d326f796f7b75500dc))
387
+ * mark that react 19 is not supported yet ([7a2dcc0](https://github.com/skbkontur/retail-ui/commit/7a2dcc0bdbf4e112c064abdf4c157768dcb49ce2))
388
+ * **Paging:** add `size` prop and adaptivity ([1011f0d](https://github.com/skbkontur/retail-ui/commit/1011f0d3dffce1f85a06a4d1c040367ddd3ff62a))
389
+ * **Paging:** show `⌥"` symbol in macOS ([1011f0d](https://github.com/skbkontur/retail-ui/commit/1011f0d3dffce1f85a06a4d1c040367ddd3ff62a))
390
+ * remove propTypes ([569e003](https://github.com/skbkontur/retail-ui/commit/569e00312319557883da6536622a393aee932e95))
391
+ * **SidePage, Modal:** unifiy headers behavior ([bc9e505](https://github.com/skbkontur/retail-ui/commit/bc9e505b58d5d4676f1f528144b777d312eede40))
392
+ * **SidePage:** fix SidePage header blinking ([bc9e505](https://github.com/skbkontur/retail-ui/commit/bc9e505b58d5d4676f1f528144b777d312eede40))
393
+ * **Switcher:** add `width` prop ([949ccb6](https://github.com/skbkontur/retail-ui/commit/949ccb6e9f1ada57f086e3ed58ba265ad9f84b85))
394
+ * **Tooltip:** add `size` prop ([f7e7533](https://github.com/skbkontur/retail-ui/commit/f7e75338ca72db382866a3aca22083dd05093a31))
395
+
396
+
397
+
398
+
399
+
400
+ # [5.2.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.2.0...@skbkontur/react-ui@5.2.1) (2025-07-24)
401
+
402
+
403
+ ### Bug Fixes
404
+
405
+ * **Link:** fix Hint on Link disabled ([e34d0a4](https://github.com/skbkontur/retail-ui/commit/e34d0a45fd4c621547012fc5f10025e785ac3e0c))
406
+
407
+
408
+ ### Features
409
+
410
+ * **Modal:** add ability change ModalSeparator margin ([55e4819](https://github.com/skbkontur/retail-ui/commit/55e48198d192d4aaa7c83a51987eb82f900f759a))
411
+
412
+
413
+
414
+
415
+
416
+ # [5.2.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.1.7...@skbkontur/react-ui@5.2.0) (2025-07-16)
417
+
418
+
419
+ ### Bug Fixes
420
+
421
+ * **DateInput,DatePicker:** input same number after blur and refocus (feature flag `dateInputFixSameNumberTypingOnRefocus`) ([fc068d8](https://github.com/skbkontur/retail-ui/commit/fc068d8d09852764a4d41543bbd3a9caa7e1f110))
422
+ * **RadioGroup:** fix baseline spacer (feature flag `radioGroupRemoveBaselineSpacer`) ([c7ca31a](https://github.com/skbkontur/retail-ui/commit/c7ca31a9d00385d14223f090ad9f731456cf122a))
423
+ * **Toast:** extend notification type to ReactNode ([a58ec5a](https://github.com/skbkontur/retail-ui/commit/a58ec5af1ac75e860f058bdf597d5160097fb334))
424
+ * **Kebab:** update colors in DarkTheme ([79fa1f5](https://github.com/skbkontur/retail-ui/commit/79fa1f51ee9ecebee7371c2308ee01ad3744eb5e))
425
+ * **MenuItem:** use default cursor for nonselectable items ([b260ef9](https://github.com/skbkontur/retail-ui/commit/b260ef9db12d0b004f0e46e3686127325e0bd8fb))
426
+ * **FxInput:** inline deprecated React.ReactText type ([790ab0b](https://github.com/skbkontur/retail-ui/commit/790ab0b3036d0592bac022bdb7484b4022fbfe07))
427
+
428
+
429
+ ### Features
430
+
431
+ * **Modal, MiniModal, SidePage:** update mobile versions ([6bebba9](https://github.com/skbkontur/retail-ui/commit/6bebba9118e8bf0ffdd5797cd3c26b2a5bee6e28))
432
+ * **DateInput,DatePicker:** allow invalid values in days (feature flag `dateInputAllowInvalidValuesInDays`) ([cc35707](https://github.com/skbkontur/retail-ui/commit/cc357071a20364875851ecf37130b5c81548c80b))
433
+
434
+
435
+
436
+
437
+
438
+
439
+ ## [5.1.7](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.1.6...@skbkontur/react-ui@5.1.7) (2025-07-11)
440
+
441
+
442
+ ### Bug Fixes
443
+
444
+ * **Calendar,DateSelect:** always show Select in the viewport ([67f8925](https://github.com/skbkontur/retail-ui/commit/67f8925117913159c13865078828679d7a086711))
445
+ * **CalendarDay:** fix day click handler ([6082b4d](https://github.com/skbkontur/retail-ui/commit/6082b4d38621f3a9fe435594c067167d193df715))
446
+
447
+
448
+ ### Features
449
+
450
+ * **DateRangePicker:** add width prop, remove extra wrap ([6bfd6c3](https://github.com/skbkontur/retail-ui/commit/6bfd6c3ab8781b76d3bbdf836c85a4d2f843bb4f))
451
+
452
+
453
+
454
+
455
+
456
+ ## [5.1.6](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.1.5...@skbkontur/react-ui@5.1.6) (2025-07-02)
457
+
458
+
459
+ ### Bug Fixes
460
+
461
+ * **DatePicker,DateInput:** onBlur wasn't called, calendar wasn't closed ([a67649c](https://github.com/skbkontur/retail-ui/commit/a67649c1d862cc23c7981c16610da50bb8046c37))
462
+ * **SidePage,Sticky:** prevent page crash, reduce rerenders ([17bddad](https://github.com/skbkontur/retail-ui/commit/17bddad211bb8cc29aa4323fd9aabca8d3fca9f5))
463
+ * **SidePage:** revert lost animation ([eab52ad](https://github.com/skbkontur/retail-ui/commit/eab52adf66ad0211ee5b9b1d8e61aa9e7f5c6066))
464
+
465
+
466
+
467
+
468
+
469
+ ## [5.1.5](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.1.4...@skbkontur/react-ui@5.1.5) (2025-06-11)
470
+
471
+
472
+ ### Bug Fixes
473
+
474
+ * **DateRangePicker:** improve calendar scrolling speed ([8489445](https://github.com/skbkontur/retail-ui/commit/8489445e48acdeabcf1e8d09e3eceed549bdefe1))
475
+ * **DateRangePicker:** reset calendar range by null & undefined ([afcb3c2](https://github.com/skbkontur/retail-ui/commit/afcb3c2f2d94e49a4b781a375469af91c975a387))
476
+ * **Validations:** scroll to element on focus in iframe ([fa9beab](https://github.com/skbkontur/retail-ui/commit/fa9beab61c5cedb547757b14fa544e1798b8ebf2))
477
+
478
+
479
+
480
+
481
+
482
+ ## [5.1.4](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.1.3...@skbkontur/react-ui@5.1.4) (2025-06-06)
483
+
484
+
485
+ ### Bug Fixes
486
+
487
+ * **Button:** hover and click areas are the same ([eba5b6b](https://github.com/skbkontur/retail-ui/commit/eba5b6b814f35b2b2ffa9932387157abea683258))
488
+ * **ComboBox:** onInputKeyDown doesn't fire on mobile ([1b00e91](https://github.com/skbkontur/retail-ui/commit/1b00e91dbad50c1bd26b29acad8d2a0b97c88bc0))
489
+ * **DateRangePicker:** validate optional periods ranges ([c29d52e](https://github.com/skbkontur/retail-ui/commit/c29d52e63c5ca132a707b7792154bc28b79c9d05))
490
+ * **FileUploader:** reset method deletes files completely ([6997ee6](https://github.com/skbkontur/retail-ui/commit/6997ee6f0de3eaa84b1804e78c4c4bc80be65532))
491
+ * **SingleToast:** remove deprecation in static methods ([7065269](https://github.com/skbkontur/retail-ui/commit/70652694f1a71e54edbe5934b5cf7932f7922ebd))
492
+ * **TokenInput:** token menu always visible in viewport ([71c849d](https://github.com/skbkontur/retail-ui/commit/71c849d655146cb3afb2d040fb2dd38a7e58767e))
493
+
494
+
495
+
496
+
497
+
498
+ ## [5.1.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.1.2...@skbkontur/react-ui@5.1.3) (2025-05-06)
499
+
500
+
501
+ ### Bug Fixes
502
+
503
+ * **FileUploader:** make removeFile delete files correctly ([20e67c3](https://github.com/skbkontur/retail-ui/commit/20e67c35f057fa7f25e5dbd2fa66bc7182da2d92))
504
+ * **FileUploader:** remove console error in firefox ([4a7394f](https://github.com/skbkontur/retail-ui/commit/4a7394f23bab2433058fa7f7dd081d7c9b91a17e))
505
+
506
+
507
+
508
+
509
+
510
+ ## [5.1.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.1.1...@skbkontur/react-ui@5.1.2) (2025-04-17)
511
+
512
+
513
+ ### Bug Fixes
514
+
515
+ * **Combobox:** highlightMenuItem works correctly ([7724a8d](https://github.com/skbkontur/retail-ui/commit/7724a8dd19565737edf1aab348173349ccbe6686))
516
+ * **ComboBox:** restore root data-tid in ComboBoxMenu ([85f99c5](https://github.com/skbkontur/retail-ui/commit/85f99c52aab4d9bf8e11a13bc0538181f6e7894e))
517
+ * **MaskedInput:** use `@skbkontur/react-imask` ([37311af](https://github.com/skbkontur/retail-ui/commit/37311af2874c62abdfff535f49a5a6159ee812e8))
518
+ * **MaskedInput:** use ThemeContext to apply ui-font ([8b1e574](https://github.com/skbkontur/retail-ui/commit/8b1e574bc943c047e28e10a5649af28b946d1c5a))
519
+
520
+
521
+
522
+
523
+
524
+ ## [5.1.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.1.0...@skbkontur/react-ui@5.1.1) (2025-04-15)
525
+
526
+
527
+ ### Bug Fixes
528
+
529
+ * **DateRangePicker:** set dark theme color tokens ([ccad0c8](https://github.com/skbkontur/retail-ui/commit/ccad0c8b232e969ea9bde2832b17e98013f4276b))
530
+
531
+
532
+
533
+
534
+
535
+ # [5.1.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.0.16...@skbkontur/react-ui@5.1.0) (2025-04-11)
536
+
537
+
538
+ ### Bug Fixes
539
+
540
+ * **DateInput,DatePicker:** add screenreader support to custom input ([#3602](https://github.com/skbkontur/retail-ui/issues/3602)) ([e4ee01d](https://github.com/skbkontur/retail-ui/commit/e4ee01d31587d41836f6ea592e8da1a507158019))
541
+ * **DatePicker:** don't call extra onFocus in public focus() method ([d44b0cf](https://github.com/skbkontur/retail-ui/commit/d44b0cf7daf9b960758032804d05342d1c6fdced))
542
+ * docs webpack.config ([c01b15b](https://github.com/skbkontur/retail-ui/commit/c01b15b13e9a72b68dd5da0fa05fbf7edb4dca21))
543
+ * **FileUploader:** add ability to remove hidden files ([#3628](https://github.com/skbkontur/retail-ui/issues/3628)) ([bef25ec](https://github.com/skbkontur/retail-ui/commit/bef25ec2dc9d381052d32a414a19958e95a6a925))
544
+ * **Group:** works fine with inputs and droplist ([#3608](https://github.com/skbkontur/retail-ui/issues/3608)) ([cb138ce](https://github.com/skbkontur/retail-ui/commit/cb138cedbc74e6601e82ad121037cbebf0233e04))
545
+ * **Input:** crash on focus after page translation ([#3572](https://github.com/skbkontur/retail-ui/issues/3572)) ([2a14eb4](https://github.com/skbkontur/retail-ui/commit/2a14eb4aca8fe915bca38aa773b3f46d903cbea7))
546
+ * **MenuItem:** deprecate link prop ([#3542](https://github.com/skbkontur/retail-ui/issues/3542)) ([1203e6c](https://github.com/skbkontur/retail-ui/commit/1203e6c5850ad13ea673053d0000dafe65226334))
547
+ * **Modal,SidePage:** update cross clickarea and focus outline ([063d3a5](https://github.com/skbkontur/retail-ui/commit/063d3a52424057244d129eec0e18fb4436e05dd5))
548
+ * **PasswordInput:** disable focus listeners while input is not in focus ([#3599](https://github.com/skbkontur/retail-ui/issues/3599)) ([e604fe5](https://github.com/skbkontur/retail-ui/commit/e604fe5ea73c0e1f38f45c04c4bb301331de2a5f))
549
+ * **PasswordInput:** width in percent ([#3622](https://github.com/skbkontur/retail-ui/issues/3622)) ([909212f](https://github.com/skbkontur/retail-ui/commit/909212f33862d1110e73726814184f02dbc6acc0))
550
+ * **Popup:** prevent unwanted 'Anchor element is not defined' on render ([#3604](https://github.com/skbkontur/retail-ui/issues/3604)) ([bee5407](https://github.com/skbkontur/retail-ui/commit/bee540774fb34319847b312163c05b37f392eb39))
551
+ * show mobile view on all mobile devices ([#3583](https://github.com/skbkontur/retail-ui/issues/3583)) ([7bcfd49](https://github.com/skbkontur/retail-ui/commit/7bcfd49bd61ba32ea77a70d9dbfcc06a7c3317da))
552
+ * **SidePage:** dynamic blockBackground change ([#3580](https://github.com/skbkontur/retail-ui/issues/3580)) ([c774ad3](https://github.com/skbkontur/retail-ui/commit/c774ad3b28c63dd545e2eb5a9a0eee12126d34e5))
553
+ * **Switcher:** restyle error state ([#3563](https://github.com/skbkontur/retail-ui/issues/3563)) ([0870eef](https://github.com/skbkontur/retail-ui/commit/0870eef469ad32d1665f1840bf74d58b45232f56))
554
+ * **Toast, SingleToast:** add ability to show close cross ([#3596](https://github.com/skbkontur/retail-ui/issues/3596)) ([d8b569e](https://github.com/skbkontur/retail-ui/commit/d8b569e3efa3d2f53569c6cef056430b5035c96a))
555
+
556
+
557
+ ### Features
558
+
559
+ * add new DateRangePicker component ([cb49382](https://github.com/skbkontur/retail-ui/commit/cb49382162aa008288ecdcf1c016253fa88f93b7))
560
+ * **Input, Combobox, Autocomplete:** add showClearIcon prop ([#3594](https://github.com/skbkontur/retail-ui/issues/3594)) ([5541f19](https://github.com/skbkontur/retail-ui/commit/5541f19047cab4d4ec3a81c636cca4397fd95bdc))
561
+ * themes versioning ([#3581](https://github.com/skbkontur/retail-ui/issues/3581)) ([848023a](https://github.com/skbkontur/retail-ui/commit/848023a6936183e2c8f8a987f01c3cb0e22d3b2b))
562
+ * **Validation:** add flag to not open dropdown via submit ([74b38ba](https://github.com/skbkontur/retail-ui/commit/74b38ba420d8ac062d4978d4d7523a49bd3cba18))
563
+
564
+
565
+
566
+
567
+
568
+ ## [5.0.16](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.0.15...@skbkontur/react-ui@5.0.16) (2025-04-04)
569
+
570
+
571
+ ### Bug Fixes
572
+
573
+ * **MiniModal:** prop 'gap' works in old browsers ([#3637](https://github.com/skbkontur/retail-ui/issues/3637)) ([c48feac](https://github.com/skbkontur/retail-ui/commit/c48feac17c8053afb1a106b04a8532fe7886525d))
574
+ * **Toggle:** pass name attribute ([#3636](https://github.com/skbkontur/retail-ui/issues/3636)) ([4dd924d](https://github.com/skbkontur/retail-ui/commit/4dd924d19f3b3438d25a7172fb73f3884fe5ece9))
575
+
576
+
577
+
578
+
579
+
580
+ ## [5.0.15](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.0.14...@skbkontur/react-ui@5.0.15) (2025-03-28)
581
+
582
+
583
+ ### Bug Fixes
584
+
585
+ * **MenuItem:** correctly pass state to functional children ([#3631](https://github.com/skbkontur/retail-ui/issues/3631)) ([f15beb7](https://github.com/skbkontur/retail-ui/commit/f15beb73b5998939b28c6218fb7db5100ee3d513))
586
+
587
+
588
+
589
+
590
+
591
+ ## [5.0.14](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.0.13...@skbkontur/react-ui@5.0.14) (2025-03-27)
592
+
593
+
594
+ ### Bug Fixes
595
+
596
+ * **FileUploader:** add ability to remove hidden files ([#3625](https://github.com/skbkontur/retail-ui/issues/3625)) ([ffa404e](https://github.com/skbkontur/retail-ui/commit/ffa404e155d84db74291ffe5174d1ee2fba0abab))
597
+
598
+
599
+
600
+
601
+
602
+ ## [5.0.13](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.0.12...@skbkontur/react-ui@5.0.13) (2025-03-17)
603
+
604
+
605
+ ### Bug Fixes
606
+
607
+ * **DatePicker:** remove unnecessary hook usage ([#3619](https://github.com/skbkontur/retail-ui/issues/3619)) ([35572c8](https://github.com/skbkontur/retail-ui/commit/35572c8b13a8866c4670b19fd7948a22683d7753))
608
+
609
+
610
+
611
+
612
+
613
+ ## [5.0.12](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.0.11...@skbkontur/react-ui@5.0.12) (2025-03-11)
614
+
615
+
616
+ ### Bug Fixes
617
+
618
+ * **Loader,ZIndex:** fix overlap of dropdowns in widgets ([#3612](https://github.com/skbkontur/retail-ui/issues/3612)) ([7990c6d](https://github.com/skbkontur/retail-ui/commit/7990c6d4b661e49e5fec8707f4f06a9655bce25e))
619
+ * **MaskedInput:** rerender after theme change ([#3614](https://github.com/skbkontur/retail-ui/issues/3614)) ([840443f](https://github.com/skbkontur/retail-ui/commit/840443fff46bc6037b92e3da6151312075c25fc7))
620
+
621
+
622
+
623
+
624
+
625
+ ## [5.0.11](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.0.10...@skbkontur/react-ui@5.0.11) (2025-03-03)
626
+
627
+
628
+ ### Bug Fixes
629
+
630
+ * **Combobox:** use ComboBoxMenuDataTids in Menu ([#3601](https://github.com/skbkontur/retail-ui/issues/3601)) ([ae8afea](https://github.com/skbkontur/retail-ui/commit/ae8afea4684cfbfa7d03c0abe273a0f062943524))
631
+ * **PasswordInput:** prevent Input root data-tid override ([#3598](https://github.com/skbkontur/retail-ui/issues/3598)) ([61b2e83](https://github.com/skbkontur/retail-ui/commit/61b2e8303acc4446872e73f7a87f177b55a0fc37))
632
+
633
+
634
+
635
+
636
+
637
+ ## [5.0.10](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.0.9...@skbkontur/react-ui@5.0.10) (2025-01-30)
638
+
639
+
640
+ ### Bug Fixes
641
+
642
+ * **GlobalLoader:** render in StrictMode ([#3582](https://github.com/skbkontur/retail-ui/issues/3582)) ([0d83d91](https://github.com/skbkontur/retail-ui/commit/0d83d91b6dbc02f37a89fcc6ef1fb5a970f179aa))
643
+
644
+
645
+
646
+
647
+
648
+ ## [5.0.9](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.0.8...@skbkontur/react-ui@5.0.9) (2025-01-24)
649
+
650
+ **Note:** Version bump only for package @skbkontur/react-ui
651
+
652
+
653
+
654
+
655
+
656
+ ## [5.0.8](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.0.7...@skbkontur/react-ui@5.0.8) (2025-01-17)
657
+
658
+
659
+ ### Bug Fixes
660
+
661
+ * show mobile view on all mobile devices ([#3583](https://github.com/skbkontur/retail-ui/issues/3583)) ([9e64e9e](https://github.com/skbkontur/retail-ui/commit/9e64e9ef1e2ef122f123520703a3935841ea70ec))
662
+
663
+
664
+
665
+
666
+
667
+ ## [5.0.7](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.0.6...@skbkontur/react-ui@5.0.7) (2025-01-16)
668
+
669
+
670
+ ### Bug Fixes
671
+
672
+ * **Input:** crash on focus after page translation ([#3572](https://github.com/skbkontur/retail-ui/issues/3572)) ([0093e57](https://github.com/skbkontur/retail-ui/commit/0093e57a0c0ad63d385068d418801fc7a4e18007))
673
+ * **Link:** issue with same colors for different uses ([#3585](https://github.com/skbkontur/retail-ui/issues/3585)) ([2413253](https://github.com/skbkontur/retail-ui/commit/2413253fdf4ae21985f341c8bad5069741ea3e11))
674
+
675
+
676
+
677
+
678
+
679
+ ## [5.0.6](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.0.5...@skbkontur/react-ui@5.0.6) (2024-12-23)
680
+
681
+
682
+ ### Bug Fixes
683
+
684
+ * **Calendar, DatePicker:** fix click on disabled dates ([#3564](https://github.com/skbkontur/retail-ui/issues/3564)) ([1b76455](https://github.com/skbkontur/retail-ui/commit/1b764557a99efc6494effc2f206ac525f3c2c1b4))
685
+ * **DateInput:** disallow date fragment selection in disabled state ([#3547](https://github.com/skbkontur/retail-ui/issues/3547)) ([69184a6](https://github.com/skbkontur/retail-ui/commit/69184a61284e21c6cab8e48c857c509e9b9ba06f))
686
+ * **DatePicker:** fix flushSync and onBlur on mobile ([#3556](https://github.com/skbkontur/retail-ui/issues/3556)) ([87b990e](https://github.com/skbkontur/retail-ui/commit/87b990e71ff737b2c27383328cdf72d9e4eeaf48))
687
+ * **HideBodyVerticalScroll:** fix disorderly unmount and resize ([#3565](https://github.com/skbkontur/retail-ui/issues/3565)) ([0c45cf0](https://github.com/skbkontur/retail-ui/commit/0c45cf0d760306e3c04a496dff987194607f4d91))
688
+ * **Loader:** prevent unwanted activation ([#3562](https://github.com/skbkontur/retail-ui/issues/3562)) ([fda0ed4](https://github.com/skbkontur/retail-ui/commit/fda0ed457323f7d2d07f418d196d9aaa2834d7f4))
689
+
690
+
691
+
692
+
693
+
694
+ ## [5.0.5](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.0.4...@skbkontur/react-ui@5.0.5) (2024-12-09)
695
+
696
+
697
+ ### Bug Fixes
698
+
699
+ * **ComboBox:** fix menuAlign prop ([#3559](https://github.com/skbkontur/retail-ui/issues/3559)) ([d3c8edd](https://github.com/skbkontur/retail-ui/commit/d3c8edd59e26fb65f1c18b68f4a3c44f383b56e4))
700
+
701
+
702
+
703
+
704
+
705
+ ## [5.0.4](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.0.3...@skbkontur/react-ui@5.0.4) (2024-12-04)
706
+
707
+
708
+ ### Bug Fixes
709
+
710
+ * **TokenInput:** forward prop `size` to menu items ([#3553](https://github.com/skbkontur/retail-ui/issues/3553)) ([5a0c990](https://github.com/skbkontur/retail-ui/commit/5a0c990f99478adb12fce10b04f5875406b75e61))
711
+
712
+
713
+
714
+
715
+
716
+ ## [5.0.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.0.2...@skbkontur/react-ui@5.0.3) (2024-11-22)
717
+
718
+
719
+ ### Bug Fixes
720
+
721
+ * **Calendar,MenuItem:** page jumps when opening DateSelect ([#3543](https://github.com/skbkontur/retail-ui/issues/3543)) ([7b4acd6](https://github.com/skbkontur/retail-ui/commit/7b4acd61f1645298062cdd6294ab780eb49f8669))
722
+ * **SingleToast:** avoid flushSync error in react@16 ([#3546](https://github.com/skbkontur/retail-ui/issues/3546)) ([767c848](https://github.com/skbkontur/retail-ui/commit/767c848339591f1b26cacf7da2f0436c5535008a))
723
+
724
+
725
+
726
+
727
+
728
+ ## [5.0.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.0.1...@skbkontur/react-ui@5.0.2) (2024-11-19)
729
+
730
+
731
+ ### Bug Fixes
732
+
733
+ * **DatePicker:** scrolling to today ([#3539](https://github.com/skbkontur/retail-ui/issues/3539)) ([b3147ac](https://github.com/skbkontur/retail-ui/commit/b3147ac9f9b66ae7ffcb2bc28bfa9dfec4e20878))
734
+ * **ZIndex:** change document to globalObject.document ([#3540](https://github.com/skbkontur/retail-ui/issues/3540)) ([aa1a055](https://github.com/skbkontur/retail-ui/commit/aa1a055e2c27e01abf4ced0249ce72a0b1642ba0))
735
+
736
+
737
+
738
+
739
+
740
+ ## [5.0.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@5.0.0...@skbkontur/react-ui@5.0.1) (2024-11-08)
741
+
742
+
743
+ ### Bug Fixes
744
+
745
+ * **Button,Link:** return text select ([#3538](https://github.com/skbkontur/retail-ui/issues/3538)) ([0c87bee](https://github.com/skbkontur/retail-ui/commit/0c87beec78f480d750ff37fa8cb74d601a8ccac3))
746
+
747
+
748
+
749
+
750
+
751
+ # [5.0.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.27.0...@skbkontur/react-ui@5.0.0) (2024-10-21)
752
+
753
+
754
+ ### Bug Fixes
755
+
756
+ * **Button, Select:** fix border hover ([#3504](https://github.com/skbkontur/retail-ui/issues/3504)) ([d3266e5](https://github.com/skbkontur/retail-ui/commit/d3266e5a2600104b630a644d45deab92c9b98b1b))
757
+ * **Button:** fix btnBackless vars ([#3465](https://github.com/skbkontur/retail-ui/issues/3465)) ([f5c0d83](https://github.com/skbkontur/retail-ui/commit/f5c0d8319fc5f1b054273fc4769cf98c83d44925))
758
+ * **Button:** rename root data-tid ([#3520](https://github.com/skbkontur/retail-ui/issues/3520)) ([ff030f1](https://github.com/skbkontur/retail-ui/commit/ff030f132a8ab74d6779a547f0a1759cc39ad039))
759
+ * **Calendar,DatePicker:** use human month format in scrollToMonth() ([2e55167](https://github.com/skbkontur/retail-ui/commit/2e55167956582acf7d76863ba4f97f0a3ca39837))
760
+ * **ComboBox:** restore comboBoxAllowValueChangeInEditingState feature flag ([#3529](https://github.com/skbkontur/retail-ui/issues/3529)) ([0df80d3](https://github.com/skbkontur/retail-ui/commit/0df80d3bddb0ef710210c959060fa2321d4bb53b))
761
+ * **Link:** fix markup and error/warning styles ([#3528](https://github.com/skbkontur/retail-ui/issues/3528)) ([0165dc6](https://github.com/skbkontur/retail-ui/commit/0165dc6d52fa922a18d417f3515c0cc17e3f67ee))
762
+ * **Link:** replace border-bottom with text-decoration ([#3462](https://github.com/skbkontur/retail-ui/issues/3462)) ([bcb40ac](https://github.com/skbkontur/retail-ui/commit/bcb40ac1b41d0d16176a125339502d5721a2bf33))
763
+ * **MaskedInput:** fix selectAll and empty maskChar ([#3525](https://github.com/skbkontur/retail-ui/issues/3525)) ([72120d0](https://github.com/skbkontur/retail-ui/commit/72120d04ad179531fa7f853c44be3c75ac64022a))
764
+ * **Theming:** use right colors for error outline and disabled text ([#3493](https://github.com/skbkontur/retail-ui/issues/3493)) ([7a98ee1](https://github.com/skbkontur/retail-ui/commit/7a98ee1815176303582f543e3551a57e65752055))
765
+ * **Toast:** fix paddings ([#3494](https://github.com/skbkontur/retail-ui/issues/3494)) ([6eab772](https://github.com/skbkontur/retail-ui/commit/6eab77251dd3c99cd542a0fc682952a0aea1c51b))
766
+ * **Toast:** restore root data-tid ([#3527](https://github.com/skbkontur/retail-ui/issues/3527)) ([066c37d](https://github.com/skbkontur/retail-ui/commit/066c37dc053726dd289edd06b586f0d4f8673f9c))
767
+
768
+
769
+ ### Features
770
+
771
+ * **Button,Link:** add component prop ([#3521](https://github.com/skbkontur/retail-ui/issues/3521)) ([27726a9](https://github.com/skbkontur/retail-ui/commit/27726a967f8cc11e719e414008129da325641cb2))
772
+ * **MaskedInput:** (rev. 2) ([#3390](https://github.com/skbkontur/retail-ui/issues/3390)) ([b2fb84f](https://github.com/skbkontur/retail-ui/commit/b2fb84f662fbb28c03ff38544d4f367a7446a778))
773
+ * **Picker:** remove deprecated component ([#3522](https://github.com/skbkontur/retail-ui/issues/3522)) ([ec536e3](https://github.com/skbkontur/retail-ui/commit/ec536e37c94bd9b0e045081264627871f478e479))
774
+ * **Popup:** replace DropdownContainer, unify shadows ([#3451](https://github.com/skbkontur/retail-ui/issues/3451)) ([723ec43](https://github.com/skbkontur/retail-ui/commit/723ec43470bec9f0dd89b5f899ffffb90004a538))
775
+ * **react-ui:** remove deprecated entities ([#3523](https://github.com/skbkontur/retail-ui/issues/3523)) ([edfa035](https://github.com/skbkontur/retail-ui/commit/edfa03543e630f9090639bcb46dd18ed9edd16f2))
776
+ * remove feature flags ([#3434](https://github.com/skbkontur/retail-ui/issues/3434)) ([26676a3](https://github.com/skbkontur/retail-ui/commit/26676a307c055110410f786941d9ace1f07dafe4))
777
+ * **theme:** delete legacy vars ([#3517](https://github.com/skbkontur/retail-ui/issues/3517)) ([7430d78](https://github.com/skbkontur/retail-ui/commit/7430d78f7b74c5af72e80116360e4cba7e22b49c))
778
+ * **ThemeFactory:** disallow arbitrary theme tokens by default ([#3516](https://github.com/skbkontur/retail-ui/issues/3516)) ([e43845b](https://github.com/skbkontur/retail-ui/commit/e43845b9f63901702b9bb1e2dc2d3fac77a22f5b))
779
+ * **theme:** remove deprecated vars ([#3515](https://github.com/skbkontur/retail-ui/issues/3515)) ([9653ca1](https://github.com/skbkontur/retail-ui/commit/9653ca1dc88bcca73d589cc3a09c4176d4fe3ce6))
780
+ * **Theming:** rename themes, introduce LIGHT_THEME and DARK_THEME ([#3519](https://github.com/skbkontur/retail-ui/issues/3519)) ([f290781](https://github.com/skbkontur/retail-ui/commit/f290781a508e96b83a5511435b4a51a581cb9919))
781
+ * update dependencies ([#3400](https://github.com/skbkontur/retail-ui/issues/3400)) ([d54f08d](https://github.com/skbkontur/retail-ui/commit/d54f08db9b10e2b10cb2d40c695a79f4e93271f5))
782
+
783
+
784
+ ### BREAKING CHANGES
785
+
786
+ * **Calendar,DatePicker:** In the `Calendar` method `scrollToMonth(month, year)` passes the human format of the month. Please change value `scrollToMonth(0, 2024)` → `scrollToMonth(1, 2024)` for scroll to January 2024
787
+
788
+
789
+
790
+
791
+
792
+ # [4.27.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.26.0...@skbkontur/react-ui@4.27.0) (2024-09-30)
793
+
794
+
795
+ ### Bug Fixes
796
+
797
+ * **Button:** fix btnTextHoverBg, btnTextActiveBg vars in Theme2022Dark ([#3464](https://github.com/skbkontur/retail-ui/issues/3464)) ([c6d70a3](https://github.com/skbkontur/retail-ui/commit/c6d70a31809903ffe11c6b63108dc100721e595e))
798
+
799
+
800
+ ### Features
801
+
802
+ * **react-ui, a11y:** add id prop for multiple components ([#3502](https://github.com/skbkontur/retail-ui/issues/3502)) ([2ba3db7](https://github.com/skbkontur/retail-ui/commit/2ba3db7894840e97df1daa845b555c6cc6924f18))
803
+
804
+
805
+
806
+
807
+
808
+ # [4.26.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.25.2...@skbkontur/react-ui@4.26.0) (2024-08-20)
809
+
810
+
811
+ ### Bug Fixes
812
+
813
+ * **FileUploader:** correct event type ([aaf3422](https://github.com/skbkontur/retail-ui/commit/aaf3422a849e3b3fef81d8656031bc66412e06ca))
814
+ * **FileUploader:** work with sync mode ([82a7a3c](https://github.com/skbkontur/retail-ui/commit/82a7a3c5d95d3b132d39a333cec515c3b0d28bfb))
815
+ * **ScrollContainer:** new prop 'scrollRef' ([#3476](https://github.com/skbkontur/retail-ui/issues/3476)) ([d066e35](https://github.com/skbkontur/retail-ui/commit/d066e35d7a4d4c8e273e0b382a475a217b7386fc))
816
+
817
+
818
+ ### Features
819
+
820
+ * **FileUploader:** initial state for files ([b735a83](https://github.com/skbkontur/retail-ui/commit/b735a834c4d6736f9d05289ac4b3e4c7f132de43))
821
+ * **ZIndex:** partially support several React roots ([#3478](https://github.com/skbkontur/retail-ui/issues/3478)) ([6c87630](https://github.com/skbkontur/retail-ui/commit/6c87630368219fd3b32d5e5dfc67704f3b29ad99))
822
+
823
+
824
+
825
+
826
+
827
+ ## [4.25.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.25.1...@skbkontur/react-ui@4.25.2) (2024-07-16)
828
+
829
+
830
+ ### Bug Fixes
831
+
832
+ * **Loader:** fix Loader in 18 react ([#3467](https://github.com/skbkontur/retail-ui/issues/3467)) ([5c0fcce](https://github.com/skbkontur/retail-ui/commit/5c0fccefea1de468a9a796456f6a8a9163587a51))
833
+ * **Select:** pass disabled to _renderButton ([#3468](https://github.com/skbkontur/retail-ui/issues/3468)) ([bc4cac9](https://github.com/skbkontur/retail-ui/commit/bc4cac9444667bc10f499fec417cd67cc1081075))
834
+ * **validations:** program validation on multiple fields ([#3454](https://github.com/skbkontur/retail-ui/issues/3454)) ([8317e0b](https://github.com/skbkontur/retail-ui/commit/8317e0baac36346a15cfff7477f4b482430a007d))
835
+
836
+
837
+
838
+
839
+
840
+ ## [4.25.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.25.0...@skbkontur/react-ui@4.25.1) (2024-06-17)
841
+
842
+ **Note:** Version bump only for package @skbkontur/react-ui
843
+
844
+
845
+
846
+
847
+
848
+ # [4.25.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.24.0...@skbkontur/react-ui@4.25.0) (2024-06-17)
849
+
850
+
851
+ ### Features
852
+
853
+ * update colors 2024 ([#3447](https://github.com/skbkontur/retail-ui/issues/3447)) ([85dd419](https://github.com/skbkontur/retail-ui/commit/85dd41988a9ceca49815560e38d3ed6f5c25db96))
854
+ * **validations:** use `ThemeContext` ([#3446](https://github.com/skbkontur/retail-ui/issues/3446)) ([74fd90b](https://github.com/skbkontur/retail-ui/commit/74fd90b337968eed217a478bf913e6ce2f7fe962))
855
+
856
+
857
+
858
+
859
+
860
+ # [4.24.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.23.0...@skbkontur/react-ui@4.24.0) (2024-06-05)
861
+
862
+
863
+ ### Features
864
+
865
+ * **Calendar:** add public component Calendar.Day ([#3415](https://github.com/skbkontur/retail-ui/issues/3415)) ([f32c251](https://github.com/skbkontur/retail-ui/commit/f32c251426b057fbb5a704af23ce60fc0ce0b967))
866
+ * **Calendar, DatePicker:** add renderDay and onMonthChange props ([#3257](https://github.com/skbkontur/retail-ui/issues/3257)) ([228a6f4](https://github.com/skbkontur/retail-ui/commit/228a6f44621115037013cf27235b4dda2ad3896d))
867
+ * **DatePicker:** mobile version ([#3323](https://github.com/skbkontur/retail-ui/issues/3323)) ([2785f2b](https://github.com/skbkontur/retail-ui/commit/2785f2b7c05958e76acb0dc749d275b7b2263d79))
868
+
869
+
870
+
871
+
872
+
873
+ # [4.23.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.22.6...@skbkontur/react-ui@4.23.0) (2024-05-28)
874
+
875
+
876
+ ### Bug Fixes
877
+
878
+ * **Hint,Tooltip:** unify positioning ([#3416](https://github.com/skbkontur/retail-ui/issues/3416)) ([be0c447](https://github.com/skbkontur/retail-ui/commit/be0c447d228b861e4967737b95bbdecde4e2281d))
879
+
880
+
881
+
882
+
883
+
884
+ ## [4.22.6](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.22.5...@skbkontur/react-ui@4.22.6) (2024-05-28)
885
+
886
+
887
+ ### Bug Fixes
888
+
889
+ * **Autocomplete:** fix dropdown position when disablePortal ([#3426](https://github.com/skbkontur/retail-ui/issues/3426)) ([a991806](https://github.com/skbkontur/retail-ui/commit/a991806862eedbbc9dfb76dfa95cca94d24b6974))
890
+
891
+
892
+
893
+
894
+
895
+ ## [4.22.5](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.22.4...@skbkontur/react-ui@4.22.5) (2024-05-14)
896
+
897
+
898
+ ### Bug Fixes
899
+
900
+ * **Autocomplete, ComboBox:** disable browser autofill ([#3419](https://github.com/skbkontur/retail-ui/issues/3419)) ([f805126](https://github.com/skbkontur/retail-ui/commit/f8051261304878b9cfffa744dc82a7296a7448b9))
901
+
902
+
903
+
904
+
905
+
906
+ ## [4.22.4](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.22.3...@skbkontur/react-ui@4.22.4) (2024-05-07)
907
+
908
+
909
+ ### Features
910
+
911
+ * **Kebab,Link,Paging:** add visual state disabled ([#3418](https://github.com/skbkontur/retail-ui/issues/3418)) ([c47c213](https://github.com/skbkontur/retail-ui/commit/c47c213f3986b4c8a16e0f542fa2b530fc78b632))
912
+ * boolean visual state attributes ([#3407](https://github.com/skbkontur/retail-ui/issues/3407)) ([132a177](https://github.com/skbkontur/retail-ui/commit/132a177782baa51cdca5d59d97d41780217ef73d))
913
+
914
+
915
+
916
+
917
+
918
+ ## [4.22.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.22.2...@skbkontur/react-ui@4.22.3) (2024-04-25)
919
+
920
+
921
+ ### Bug Fixes
922
+
923
+ * Reset focus if disabled ([#3378](https://github.com/skbkontur/retail-ui/issues/3378)) ([ed728b6](https://github.com/skbkontur/retail-ui/commit/ed728b66e30735cfe01e5d2acec3b81efa3fcdb8))
924
+
925
+
926
+
927
+
928
+ ## [4.22.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.22.1...@skbkontur/react-ui@4.22.2) (2024-04-19)
929
+
930
+ **Note:** Version bump only for package @skbkontur/react-ui
931
+
932
+
933
+
934
+
935
+
936
+ ## [4.22.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.22.0...@skbkontur/react-ui@4.22.1) (2024-04-16)
937
+
938
+
939
+ ### Bug Fixes
940
+
941
+ * **Button:** fix btnTextHoverBg var ([#3403](https://github.com/skbkontur/retail-ui/issues/3403)) ([0801972](https://github.com/skbkontur/retail-ui/commit/0801972b6c3afad052b6ec7af2befe1add635481))
942
+ * **Token:** correct render with conditional children ([#3404](https://github.com/skbkontur/retail-ui/issues/3404)) ([0ce8800](https://github.com/skbkontur/retail-ui/commit/0ce8800f45df807c4e97c9cb972324105011f404))
943
+
944
+
945
+
946
+
947
+
948
+ # [4.22.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.21.3...@skbkontur/react-ui@4.22.0) (2024-04-09)
949
+
950
+
951
+ ### Bug Fixes
952
+
953
+ * **Button:** transparent bg for use='text' in disabled state ([#3272](https://github.com/skbkontur/retail-ui/pull/3272)) ([5653505](https://github.com/skbkontur/retail-ui/commit/56535052fb0b4edea30636b6b66cd0bd5fe8af63))
954
+ * **Button:** fix bg for use='backless' and use='text' in hover state ([#3272](https://github.com/skbkontur/retail-ui/pull/3272)) ([5653505](https://github.com/skbkontur/retail-ui/commit/56535052fb0b4edea30636b6b66cd0bd5fe8af63))
955
+ * **DateInput:** use default selection colors ([#3284](https://github.com/skbkontur/retail-ui/pull/3284)) ([bed1414](https://github.com/skbkontur/retail-ui/commit/bed14140859195703617a9b584dedf984848f50f))
956
+ * **Button:** inherit icon color from text color in THEME_2022_DARK ([#3300](https://github.com/skbkontur/retail-ui/pull/3300)) ([96ac3f7](https://github.com/skbkontur/retail-ui/commit/96ac3f7a0569226eae8abce99c2f03efe3ec342d))
957
+ * **Textarea:** correct bg color in dark 2022 theme ([#3367](https://github.com/skbkontur/retail-ui/pull/3367)) ([b5ea9ff](https://github.com/skbkontur/retail-ui/commit/b5ea9ff736e0a067ac5f151e7835e9fa0e7b0c4c))
958
+ * **Hint:** fix hint jumping near screen edge ([#3356](https://github.com/skbkontur/retail-ui/pull/3356)) ([5d8788c](https://github.com/skbkontur/retail-ui/commit/5d8788c00058f217dc1b71b698269761c78f1958))
959
+ * **Popup:** correct rootNode on mobile ([#3375](https://github.com/skbkontur/retail-ui/pull/3375)) ([e2b7e26](https://github.com/skbkontur/retail-ui/commit/e2b7e261b6a160bbd9296db12c9b881f64630c11))
960
+ * **Button:** allow icon color vars work properly ([#3393](https://github.com/skbkontur/retail-ui/pull/3393)) ([d403037](https://github.com/skbkontur/retail-ui/commit/d4030379e7bbae21585f90645f9545f10711c694))
961
+ * **Token,TokenInput:** sync styles with figma ([#3251](https://github.com/skbkontur/retail-ui/pull/3251)) ([693e800](https://github.com/skbkontur/retail-ui/commit/693e800d4351ac84ae0f643d3f972509fd890fbc))
962
+
963
+ ### Features
964
+
965
+ * **Token,TokenInput:** add prop size ([#3251](https://github.com/skbkontur/retail-ui/pull/3251)) ([693e800](https://github.com/skbkontur/retail-ui/commit/693e800d4351ac84ae0f643d3f972509fd890fbc))
966
+ * **Hint, Kebab:** add kebabHintRemovePin featureFlag ([#3331](https://github.com/skbkontur/retail-ui/pull/3331)) ([d15c682](https://github.com/skbkontur/retail-ui/commit/d15c68263c4b946e787e99f13e1a8029bce8bd45))
967
+ * **Button,Link:** linkFocusOutline feature flag ([#3362](https://github.com/skbkontur/retail-ui/pull/3362)) ([fec72e4](https://github.com/skbkontur/retail-ui/commit/fec72e4fa6e5f190034d4db1611c193578b8a178))
968
+ * **Hint, Toast:** update styles ([#3331](https://github.com/skbkontur/retail-ui/pull/3331)) ([d15c682](https://github.com/skbkontur/retail-ui/commit/d15c68263c4b946e787e99f13e1a8029bce8bd45))
969
+
970
+
971
+
972
+
973
+
974
+
975
+ ## [4.21.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.21.2...@skbkontur/react-ui@4.21.3) (2024-04-09)
976
+
977
+
978
+ ### Bug Fixes
979
+
980
+ * **Token:** suppress a11y issue ([#3401](https://github.com/skbkontur/retail-ui/issues/3401)) ([3763442](https://github.com/skbkontur/retail-ui/commit/37634428fe01c0df63a977beb77929a2fde163a1))
981
+ * add visual state attributes ([#3399](https://github.com/skbkontur/retail-ui/issues/3399)) ([c2d8780](https://github.com/skbkontur/retail-ui/commit/c2d8780607a5979662956b419706bf5957bb2f1c))
982
+
983
+
984
+
985
+
986
+
987
+ ## [4.21.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.21.1...@skbkontur/react-ui@4.21.2) (2024-03-13)
988
+
989
+
990
+ ### Bug Fixes
991
+
992
+ * **DatePicker:** prop 'width' is not required ([#3374](https://github.com/skbkontur/retail-ui/issues/3374)) ([becfa87](https://github.com/skbkontur/retail-ui/commit/becfa8712fc648ee216ad22fdd46466c435627cf))
993
+
994
+
995
+
996
+
997
+
998
+ ## [4.21.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.22.0-next.0...@skbkontur/react-ui@4.21.1) (2024-03-12)
999
+
1000
+
1001
+ ### Bug Fixes
1002
+
1003
+ * **Button:** add variables for hover text color ([#3365](https://github.com/skbkontur/retail-ui/issues/3365)) ([c2ff765](https://github.com/skbkontur/retail-ui/commit/c2ff765ed47b0b11dd08aa5da58aaf90d0d4d383))
1004
+ * **Button, Link:** add rightIcon prop ([#3317](https://github.com/skbkontur/retail-ui/issues/3317)) ([83527fc](https://github.com/skbkontur/retail-ui/commit/83527fcfd1e5ef41990e7577a17612f1a4c4f4ac))
1005
+ * **ComboBox:** allow to change value in editing state ([#3340](https://github.com/skbkontur/retail-ui/issues/3340)) ([caa4bef](https://github.com/skbkontur/retail-ui/commit/caa4beff7e1fefb9a64984ca8f58524b5d3aa8fc))
1006
+
1007
+
1008
+
1009
+
1010
+
1011
+ # [4.21.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.21.0-next.3...@skbkontur/react-ui@4.21.0) (2024-02-21)
1012
+
1013
+
1014
+ ### Features
1015
+
1016
+ * **MuskedInput:** add MaskedInput component ([#3341](https://github.com/skbkontur/retail-ui/issues/3341)) ([4343d51](https://github.com/skbkontur/retail-ui/commit/223aa724d3497ae53d62ea8a86578c3564343d51))
1017
+
1018
+
1019
+
1020
+
1021
+
1022
+ ## [4.20.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.20.2...@skbkontur/react-ui@4.20.3) (2024-02-21)
1023
+
1024
+
1025
+ ### Bug Fixes
1026
+
1027
+ * **Token:** prevent focus on cross ([#3361](https://github.com/skbkontur/retail-ui/issues/3361)) ([757899c](https://github.com/skbkontur/retail-ui/commit/757899c17a1f5e040848ecd25a0eaf98ebe8e9e4))
1028
+
1029
+
1030
+
1031
+
1032
+
1033
+ ## [4.20.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.20.1...@skbkontur/react-ui@4.20.2) (2024-02-19)
1034
+
1035
+
1036
+ ### Bug Fixes
1037
+
1038
+ * **Token:** suppress close button a11y issue([#3337](https://github.com/skbkontur/retail-ui/issues/3337)) ([b7de35f](https://github.com/skbkontur/retail-ui/commit/b7de35f57c287b7ec8030df99e20e28bad2dd8a6))
1039
+
1040
+
1041
+
1042
+
1043
+
1044
+ ## [4.20.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.20.0...@skbkontur/react-ui@4.20.1) (2024-02-15)
1045
+
1046
+
1047
+ ### Bug Fixes
1048
+
1049
+ * **RenderContainer:** remove side effects from constructor ([#3357](https://github.com/skbkontur/retail-ui/issues/3357)) ([0a7d610](https://github.com/skbkontur/retail-ui/commit/0a7d6104fd611bee5e55bf4248809e2fe076b827))
1050
+ * full support of rgb(a) and hsl(a) formats in theme vars ([#3332](https://github.com/skbkontur/retail-ui/issues/3332)) ([d9a0b28](https://github.com/skbkontur/retail-ui/commit/d9a0b28c1beee128a858be074b0b81caaf276f0e))
1051
+ * **Button:** correct click handler with use="link" ([#3355](https://github.com/skbkontur/retail-ui/issues/3355)) ([816d551](https://github.com/skbkontur/retail-ui/commit/816d55189aa4bee1e1999f624d6c861eaddf9b64))
1052
+
1053
+
1054
+
1055
+
1056
+
1057
+ # [4.20.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.20.0-next.2...@skbkontur/react-ui@4.20.0) (2024-02-05)
1058
+
1059
+
1060
+ ### Bug Fixes
1061
+
1062
+ * **SidePage:** add FocusLock featureFlag ([#3343](https://github.com/skbkontur/retail-ui/issues/3343)) ([660a531](https://github.com/skbkontur/retail-ui/commit/660a531279daab30aec23b5000b5cb721ef7de41))
1063
+ * **Tooltip:** new prop delayBeforeShow ([#3354](https://github.com/skbkontur/retail-ui/issues/3354)) ([fc166d0](https://github.com/skbkontur/retail-ui/commit/fc166d061f538bd975a0330aabc3b052a548267d))
1064
+ * isInstanceOf in IE 11 ([#3350](https://github.com/skbkontur/retail-ui/issues/3350)) ([bb61ec0](https://github.com/skbkontur/retail-ui/commit/bb61ec0315854f65fc3d27fb1bbf003aa1284199))
1065
+
1066
+
1067
+ ### Features
1068
+
1069
+ * **MenuItem:** allow MenuItem at any level ([#3270](https://github.com/skbkontur/retail-ui/issues/3270)) ([171f2c1](https://github.com/skbkontur/retail-ui/commit/171f2c1b46a638347302f6a998efc06143a0527e))
1070
+ * **ScrollСontainer:** add value `never` to `showScrollbar` prop ([#3353](https://github.com/skbkontur/retail-ui/issues/3353)) ([50970e3](https://github.com/skbkontur/retail-ui/commit/50970e39e06a0aaff6600e1d6d673df741670e91))
1071
+ * **Spinner:** hide default caption under a feature flag ([#3334](https://github.com/skbkontur/retail-ui/issues/3334)) ([8374dc5](https://github.com/skbkontur/retail-ui/commit/8374dc5615a3c5ebbc704c62bbd0298c7f600dc5))
1072
+
1073
+
1074
+
1075
+
1076
+
1077
+ ## [4.19.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.19.0...@skbkontur/react-ui@4.19.1) (2024-01-25)
1078
+
1079
+
1080
+ ### Bug Fixes
1081
+
1082
+ * **GlobalLoader:** fix warning in strict mode ([#3335](https://github.com/skbkontur/retail-ui/issues/3335)) ([f9ba1bc](https://github.com/skbkontur/retail-ui/commit/f9ba1bcaa1f5e4d5d6bbd07442b37af0c935f0ee))
1083
+ * **Switcher:** export SwitcherItems type ([#3342](https://github.com/skbkontur/retail-ui/issues/3342)) ([718b05f](https://github.com/skbkontur/retail-ui/commit/718b05fba9ff1546b50d6b36914c9616cc42fb3b))
1084
+
1085
+
1086
+ ### Features
1087
+
1088
+ * **Textarea:** add feature flag `textareaUseSafari17Workaround` ([#3352](https://github.com/skbkontur/retail-ui/issues/3352)) ([e40c88b](https://github.com/skbkontur/retail-ui/commit/e40c88bd8b0a47015842d8125348dc066ef30e0e))
1089
+
1090
+
1091
+
1092
+
1093
+
1094
+ # [4.19.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.18.0...@skbkontur/react-ui@4.19.0) (2023-12-15)
1095
+
1096
+
1097
+ ### Bug Fixes
1098
+
1099
+ * **DropdownMenu:** fix bgSecondary in THEME_2022_DARK ([#3330](https://github.com/skbkontur/retail-ui/issues/3330)) ([44e7258](https://github.com/skbkontur/retail-ui/commit/44e7258715696b38db58507729e8f1c11a596d10))
1100
+ * **GlobalLoader:** repair of call chain done()➔start()➔done() ([#3328](https://github.com/skbkontur/retail-ui/issues/3328)) ([9178da5](https://github.com/skbkontur/retail-ui/commit/9178da5cb7fd2973824ce26169d5afc090531b63))
1101
+ * **icons:** move tech-symbol `ZERO_WIDTH_SPACE` to `::before` ([#3316](https://github.com/skbkontur/retail-ui/issues/3316)) ([a93e636](https://github.com/skbkontur/retail-ui/commit/a93e63651c997a4b9179d6cc44182e0596ad7bd8))
1102
+ * **PasswordInput:** eye icon triggers form submit ([#3327](https://github.com/skbkontur/retail-ui/issues/3327)) ([9014743](https://github.com/skbkontur/retail-ui/commit/9014743ff97a3e95120e3cf4b3e9f21938b3ff51))
1103
+ * **ScrollContainer:** stretch small content to size of container ([#3326](https://github.com/skbkontur/retail-ui/issues/3326)) ([a7f20b4](https://github.com/skbkontur/retail-ui/commit/a7f20b4ef019e2f84d1b33fa552b82aab54a4450))
1104
+
1105
+
1106
+ ### Features
1107
+
1108
+ * **react-ui,validations:** add FeatureFlags contexts ([#3312](https://github.com/skbkontur/retail-ui/issues/3312)) ([508c803](https://github.com/skbkontur/retail-ui/commit/508c803018360a396bb693c9272e1dc2490e9a7b))
1109
+ * **ScrollContainer:** new prop `showScrollBar` instead of `hideScrollBar` ([#3322](https://github.com/skbkontur/retail-ui/issues/3322)) ([dc31863](https://github.com/skbkontur/retail-ui/commit/dc31863377a4505911c750922075a82c830d162b))
1110
+
1111
+
1112
+
1113
+
1114
+
1115
+ # [4.18.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.17.4...@skbkontur/react-ui@4.18.0) (2023-12-04)
1116
+
1117
+
1118
+ ### Bug Fixes
1119
+
1120
+ * **Button:** not render arrow when prop arrow is false ([#3320](https://github.com/skbkontur/retail-ui/issues/3320)) ([fd231c1](https://github.com/skbkontur/retail-ui/commit/fd231c131f5bf8d5b1824cc79cce59aac30e27c3))
1121
+
1122
+
1123
+ ### Features
1124
+
1125
+ * **MiniModal:** add new control ([#3228](https://github.com/skbkontur/retail-ui/issues/3228)) ([80a0fef](https://github.com/skbkontur/retail-ui/commit/80a0fefcc00b1fc6ba5f867459ab9151815bf8c7))
1126
+ * **SingleToast:** add new component ([#3314](https://github.com/skbkontur/retail-ui/issues/3314)) ([1daf55b](https://github.com/skbkontur/retail-ui/commit/1daf55bb5e432b14dd729a91983cdb3fa9e466a5))
1127
+
1128
+
1129
+
1130
+
1131
+
1132
+ ## [4.17.4](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.17.3...@skbkontur/react-ui@4.17.4) (2023-12-04)
1133
+
1134
+
1135
+ ### Bug Fixes
1136
+
1137
+ * **GlobalLoader:** repair of call chain done()➔start()➔done() ([#3319](https://github.com/skbkontur/retail-ui/issues/3319)) ([9be8e35](https://github.com/skbkontur/retail-ui/commit/9be8e35c9216e055e4b213467115023d8b6d6282))
1138
+ * **Select:** reject focus of unmounted input ([#3318](https://github.com/skbkontur/retail-ui/issues/3318)) ([f3ac028](https://github.com/skbkontur/retail-ui/commit/f3ac028e4b0e83564c693dde1f22a5592d6cb3d3))
1139
+
1140
+
1141
+
1142
+
1143
+
1144
+ ## [4.17.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.17.2...@skbkontur/react-ui@4.17.3) (2023-11-14)
1145
+
1146
+
1147
+ ### Bug Fixes
1148
+
1149
+ * **Link:** return underline when hovering over icon ([#3313](https://github.com/skbkontur/retail-ui/issues/3313)) ([aa4c9f0](https://github.com/skbkontur/retail-ui/commit/aa4c9f0e2fb2a15b61c52709356baeaac1bbb313))
1150
+
1151
+
1152
+
1153
+
1154
+
1155
+ ## [4.17.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.17.1...@skbkontur/react-ui@4.17.2) (2023-11-13)
1156
+
1157
+ **Note:** Version bump only for package @skbkontur/react-ui
1158
+
1159
+
1160
+
1161
+
1162
+
1163
+ ## [4.17.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.17.0...@skbkontur/react-ui@4.17.1) (2023-11-09)
1164
+
1165
+
1166
+ ### Bug Fixes
1167
+
1168
+ * **Dropdown:** add 21 theme variables ([#3310](https://github.com/skbkontur/retail-ui/issues/3310)) ([47b69ad](https://github.com/skbkontur/retail-ui/commit/47b69adf48fbbdce93d73ee8bb2a8ab61f7e8534))
1169
+ * **FileUploader:** hide native input in Safari ([#3309](https://github.com/skbkontur/retail-ui/issues/3309)) ([3454e50](https://github.com/skbkontur/retail-ui/commit/3454e500cd8b0ac434f7417bbf9fbbb973d251f6))
1170
+ * **Link:** fix link underline on focus ([#3311](https://github.com/skbkontur/retail-ui/issues/3311)) ([7be897e](https://github.com/skbkontur/retail-ui/commit/7be897eb57a66d3966d442f1a4a0bc6b37b8924a))
1171
+ * **Toggle:** link toggleContainerBg to toggleBg variables ([#3303](https://github.com/skbkontur/retail-ui/issues/3303)) ([d881c90](https://github.com/skbkontur/retail-ui/commit/d881c904bc6074ef85065038cc0b62d8cd22a183))
1172
+
1173
+
1174
+
1175
+
1176
+
1177
+ # [4.17.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.16.2...@skbkontur/react-ui@4.17.0) (2023-11-01)
1178
+
1179
+
1180
+ ### Features
1181
+
1182
+ * ability to set up window ([#3259](https://github.com/skbkontur/retail-ui/issues/3259)) ([f19378c](https://github.com/skbkontur/retail-ui/commit/f19378c9609f4f0867658480456b6b976bb3f2af))
1183
+
1184
+
1185
+ ### Bug Fixes
1186
+
1187
+ * **ComboBox:** fix mobile overlay not closing when using public methods ([#3268](https://github.com/skbkontur/retail-ui/issues/3268)) ([46ffefa](https://github.com/skbkontur/retail-ui/commit/46ffefad121c0525f502d169c5d0052bff49129e))
1188
+ * **ComboBox:** submit form on Enter if closed ([#3264](https://github.com/skbkontur/retail-ui/issues/3264)) ([3646b08](https://github.com/skbkontur/retail-ui/commit/3646b08bb6e4e5b05c54513301626ab52eb9a2f9))
1189
+ * **Sticky:** fix width calc in fixed state on page resize ([#3285](https://github.com/skbkontur/retail-ui/issues/3285)) ([8d19d82](https://github.com/skbkontur/retail-ui/commit/8d19d82d2ac07c16e442e8dd0478603ba7e84fb6))
1190
+ * **Paging:** disable forward button when current page is last ([#3273](https://github.com/skbkontur/retail-ui/issues/3273)) ([9b3a0b7](https://github.com/skbkontur/retail-ui/commit/9b3a0b74cafaa7753a62da43a8edaef30eae617c))
1191
+ * **SidePage:** fix overlay when changing desktop->mobile->desktop ([#3292](https://github.com/skbkontur/retail-ui/issues/3292)) ([fa4ac39](https://github.com/skbkontur/retail-ui/commit/fa4ac399d41b3457346d3e3187d212bf92581347))
1192
+ * **Paging:** fix hint height ([#3295](https://github.com/skbkontur/retail-ui/issues/3295)) ([67363ca](https://github.com/skbkontur/retail-ui/commit/67363ca7fb28242a88dfb6b59fc67a55880bd9d5))
1193
+
1194
+
1195
+
1196
+
1197
+
1198
+ ## [4.16.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.16.1...@skbkontur/react-ui@4.16.2) (2023-10-24)
1199
+
1200
+
1201
+ ### Bug Fixes
1202
+
1203
+ * **Button:** enable linkHoverTextDecoration var for THEME_2022 ([#3290](https://github.com/skbkontur/retail-ui/issues/3290)) ([1beb6da](https://github.com/skbkontur/retail-ui/commit/1beb6da47b0d782a2f62c1612b26fe221128f5fc))
1204
+ * **SidePage,Sticky:** fix max update depth error ([#3293](https://github.com/skbkontur/retail-ui/issues/3293)) ([950988f](https://github.com/skbkontur/retail-ui/commit/950988f9b3b612b1ac8f3a4f634bd3b001e28a9b))
1205
+
1206
+
1207
+
1208
+
1209
+
1210
+ ## [4.16.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.16.0...@skbkontur/react-ui@4.16.1) (2023-10-16)
1211
+
1212
+
1213
+ ### Bug Fixes
1214
+
1215
+ * **Button:** fix icons styles on hover in disabled state ([#3281](https://github.com/skbkontur/retail-ui/issues/3281)) ([276e82d](https://github.com/skbkontur/retail-ui/commit/276e82d44ba483ef08ff26827150885ceaaff930))
1216
+ * **CurrencyInput:** remove `findDOMNode` console warning in `THEME_2022` ([#3278](https://github.com/skbkontur/retail-ui/issues/3278)) ([21a2a1f](https://github.com/skbkontur/retail-ui/commit/21a2a1f479d243746cf73b40f7300735600a464f))
1217
+ * **DateInput:** use `flushSync` in React@18 ([#3286](https://github.com/skbkontur/retail-ui/issues/3286)) ([69efd4d](https://github.com/skbkontur/retail-ui/commit/69efd4d6da9b6546e8bdfbba52fccf676ddea07f))
1218
+ * **Button:** add data-tid for spinner icon ([#3277](https://github.com/skbkontur/retail-ui/issues/3277)) ([88a2d15](https://github.com/skbkontur/retail-ui/commit/88a2d1502c537280434ed3004c77d9516e6971af))
1219
+
1220
+
1221
+
1222
+
1223
+
1224
+ # [4.16.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.16.0-next.10...@skbkontur/react-ui@4.16.0) (2023-09-21)
1225
+
1226
+ ### Features
1227
+
1228
+ * **Autocomplete,ComboBox,Dropdown,Select:** forward size to MenuItems ([#3265](https://github.com/skbkontur/retail-ui/issues/3265)) ([c0732e5](https://github.com/skbkontur/retail-ui/commit/c0732e51124140e7c1f4a9f7c970e92ca6ddc17a))
1229
+ * **MenuHeader,MenuItem:** add prop size ([#3252](https://github.com/skbkontur/retail-ui/issues/3252)) ([e0e981a](https://github.com/skbkontur/retail-ui/commit/e0e981ad61389b04d9cc0ca885ee64c19de389b6))
1230
+ * add aria-label to all appropriate components ([#3223](https://github.com/skbkontur/retail-ui/issues/3223)) ([5603ef6](https://github.com/skbkontur/retail-ui/commit/5603ef6eedec2786a68bb86a8b1131b609aea25c))
1231
+ * **Checkbox:** add prop size ([#3230](https://github.com/skbkontur/retail-ui/issues/3230)) ([032279a](https://github.com/skbkontur/retail-ui/commit/032279af4673995bbae5f82da0e050ef9da9b53c))
1232
+ * **Radio:** add prop size ([#3246](https://github.com/skbkontur/retail-ui/issues/3246)) ([ee270c9](https://github.com/skbkontur/retail-ui/commit/ee270c913d3c7502c27062af8a658e7ab9734098))
1233
+ * **Textarea:** add prop size ([#3243](https://github.com/skbkontur/retail-ui/issues/3243)) ([b8c309d](https://github.com/skbkontur/retail-ui/commit/b8c309dfbb6b4ec4a9c3336789a25bd756b2c6cc))
1234
+ * **Toggle:** add prop size ([#3233](https://github.com/skbkontur/retail-ui/issues/3233)) ([db76d09](https://github.com/skbkontur/retail-ui/commit/db76d091d6b8d94b25a1710adf9606a09b07c67b))
1235
+ * **Tabs:** add prop size ([#3198](https://github.com/skbkontur/retail-ui/issues/3198)) ([69b2299](https://github.com/skbkontur/retail-ui/commit/69b2299e75606c6ee6f381af3591bdfec17e45a7))
1236
+ * **InternalMenu:** replace with Menu ([#3234](https://github.com/skbkontur/retail-ui/issues/3234)) ([b19ac8f](https://github.com/skbkontur/retail-ui/commit/b19ac8fcb580384177acbfd2da7ea23b00c8ffdc))
1237
+ * **Menu:** improve a11y of dropdown lists ([#3194](https://github.com/skbkontur/retail-ui/issues/3194)) ([c25f090](https://github.com/skbkontur/retail-ui/commit/c25f090f25a9e1078cbe882417f4b2c96559d5ec))
1238
+ * **all:** add animations for hover and active states ([#3219](https://github.com/skbkontur/retail-ui/issues/3219)) ([51a6165](https://github.com/skbkontur/retail-ui/commit/51a61652aa8398dbc500cf500af480f883e97857))
1239
+
1240
+
1241
+ ### Bug Fixes
1242
+
1243
+ * **Button:** disabled state doesn't bubble click ([#3262](https://github.com/skbkontur/retail-ui/issues/3262)) ([79a46a6](https://github.com/skbkontur/retail-ui/commit/79a46a6cc06971b36fc7bff0855b9daaf3bd2750))
1244
+ * **Button:** remove outline in disabled state for colored use buttons ([#3244](https://github.com/skbkontur/retail-ui/issues/3244)) ([bd50313](https://github.com/skbkontur/retail-ui/commit/bd503130fff703396ea2e475f1f5998e710dcf98))
1245
+ * **ComboBox:** extend getItems type ([#3260](https://github.com/skbkontur/retail-ui/issues/3260)) ([1da0591](https://github.com/skbkontur/retail-ui/commit/1da0591dc2ef91de8c124258da7b167dc6a9fc6c))
1246
+ * **Link:** add transition on underline ([#3254](https://github.com/skbkontur/retail-ui/issues/3254)) ([6b9d106](https://github.com/skbkontur/retail-ui/commit/6b9d106369b963e9da6fbc54effb562f4e3467b1))
1247
+ * **Toggle:** disable animations for `THEME_2022` ([#3256](https://github.com/skbkontur/retail-ui/issues/3256)) ([cdc9513](https://github.com/skbkontur/retail-ui/commit/cdc95137ce1a46d2720b67435c7c622919068440))
1248
+ * **Autocomplete,Select,ComboBox:** add missing horizontal paddings for Menu on mobile ([#3207](https://github.com/skbkontur/retail-ui/issues/3207)) ([15be732](https://github.com/skbkontur/retail-ui/commit/15be73264ae957d5015539217dd76bacef494e25))
1249
+ * **Button:** add color to border when `use=text` ([#3216](https://github.com/skbkontur/retail-ui/issues/3216)) ([01a10da](https://github.com/skbkontur/retail-ui/commit/01a10dac6325874581195aaa366ebf8b81bb1cb3))
1250
+ * **Button:** add events onClickCapture, onMouseDown and onMouseUp ([#3249](https://github.com/skbkontur/retail-ui/issues/3249)) ([a5b3809](https://github.com/skbkontur/retail-ui/commit/a5b38093371568ac391363349e243075baf107c8))
1251
+ * **Button:** repair `btnLink*` theme vars in THEME_2022 ([#3250](https://github.com/skbkontur/retail-ui/issues/3250)) ([5c6673c](https://github.com/skbkontur/retail-ui/commit/5c6673c2710d6d09050690c1f779d7eafaa13b72))
1252
+ * **Calendar:** add accessible descriptions ([#3232](https://github.com/skbkontur/retail-ui/issues/3232)) ([b2b0d78](https://github.com/skbkontur/retail-ui/commit/b2b0d78f2d39daaa45e973034de6a533a7e701a3))
1253
+ * **Calendar:** return customization of current day border in theme 2022 ([#3186](https://github.com/skbkontur/retail-ui/issues/3186)) ([1595e1d](https://github.com/skbkontur/retail-ui/commit/1595e1df80d72d42116f9604b44565733ce4895f))
1254
+ * **DateInput:** remove unnecessary focus half-border ([#3221](https://github.com/skbkontur/retail-ui/issues/3221)) ([4613c66](https://github.com/skbkontur/retail-ui/commit/4613c662675e69401fcfcdfb93fa7c8b33125cca))
1255
+ * **DateInput:** set native selection background ([#3222](https://github.com/skbkontur/retail-ui/issues/3222)) ([e3e4935](https://github.com/skbkontur/retail-ui/commit/e3e493523d2efd1d5b0826609180d7b16da5bba0))
1256
+ * **Dropdown:** use default button styles ([#3242](https://github.com/skbkontur/retail-ui/issues/3242)) ([ec7aa2f](https://github.com/skbkontur/retail-ui/commit/ec7aa2fcea2230a6f95420544034c610e01291a5))
1257
+ * **DropdownMenu,TooltipMenu,Kebab:** add preventIconsOffset prop ([beb6f90](https://github.com/skbkontur/retail-ui/commit/beb6f900f0e4c7c4b9e79d86f8b0066ae75b400d))
1258
+ * **Modal:** remove excessive top padding on footer ([#3236](https://github.com/skbkontur/retail-ui/issues/3236)) ([473cb0f](https://github.com/skbkontur/retail-ui/commit/473cb0fe20c5e1f6d904230367600bba37308f1f))
1259
+ * handle npm@8.5.0 publish breaking change ([80c5917](https://github.com/skbkontur/retail-ui/commit/80c5917afcdd9787e631c8bb0e64adc472593b2c))
1260
+ * **FileUploaderFile:** wrap component in forwardRef ([#3238](https://github.com/skbkontur/retail-ui/issues/3238)) ([8dd42d6](https://github.com/skbkontur/retail-ui/commit/8dd42d6adb442e43f617e76458cc04eaadc30ff2))
1261
+ * **InputLikeText:** use debounce to control async content selection ([#3218](https://github.com/skbkontur/retail-ui/issues/3218)) ([39c07d4](https://github.com/skbkontur/retail-ui/commit/39c07d43ee0e70aad99451f9a22dbbe7e276f123))
1262
+ * **Select:** add max-width on mobile ([#3210](https://github.com/skbkontur/retail-ui/issues/3210)) ([54f612c](https://github.com/skbkontur/retail-ui/commit/54f612c26a793607d435a0f45b680d1f6235664b))
1263
+
1264
+
1265
+
1266
+
1267
+
1268
+ ## [4.15.7](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.15.6...@skbkontur/react-ui@4.15.7) (2023-08-25)
1269
+
1270
+
1271
+ ### Bug Fixes
1272
+
1273
+ * **ComboBox:** remove flushSync console error for React18 ([#3253](https://github.com/skbkontur/retail-ui/issues/3253)) ([e71cbad](https://github.com/skbkontur/retail-ui/commit/e71cbad60e3c7be20ead3381b49800cda9c383f7))
1274
+ * **Input:** repair icon props ([#3248](https://github.com/skbkontur/retail-ui/issues/3248)) ([54d0349](https://github.com/skbkontur/retail-ui/commit/54d03496a834aa044314f51788048eea2af0ed58))
1275
+
1276
+
1277
+
1278
+
1279
+
1280
+ ## [4.15.6](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.15.5...@skbkontur/react-ui@4.15.6) (2023-08-02)
1281
+
1282
+ **Note:** Version bump only for package @skbkontur/react-ui
1283
+
1284
+
1285
+
1286
+
1287
+
1288
+ ## [4.15.5](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.15.4...@skbkontur/react-ui@4.15.5) (2023-08-02)
1289
+
1290
+
1291
+ ### Bug Fixes
1292
+
1293
+ * **InputLikeText:** use debounce to control async content selection ([#3226](https://github.com/skbkontur/retail-ui/issues/3226)) ([18e5947](https://github.com/skbkontur/retail-ui/commit/18e5947086f0a6b161b4fc0d40412a600131337f))
1294
+
1295
+
1296
+
1297
+
1298
+
1299
+ ## [4.15.4](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.15.3...@skbkontur/react-ui@4.15.4) (2023-07-24)
1300
+
1301
+
1302
+ ### Bug Fixes
1303
+
1304
+ * a correct republish of the previous release
1305
+
1306
+
1307
+
1308
+
1309
+
1310
+ ## [4.15.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.15.2...@skbkontur/react-ui@4.15.3) (2023-07-21)
1311
+
1312
+
1313
+ ### Bug Fixes
1314
+
1315
+ * **ComboBox,InputLikeText:** use `flushSync` only in React 18 ([#3206](https://github.com/skbkontur/retail-ui/issues/3206)) ([ee55374](https://github.com/skbkontur/retail-ui/commit/ee55374df69f797f1257d99250366770b513a096))
1316
+
1317
+
1318
+
1319
+
1320
+
1321
+ ## [4.15.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.15.1...@skbkontur/react-ui@4.15.2) (2023-07-17)
1322
+
1323
+
1324
+ * **ComboBox:** use `flushSync` only in React@18 ([#3202](https://github.com/skbkontur/retail-ui/issues/3202)) ([9795006](https://github.com/skbkontur/retail-ui/commit/9795006c799b7266fd88bb9dcf5760148c3ad12d))
1325
+ * **CurrencyInput:** allow to work with very small or large values ([#3200](https://github.com/skbkontur/retail-ui/issues/3200)) ([ffc234f](https://github.com/skbkontur/retail-ui/commit/ffc234f726479c9a26b3da5c1b768b061dbf52d1))
1326
+ * **Link, Button:** add theme variables for border-bottom ([#3203](https://github.com/skbkontur/retail-ui/issues/3203)) ([d418758](https://github.com/skbkontur/retail-ui/commit/d4187586f24d943716b24ac2cfc437e69becf53e))
1327
+
1328
+
1329
+
1330
+
1331
+
1332
+ ## [4.15.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.15.0...@skbkontur/react-ui@4.15.1) (2023-07-04)
1333
+
1334
+
1335
+ ### Bug Fixes
1336
+
1337
+ * allow use inherit as a linkColor ([#3185](https://github.com/skbkontur/retail-ui/issues/3185)) ([09218bb](https://github.com/skbkontur/retail-ui/commit/09218bb9bce9746e25b1894b9c3631e0a0b44785))
1338
+ * **ComboBox:** flushSync throws an error into console ([#3189](https://github.com/skbkontur/retail-ui/issues/3189)) ([8e0d2d2](https://github.com/skbkontur/retail-ui/commit/8e0d2d20f2bd5e5f034841a8057ce4a06012d23b))
1339
+ * **html:** get rid of type duplication ([#3188](https://github.com/skbkontur/retail-ui/issues/3188)) ([5de46a4](https://github.com/skbkontur/retail-ui/commit/5de46a4aef7728239f417c225235f9a97ec23cac))
1340
+ * **Modal.Header, Modal.Footer:** passing common props ([#3187](https://github.com/skbkontur/retail-ui/issues/3187)) ([4aa327b](https://github.com/skbkontur/retail-ui/commit/4aa327b9b457912591c57b83342e722ae0802506))
1341
+ * **theme:** add missing units to values ([#3184](https://github.com/skbkontur/retail-ui/issues/3184)) ([885a372](https://github.com/skbkontur/retail-ui/commit/885a372d8d6b5e3df3894cfee8f59ed685b0c056))
1342
+
1343
+
1344
+
1345
+
1346
+
1347
+ # [4.15.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.14.2...@skbkontur/react-ui@4.15.0) (2023-06-13)
1348
+
1349
+
1350
+ ### Bug Fixes
1351
+
1352
+ * **Button:** correct link outline position (#IF-867) ([#3132](https://github.com/skbkontur/retail-ui/issues/3132)) ([49c7842](https://github.com/skbkontur/retail-ui/commit/49c7842d5e5a6e04788d0da084346461d424a2e2)), closes [#IF-867](https://github.com/skbkontur/retail-ui/issues/IF-867)
1353
+ * **ComboBox:** use flushSync due to auto-batching in React18 ([#3144](https://github.com/skbkontur/retail-ui/issues/3144)) ([16bac3c](https://github.com/skbkontur/retail-ui/commit/16bac3c6f41c15409c23f2e3adbade630fa247ea))
1354
+ * **Link:** change color and hover color ([#3182](https://github.com/skbkontur/retail-ui/issues/3182)) ([6ed5bd4](https://github.com/skbkontur/retail-ui/commit/6ed5bd4bfe0a358b86739a72e67d09353c1a4511))
1355
+ * **Modal:** configure z-index to correctly work with other components ([#3104](https://github.com/skbkontur/retail-ui/issues/3104)) ([0532871](https://github.com/skbkontur/retail-ui/commit/05328718368c146100665f6b3aa5a03a2810b9c3))
1356
+ * **ScrollContainer:** scroll disappears after toggling disabled ([#3152](https://github.com/skbkontur/retail-ui/issues/3152)) ([f1c3444](https://github.com/skbkontur/retail-ui/commit/f1c34444d595b14dcd2d397e6a25c45d2c2bc62c))
1357
+ * **Spinner:** avoid circle clipping ([#3153](https://github.com/skbkontur/retail-ui/issues/3153)) ([80c2b59](https://github.com/skbkontur/retail-ui/commit/80c2b593da303f8e56feabc5d6d922c72a9175d7))
1358
+
1359
+
1360
+ ### Features
1361
+
1362
+ * **Button, Modal, SidePage, Switcher:** pass props for a11y ([#3163](https://github.com/skbkontur/retail-ui/issues/3163)) ([694e8d9](https://github.com/skbkontur/retail-ui/commit/694e8d97fb07842cc925cfdacc35b167fb1ff9b3))
1363
+ * **Calendar:** add new public component Calendar ([#2888](https://github.com/skbkontur/retail-ui/issues/2888)) ([d6871c5](https://github.com/skbkontur/retail-ui/commit/d6871c5ee3ed9b3b553f7a1e89da6d37ccd3d211))
1364
+
1365
+
1366
+
1367
+
1368
+
1369
+ ## [4.14.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.14.1...@skbkontur/react-ui@4.14.2) (2023-06-09)
1370
+
1371
+
1372
+ ### Bug Fixes
1373
+
1374
+ * **Button, Input, Kebab:** resize icons according to control's size ([#3183](https://github.com/skbkontur/retail-ui/issues/3183)) ([7dd6e9f](https://github.com/skbkontur/retail-ui/commit/7dd6e9fb0e5899f8fd092888082fd88c2e0e781f))
1375
+
1376
+
1377
+
1378
+
1379
+
1380
+ ## [4.14.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.14.0...@skbkontur/react-ui@4.14.1) (2023-06-03)
1381
+
1382
+
1383
+ ### Bug Fixes
1384
+
1385
+ * **Input:** fix too long `prefix` & missing `placeholder` ([#3170](https://github.com/skbkontur/retail-ui/issues/3170)) ([ab31f22](https://github.com/skbkontur/retail-ui/commit/ab31f2248f1cadeb544b4711f024227d6da64a6a))
1386
+
1387
+
1388
+
1389
+
1390
+
1391
+ # [4.14.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.13.4...@skbkontur/react-ui@4.14.0) (2023-05-30)
1392
+
1393
+
1394
+ ### Bug Fixes
1395
+
1396
+ * **ComboBox:** set as=div for MenuMessage ([#3162](https://github.com/skbkontur/retail-ui/issues/3162)) ([87a84b6](https://github.com/skbkontur/retail-ui/commit/87a84b67ebe79711f3fbad39566575343da73847))
1397
+
1398
+
1399
+ ### Features
1400
+
1401
+ * **Input:** support new types (#IF-290) ([#3129](https://github.com/skbkontur/retail-ui/issues/3129)) ([c478aab](https://github.com/skbkontur/retail-ui/commit/c478aab0f2198bdadc22f8a6c726534f87270454)), closes [#IF-290](https://github.com/skbkontur/retail-ui/issues/IF-290)
1402
+ * **theme:** add full support for THEME_2022 ([#3045](https://github.com/skbkontur/retail-ui/issues/3045)) ([6dac5a4](https://github.com/skbkontur/retail-ui/commit/6dac5a49c4c8aed6fcd8a83ce6fd65d7da211690))
1403
+
1404
+
1405
+
1406
+
1407
+
1408
+ ## [4.13.4](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.13.3...@skbkontur/react-ui@4.13.4) (2023-04-14)
1409
+
1410
+
1411
+ ### Bug Fixes
1412
+
1413
+ * **Modal,SidePage:** use safety `globalThat` instead of `global` ([#3142](https://github.com/skbkontur/retail-ui/issues/3142)) ([89df16d](https://github.com/skbkontur/retail-ui/commit/89df16db457455ea70c1c9128d17fedb6b503bf8))
1414
+
1415
+
1416
+
1417
+
1418
+
1419
+ ## [4.13.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.13.2...@skbkontur/react-ui@4.13.3) (2023-04-12)
1420
+
1421
+
1422
+ ### Bug Fixes
1423
+
1424
+ * **Hint,Tooltip:** support multiple mount/unmount (React18DevStrictMode) ([f86f3ee](https://github.com/skbkontur/retail-ui/commit/f86f3eeeed608a9abb305f226f227647c258a49c))
1425
+ * **Paging:** global styles may cause circles to shrink ([#3128](https://github.com/skbkontur/retail-ui/issues/3128)) ([063201a](https://github.com/skbkontur/retail-ui/commit/063201a51924901c6a01b2fd565290b0ea2f657c))
1426
+
1427
+
1428
+
1429
+
1430
+
1431
+ ## [4.13.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.13.1...@skbkontur/react-ui@4.13.2) (2023-03-24)
1432
+
1433
+
1434
+ ### Bug Fixes
1435
+
1436
+ * **SidePage:** remove 2nd HBVS which blocks scrolling ([#3121](https://github.com/skbkontur/retail-ui/issues/3121)) ([25fbcc0](https://github.com/skbkontur/retail-ui/commit/25fbcc0c0c7fc2b645c4848337fc519f433ca141))
1437
+ * **TokenInput:** remove empty tokens on paste ([#3124](https://github.com/skbkontur/retail-ui/issues/3124)) ([a326d92](https://github.com/skbkontur/retail-ui/commit/a326d92e1578e0e901b91c38ecbfc27c9a23b231))
1438
+
1439
+
1440
+
1441
+
1442
+
1443
+ ## [4.13.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.13.0...@skbkontur/react-ui@4.13.1) (2023-03-10)
1444
+
1445
+
1446
+ ### Bug Fixes
1447
+
1448
+ * **MenuMessage:** pass ref ([#3113](https://github.com/skbkontur/retail-ui/issues/3113)) ([3864e08](https://github.com/skbkontur/retail-ui/commit/3864e08017a0f88309ec3e6cb86304e4508c124c))
1449
+
1450
+
1451
+
1452
+
1453
+
1454
+ # [4.13.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.12.0...@skbkontur/react-ui@4.13.0) (2023-03-02)
1455
+
1456
+
1457
+ ### Features
1458
+
1459
+ * **ScrollContainer:** add `hideScrollBar` prop ([#3106](https://github.com/skbkontur/retail-ui/issues/3106)) ([609739b](https://github.com/skbkontur/retail-ui/commit/609739b8cc8586bd32b37de9d96dc8288ea8aff4))
1460
+ * add aria-describedby attribute to elements ([#3094](https://github.com/skbkontur/retail-ui/issues/3094)) ([8f37e81](https://github.com/skbkontur/retail-ui/commit/8f37e817b86cee94fca5e7f37a8fdcb9928f289e))
1461
+ * **ComboBox, DateInput, DatePicker:** propagate disabled attribute to native input ([#3082](https://github.com/skbkontur/retail-ui/issues/3082)) ([f18dc78](https://github.com/skbkontur/retail-ui/commit/f18dc78731ee769288720b058126717c3798a7ae))
1462
+ * **RadioGroup:** add roles for a11y ([#3096](https://github.com/skbkontur/retail-ui/issues/3096)) ([069b588](https://github.com/skbkontur/retail-ui/commit/069b58860e1254da1818bd28d3a17ecba334a702))
1463
+
1464
+
1465
+
1466
+
1467
+
1468
+ # [4.12.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.11.0...@skbkontur/react-ui@4.12.0) (2023-02-01)
1469
+
1470
+
1471
+ ### Bug Fixes
1472
+
1473
+ * **Toast:** add `showTime` arg to the `push` method ([#3062](https://github.com/skbkontur/retail-ui/issues/3062)) ([e4196da](https://github.com/skbkontur/retail-ui/commit/e4196da2e6c1b39d9cb73fe5352b5a5d7d9d79a6))
1474
+
1475
+
1476
+ ### Features
1477
+
1478
+ * **Autocomplete,Select,ComboBox:** new design of mobile popups ([#3019](https://github.com/skbkontur/retail-ui/issues/3019)) ([c8e4d9a](https://github.com/skbkontur/retail-ui/commit/c8e4d9a4c9adcd4b504b866b4fb2eea9920c6db6))
1479
+ * **Dropdown:** add prop `menuPos` for manual control ([#3099](https://github.com/skbkontur/retail-ui/issues/3099)) ([a215cec](https://github.com/skbkontur/retail-ui/commit/a215cecb58a4344fca4096c7a164430cfef3722c))
1480
+
1481
+
1482
+
1483
+
1484
+
1485
+ # [4.11.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.10.0...@skbkontur/react-ui@4.11.0) (2023-01-13)
1486
+
1487
+
1488
+ ### Bug Fixes
1489
+
1490
+ * **Modal:** forced scroll on mobile devices ([#3070](https://github.com/skbkontur/retail-ui/issues/3070)) ([a6262de](https://github.com/skbkontur/retail-ui/commit/a6262ded4a727f63fb15a800e432669d27a01df9))
1491
+ * **ThemeFactory:** correct `overrideDefaultTheme` method ([#3073](https://github.com/skbkontur/retail-ui/issues/3073)) ([9f9b31e](https://github.com/skbkontur/retail-ui/commit/9f9b31ea961de245b8de1d6986359a918db8f739))
1492
+
1493
+
1494
+ ### Features
1495
+
1496
+ * **ComboBox,DatePicker,Select,Autocomplete:** new prop menuPos ([#3076](https://github.com/skbkontur/retail-ui/issues/3076)) ([5e59286](https://github.com/skbkontur/retail-ui/commit/5e5928641ea7e5b5faf5fffffbfa26459882a9e3))
1497
+
1498
+
1499
+
1500
+
1501
+
1502
+ # [4.10.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.9.2...@skbkontur/react-ui@4.10.0) (2022-12-22)
1503
+
1504
+
1505
+ ### Features
1506
+
1507
+ * **Menu:** add theme variable `menuOffsetY` ([#3078](https://github.com/skbkontur/retail-ui/issues/3078)) ([75c0637](https://github.com/skbkontur/retail-ui/commit/75c0637565a13bad2eed7b0d0e1490784011c08d))
1508
+
1509
+
1510
+
1511
+
1512
+
1513
+ ## [4.9.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.9.1...@skbkontur/react-ui@4.9.2) (2022-12-12)
1514
+
1515
+
1516
+ ### Bug Fixes
1517
+
1518
+ * **FileUploader:** validation tooltip position ([#3055](https://github.com/skbkontur/retail-ui/issues/3055)) ([c66886a](https://github.com/skbkontur/retail-ui/commit/c66886aeaed8d8c0cae59435cf5509ba8151c358))
1519
+ * **SidePage:** return cross icon on mobile ([#3057](https://github.com/skbkontur/retail-ui/issues/3057)) ([7e29a08](https://github.com/skbkontur/retail-ui/commit/7e29a081feb018704e283e2c39f710d484fa8a35))
1520
+
1521
+
1522
+
1523
+
1524
+
1525
+ ## [4.9.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.9.0...@skbkontur/react-ui@4.9.1) (2022-12-06)
1526
+
1527
+
1528
+ ### Bug Fixes
1529
+
1530
+ * **icons:** add aria-hidden attribute ([#3048](https://github.com/skbkontur/retail-ui/issues/3048)) ([4d2f69b](https://github.com/skbkontur/retail-ui/commit/4d2f69bb08ee00a1798688985013af02d7313b35))
1531
+ * **ResponsiveLayout:** configure to work with SSR ([#3052](https://github.com/skbkontur/retail-ui/issues/3052)) ([bd36596](https://github.com/skbkontur/retail-ui/commit/bd365967948b4d5dc525bb8a30c22312b90bc0ce))
1532
+ * **ScrollContainer:** add `offsetY`/`offsetX` props to scrollbar ([#3054](https://github.com/skbkontur/retail-ui/issues/3054)) ([57a5728](https://github.com/skbkontur/retail-ui/commit/57a57288661ed96bb5380eaf040699a7391fc81b))
1533
+ * **Switcher:** fix keyboard navigation with disabled items ([#3049](https://github.com/skbkontur/retail-ui/issues/3049)) ([d314d94](https://github.com/skbkontur/retail-ui/commit/d314d94d10601039973eeb20b853cc8923e1915a))
1534
+
1535
+
1536
+
1537
+
1538
+
1539
+ # [4.9.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.8.0...@skbkontur/react-ui@4.9.0) (2022-11-25)
1540
+
1541
+
1542
+ ### Bug Fixes
1543
+
1544
+ * **RadioGroup,Select,Tabs:** types inference: fix generics usage ([#3033](https://github.com/skbkontur/retail-ui/issues/3033)) ([f13cab1](https://github.com/skbkontur/retail-ui/commit/f13cab1f68f2284cc7ce9fd18ae7d50f99606e13))
1545
+ * **Switcher:** deliver `corners` to `Button` when using `renderItem` ([#3046](https://github.com/skbkontur/retail-ui/issues/3046)) ([23f6f99](https://github.com/skbkontur/retail-ui/commit/23f6f995a0fe2de0013719755d09f423c3d4200e))
1546
+ * export ColorFunctions and DimensionFunctions ([#3043](https://github.com/skbkontur/retail-ui/issues/3043)) ([b3f2c24](https://github.com/skbkontur/retail-ui/commit/b3f2c242fa07f5d7e11dad292bf34e86c932ef9d))
1547
+
1548
+
1549
+ ### Features
1550
+
1551
+ * **SidePage.Footer, Modal.Footer:** add prop `gap` ([#3024](https://github.com/skbkontur/retail-ui/issues/3024)) ([2bf7665](https://github.com/skbkontur/retail-ui/commit/2bf7665e9a6868de5ccfb5dc0eac5630024b5762))
1552
+ * **Switcher:** add `renderItem` prop ([#3021](https://github.com/skbkontur/retail-ui/issues/3021)) ([2e6e2a9](https://github.com/skbkontur/retail-ui/commit/2e6e2a907673482cb5678e4ae7e88bfd37b60eee))
1553
+
1554
+
1555
+
1556
+
1557
+
1558
+ # [4.8.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.7.0...@skbkontur/react-ui@4.8.0) (2022-11-09)
1559
+
1560
+
1561
+ ### Bug Fixes
1562
+
1563
+ * **CurrencyInput:** clearing value ([#3025](https://github.com/skbkontur/retail-ui/issues/3025)) ([b30a14f](https://github.com/skbkontur/retail-ui/commit/b30a14f844af0cee0bc8837ff5468a6cede88531))
1564
+ * **MenuItem:** icon offset in mobile version ([#3010](https://github.com/skbkontur/retail-ui/issues/3010)) ([6494538](https://github.com/skbkontur/retail-ui/commit/649453816fd86b937590722deadafb9533446bd4))
1565
+
1566
+
1567
+ ### Features
1568
+
1569
+ * **Switcher:** add buttonProps field to items ([#3017](https://github.com/skbkontur/retail-ui/issues/3017)) ([25c330e](https://github.com/skbkontur/retail-ui/commit/25c330e7020dcd6f58f3e083ddc73bff97ad178c))
1570
+
1571
+
1572
+
1573
+
1574
+
1575
+ # [4.7.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.6.1...@skbkontur/react-ui@4.7.0) (2022-10-31)
1576
+
1577
+
1578
+ ### Bug Fixes
1579
+
1580
+ * **FileUploader:** new prop size, remove min-width ([#2961](https://github.com/skbkontur/retail-ui/issues/2961)) ([841aa48](https://github.com/skbkontur/retail-ui/commit/841aa48d70258844986b862ac6aba9f32cee3042))
1581
+ * **Hint:** text alignment at bottom center and top center positions ([#3009](https://github.com/skbkontur/retail-ui/issues/3009)) ([7c26321](https://github.com/skbkontur/retail-ui/commit/7c263214ee6cc88ff370da33d50e9ca44a6523f2))
1582
+ * **Paging:** visual appearance of disabled state ([#3020](https://github.com/skbkontur/retail-ui/issues/3020)) ([801d630](https://github.com/skbkontur/retail-ui/commit/801d630883f2d3f7723a3ddd32cd9270f96a185f))
1583
+ * **Select:** restore work of onFocus, onBlur and ref props ([#3000](https://github.com/skbkontur/retail-ui/issues/3000)) ([72600b6](https://github.com/skbkontur/retail-ui/commit/72600b61c59417f3f170d4c319e843759071df42))
1584
+ * **toggle:** improve a11y of toggle component ([#3014](https://github.com/skbkontur/retail-ui/issues/3014)) ([e7d97df](https://github.com/skbkontur/retail-ui/commit/e7d97dfa419051bb542e2538bfa6cc85d69826e9))
1585
+
1586
+
1587
+ ### Features
1588
+
1589
+ * **ComboBox:** add prop `itemWrapper` ([#3016](https://github.com/skbkontur/retail-ui/issues/3016)) ([bdb48bb](https://github.com/skbkontur/retail-ui/commit/bdb48bbfa425e743ebbafb4f0d079b0979ccdee7))
1590
+
1591
+
1592
+
1593
+
1594
+
1595
+ ## [4.6.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.6.0...@skbkontur/react-ui@4.6.1) (2022-10-06)
1596
+
1597
+
1598
+ ### Bug Fixes
1599
+
1600
+ * **Combobox:** fix list display logic when using "add" button ([#2999](https://github.com/skbkontur/retail-ui/issues/2999)) ([a48d69e](https://github.com/skbkontur/retail-ui/commit/a48d69e152f28af6ec82ee43f5f7808f69186710))
1601
+
1602
+
1603
+ ### Reverts
1604
+
1605
+ * Revert "feat(SidePage): update layout on resize SidePageBody (#3007)" (#3011) ([ff11a24](https://github.com/skbkontur/retail-ui/commit/ff11a24d1056c5e818125e4eb2fe871fb59800b2)), closes [#3007](https://github.com/skbkontur/retail-ui/issues/3007) [#3011](https://github.com/skbkontur/retail-ui/issues/3011)
1606
+
1607
+
1608
+
1609
+
1610
+
1611
+ # [4.6.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.5.3...@skbkontur/react-ui@4.6.0) (2022-10-04)
1612
+
1613
+
1614
+ ### Bug Fixes
1615
+
1616
+ * **DropdownMenu:** apply MenuSeparator instead css ([#2997](https://github.com/skbkontur/retail-ui/issues/2997)) ([a56844f](https://github.com/skbkontur/retail-ui/commit/a56844f2c1b1610f3cc8660ffab8e3a286afe96d))
1617
+ * **Input:** repair selectAll if value is less than mask ([#2996](https://github.com/skbkontur/retail-ui/issues/2996)) ([3f28bf1](https://github.com/skbkontur/retail-ui/commit/3f28bf1cc9e8c1a57110c60099762f9338690377))
1618
+ * **isNullable:** error in types ([#3005](https://github.com/skbkontur/retail-ui/issues/3005)) ([f6a4411](https://github.com/skbkontur/retail-ui/commit/f6a4411f72aac17a8b887d3ef8287747099f6be8))
1619
+
1620
+
1621
+ ### Features
1622
+
1623
+ * **CurrencyLabel:** new prop 'hideTrailingZeros' ([#2994](https://github.com/skbkontur/retail-ui/issues/2994)) ([57c3e3a](https://github.com/skbkontur/retail-ui/commit/57c3e3af9c52f7ad896b67e45e6a3391cdefbd5c))
1624
+ * **MenuItem:** add rel attribute ([#2998](https://github.com/skbkontur/retail-ui/issues/2998)) ([80f022d](https://github.com/skbkontur/retail-ui/commit/80f022d23c999b9bd3c2e1c3c121890a1d35e067))
1625
+ * **SidePage:** add callback for tracking completely opened state ([#3003](https://github.com/skbkontur/retail-ui/issues/3003)) ([dab9738](https://github.com/skbkontur/retail-ui/commit/dab97382c700079513ccd739de2dcf87807cb00a))
1626
+ * **SidePage:** update layout on resize SidePageBody ([#3004](https://github.com/skbkontur/retail-ui/issues/3004)) ([09445e2](https://github.com/skbkontur/retail-ui/commit/09445e2a6412b1f20f9e44a7ebd780dde15e740c))
1627
+ * **SidePage:** update layout on resize SidePageBody ([#3007](https://github.com/skbkontur/retail-ui/issues/3007)) ([1888bf9](https://github.com/skbkontur/retail-ui/commit/1888bf9f214eb5ce58c2ea72a6f4318e28996b78))
1628
+
1629
+
1630
+
1631
+
1632
+
1633
+ ## [4.5.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.5.2...@skbkontur/react-ui@4.5.3) (2022-09-12)
1634
+
1635
+
1636
+ ### Bug Fixes
1637
+
1638
+ * **Select:** use input's background color ([#2978](https://github.com/skbkontur/retail-ui/issues/2978)) ([560ad55](https://github.com/skbkontur/retail-ui/commit/560ad55f7fe1fa8459e875fdf6bec58bb4658930))
1639
+
1640
+
1641
+
1642
+
1643
+
1644
+ ## [4.5.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.5.1...@skbkontur/react-ui@4.5.2) (2022-09-09)
1645
+
1646
+
1647
+ ### Bug Fixes
1648
+
1649
+ * **Hint,Tooltip,Tab:** process children with imperative handles correctly ([#2939](https://github.com/skbkontur/retail-ui/issues/2939)) ([7958543](https://github.com/skbkontur/retail-ui/commit/7958543d80982f5cce9831d19e6feaa9f15c1cc1))
1650
+ * **ZIndex:** update zIndex style if priority/delta props are updated ([#2942](https://github.com/skbkontur/retail-ui/issues/2942)) ([93a667a](https://github.com/skbkontur/retail-ui/commit/93a667a9619a280b0ab0e050a61a9de7a9f7e0a9))
1651
+
1652
+
1653
+
1654
+
1655
+
1656
+ ## [4.5.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.5.0...@skbkontur/react-ui@4.5.1) (2022-08-29)
1657
+
1658
+
1659
+ ### Bug Fixes
1660
+
1661
+ * **Radio:** fix text gap when radio is inside table ([#2983](https://github.com/skbkontur/retail-ui/issues/2983)) ([e546e4d](https://github.com/skbkontur/retail-ui/commit/e546e4d69b0896e36319e636310f988ebb854106))
1662
+
1663
+
1664
+
1665
+
1666
+
1667
+ # [4.5.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.4.0...@skbkontur/react-ui@4.5.0) (2022-08-24)
1668
+
1669
+
1670
+ ### Bug Fixes
1671
+
1672
+ * **Input:** restore background-clip in focus state ([#2986](https://github.com/skbkontur/retail-ui/issues/2986)) ([5a10fd8](https://github.com/skbkontur/retail-ui/commit/5a10fd84233fe8edcc6cc42cd4ddc6f754512779))
1673
+ * **react-ui:** add inputFocusedBg and inputFocusedIconColor variables ([#2981](https://github.com/skbkontur/retail-ui/issues/2981)) ([9bc3f9c](https://github.com/skbkontur/retail-ui/commit/9bc3f9c6a8b3c5aa7f166008b9b1191537e648d6))
1674
+ * **TokenInput:** fix some scenarios with disabled input and tokens ([#2943](https://github.com/skbkontur/retail-ui/issues/2943)) ([64c999c](https://github.com/skbkontur/retail-ui/commit/64c999c942357011c0695701e43911bdfdc52559))
1675
+ * **ValidationContainer:** fix scroll to invalid field on submit ([#2930](https://github.com/skbkontur/retail-ui/issues/2930)) ([c2b966b](https://github.com/skbkontur/retail-ui/commit/c2b966bc8f2fcaac63e377e4d98669a14de610c3))
1676
+
1677
+
1678
+ ### Features
1679
+
1680
+ * **ResponsiveLayout,useResponsiveLayout:** custom media queries ([#2957](https://github.com/skbkontur/retail-ui/issues/2957)) ([7befaf9](https://github.com/skbkontur/retail-ui/commit/7befaf9d9222c95d99150aba37988cec9a5b0326))
1681
+
1682
+
1683
+
1684
+
1685
+
1686
+ # [4.4.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.3.1...@skbkontur/react-ui@4.4.0) (2022-08-16)
1687
+
1688
+ **Note:** Version bump due significan refactoring
1689
+
1690
+
1691
+
1692
+
1693
+
1694
+ ## [4.3.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.3.0...@skbkontur/react-ui@4.3.1) (2022-08-11)
1695
+
1696
+
1697
+ ### Bug Fixes
1698
+
1699
+ * **CurrencyInput:** add support comma aliases ([#2974](https://github.com/skbkontur/retail-ui/issues/2974)) ([82bf20b](https://github.com/skbkontur/retail-ui/commit/82bf20b4b5bedc9d24d5f8f8070ee4d598a67287))
1700
+ * **HideBodyVerticalScroll:** add support `html.overflow-y=scroll` ([#2971](https://github.com/skbkontur/retail-ui/issues/2971)) ([b97fd42](https://github.com/skbkontur/retail-ui/commit/b97fd4242972ab2794a6127a122419425cce2406))
1701
+ * **MaskedInput:** support the case where users unmasked the value ([#2975](https://github.com/skbkontur/retail-ui/issues/2975)) ([8d6bf52](https://github.com/skbkontur/retail-ui/commit/8d6bf52654858d5ab29acdf7ebe1a4944adb0c7a))
1702
+ * **Popup:** accept SVG as anchor ([#2946](https://github.com/skbkontur/retail-ui/issues/2946)) ([a5f7283](https://github.com/skbkontur/retail-ui/commit/a5f72836dd0d31d4a109ac2bb0d6d6a4e3109d19))
1703
+ * **theme:** add missing units to values ([#2968](https://github.com/skbkontur/retail-ui/issues/2968)) ([b79f626](https://github.com/skbkontur/retail-ui/commit/b79f6264cd9af4ffd21ea3c57d5f849be9504409))
1704
+ * **Tooltip:** add event arg to onCloseRequest prop ([#2966](https://github.com/skbkontur/retail-ui/issues/2966)) ([6bc3c81](https://github.com/skbkontur/retail-ui/commit/6bc3c81a61593af7aaef9eedf7332638cc459896))
1705
+
1706
+
1707
+
1708
+
1709
+
1710
+ # [4.3.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.2.2...@skbkontur/react-ui@4.3.0) (2022-08-01)
1711
+
1712
+
1713
+ ### Bug Fixes
1714
+
1715
+ * apply hover/active styles only with enabled element ([#2955](https://github.com/skbkontur/retail-ui/issues/2955)) ([60c6bb1](https://github.com/skbkontur/retail-ui/commit/60c6bb14511d882c1b7e739cdae501d45f41438b))
1716
+ * **Select:** preserve icon gap with box-sizing: border-box ([#2962](https://github.com/skbkontur/retail-ui/issues/2962)) ([699bf97](https://github.com/skbkontur/retail-ui/commit/699bf97b8ce210d8ae9b9985807000b13d0d373b))
1717
+
1718
+
1719
+ ### Features
1720
+
1721
+ * make props with default values truly optional in types ([72d02d5](https://github.com/skbkontur/retail-ui/commit/72d02d511a6ca0ea1a3569942f8cbde2f4c07d25))
1722
+
1723
+
1724
+
1725
+
1726
+
1727
+ ## [4.2.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.2.1...@skbkontur/react-ui@4.2.2) (2022-07-25)
1728
+
1729
+
1730
+ ### Bug Fixes
1731
+
1732
+ * **Modal:** fix paddings flickering ([#2949](https://github.com/skbkontur/retail-ui/issues/2949)) ([d81d152](https://github.com/skbkontur/retail-ui/commit/d81d152e409b3af8cccd9e0f9af9105c8336a2ec))
1733
+ * **Tooltip:** correct focus&hover trigger behavior ([#2960](https://github.com/skbkontur/retail-ui/issues/2960)) ([9e3ddaa](https://github.com/skbkontur/retail-ui/commit/9e3ddaa6dab1fd4e2ba052be253c117982b74a2c)), closes [#2941](https://github.com/skbkontur/retail-ui/issues/2941)
1734
+ * **TooltipMenu:** prevent double scroll ([#2950](https://github.com/skbkontur/retail-ui/issues/2950)) ([42b3f2f](https://github.com/skbkontur/retail-ui/commit/42b3f2f363141ccc1e3b5526cbeab1bc8b5073be))
1735
+
1736
+
1737
+
1738
+
1739
+
1740
+ ## [4.2.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.2.0...@skbkontur/react-ui@4.2.1) (2022-07-18)
1741
+
1742
+
1743
+ ### Bug Fixes
1744
+
1745
+ * **ResponsiveLayout:** fix memory leak ([#2948](https://github.com/skbkontur/retail-ui/issues/2948)) ([29e3243](https://github.com/skbkontur/retail-ui/commit/29e3243f388588e9945da3b1079f4aa2f8a2b0fc))
1746
+ * **Tooltip:** fix click outside detection ([#2941](https://github.com/skbkontur/retail-ui/issues/2941)) ([3a560bb](https://github.com/skbkontur/retail-ui/commit/3a560bb9021b796cf72c5c2a54f09f71b339e029))
1747
+
1748
+
1749
+
1750
+
1751
+
1752
+ # [4.2.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.1.2...@skbkontur/react-ui@4.2.0) (2022-07-12)
1753
+
1754
+
1755
+ ### Bug Fixes
1756
+
1757
+ * allow CurrencyInput work with string value (master) ([#2885](https://github.com/skbkontur/retail-ui/issues/2885)) ([227023a](https://github.com/skbkontur/retail-ui/commit/227023aa5dcecc7cab386d8f323ce390fda97e57))
1758
+ * warnings and mistakes in propTypes ([#2911](https://github.com/skbkontur/retail-ui/issues/2911)) ([74b1071](https://github.com/skbkontur/retail-ui/commit/74b1071d320998081b8ad0d30155867072d003a0))
1759
+ * **Button:** preserve icon gap with box-sizing: border-box ([#2928](https://github.com/skbkontur/retail-ui/issues/2928)) ([a244b39](https://github.com/skbkontur/retail-ui/commit/a244b39d19dde125a061cf9c4a73ae9ef2b0e494))
1760
+
1761
+
1762
+ ### Features
1763
+
1764
+ * add export data-tids ([#2900](https://github.com/skbkontur/retail-ui/issues/2900)) ([627e841](https://github.com/skbkontur/retail-ui/commit/627e84104cf0b289fcb05d6f73afae4baf38856c))
1765
+ * add toKey into RadioGroup ([#2929](https://github.com/skbkontur/retail-ui/issues/2929)) ([45a2697](https://github.com/skbkontur/retail-ui/commit/45a2697139de96233c0c8570b378178b6d59d11e))
1766
+
1767
+
1768
+
1769
+
1770
+
1771
+ ## [4.1.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.1.1...@skbkontur/react-ui@4.1.2) (2022-06-27)
1772
+
1773
+
1774
+ ### Bug Fixes
1775
+
1776
+ * **Checkbox:** fix checking with pressed shift ([#2894](https://github.com/skbkontur/retail-ui/issues/2894)) ([2a3ee39](https://github.com/skbkontur/retail-ui/commit/2a3ee395bcc2844abdf992c9e594ea3ec2d0f593))
1777
+ * **dateinput:** don`t allow to enter incorrect dates from keyboard ([#2861](https://github.com/skbkontur/retail-ui/issues/2861)) ([d7bc564](https://github.com/skbkontur/retail-ui/commit/d7bc564789cd5a8353d01c5dbab58bfa06132fb2))
1778
+ * **PasswordInput:** focus input after clicking on the eye icon ([#2892](https://github.com/skbkontur/retail-ui/issues/2892)) ([350e0df](https://github.com/skbkontur/retail-ui/commit/350e0df18fabd4e42589b111f620bb4d4feee68d))
1779
+ * **Select:** button border-radius with custom select theme ([#2896](https://github.com/skbkontur/retail-ui/issues/2896)) ([a0fd12e](https://github.com/skbkontur/retail-ui/commit/a0fd12ed599b9deb8db42c2b3e053601a47a94fa))
1780
+
1781
+
1782
+ ### Features
1783
+
1784
+ * **tokeninput:** add renderTotalCount and totalCount props ([#2887](https://github.com/skbkontur/retail-ui/issues/2887)) ([e745f07](https://github.com/skbkontur/retail-ui/commit/e745f07f6524df4b1810aa1de304363f249d80c7))
1785
+
1786
+
1787
+
1788
+
1789
+
1790
+ ## [4.1.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.1.0...@skbkontur/react-ui@4.1.1) (2022-06-15)
1791
+
1792
+
1793
+ ### Bug Fixes
1794
+
1795
+ * **MaskedInput:** accept null as value ([#2902](https://github.com/skbkontur/retail-ui/issues/2902)) ([e3414eb](https://github.com/skbkontur/retail-ui/commit/e3414ebfd3934995c415c68df44bb5afd9ecd8c2))
1796
+ * **rootNode:** enable findDOMNode fallback again ([1421484](https://github.com/skbkontur/retail-ui/commit/1421484076c389a16ae9d92199b0c2f60434e67f)), closes [#2873](https://github.com/skbkontur/retail-ui/issues/2873) [#2895](https://github.com/skbkontur/retail-ui/issues/2895)
1797
+ * **storybook:** StoryFn.story deprecated annotation ([#2798](https://github.com/skbkontur/retail-ui/issues/2798)) ([4c2bd8a](https://github.com/skbkontur/retail-ui/commit/4c2bd8ae93dc8e4a79f25de5baefe7a7c85b0b41))
1798
+ * **Tabs:** active tab underline ([839043d](https://github.com/skbkontur/retail-ui/commit/839043d5a78eda18ddba9610134fb4955a91dd43))
1799
+ * **TooltipMenu:** add onClose/onOpen props ([#2890](https://github.com/skbkontur/retail-ui/issues/2890)) ([92d4888](https://github.com/skbkontur/retail-ui/commit/92d48880c8feec11a00c8641c59e839a84e31fd2))
1800
+
1801
+
1802
+
1803
+
1804
+
1805
+ # [4.1.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.0.6...@skbkontur/react-ui@4.1.0) (2022-05-04)
1806
+
1807
+
1808
+ ### Bug Fixes
1809
+
1810
+ * **Paging:** add prop shouldBeVisibleWithLessThanTwoPages, true by default ([#2778](https://github.com/skbkontur/retail-ui/issues/2778)) ([d19c839](https://github.com/skbkontur/retail-ui/commit/d19c839e4a430ba6ef07ef87242b4a82a37a2dbc))
1811
+ * **Paging:** fix border-radius of long links ([#2765](https://github.com/skbkontur/retail-ui/issues/2765)) ([576dcb9](https://github.com/skbkontur/retail-ui/commit/576dcb9de546eebd7309309fb8144d0a57cb778c))
1812
+ * **PasswordInput:** disable eye along with Input & hide password on blur ([#2766](https://github.com/skbkontur/retail-ui/issues/2766)) ([b280ea4](https://github.com/skbkontur/retail-ui/commit/b280ea4a870c6d786700635d37efb92933ff79f5))
1813
+ * **Select:** add menuBorderRadius theme var ([#2864](https://github.com/skbkontur/retail-ui/issues/2864)) ([d7d7827](https://github.com/skbkontur/retail-ui/commit/d7d78271b7945bd22ccbf6a4ff78a3ad61d5041a))
1814
+
1815
+
1816
+ ### Features
1817
+
1818
+ * new themes (THEME_2022, THEME_2022_DARK) ([#2880](https://github.com/skbkontur/retail-ui/issues/2880)) ([c4b4615](https://github.com/skbkontur/retail-ui/commit/c4b4615db11b4dfe13efdbaba31e6a29a0305ab1))
1819
+
1820
+
1821
+
1822
+
1823
+
1824
+ ## [4.0.6](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.0.5...@skbkontur/react-ui@4.0.6) (2022-04-25)
1825
+
1826
+
1827
+ ### Bug Fixes
1828
+
1829
+ * **Button:** add btnLinkActiveColor theme var ([#2871](https://github.com/skbkontur/retail-ui/issues/2871)) ([0588d56](https://github.com/skbkontur/retail-ui/commit/0588d5699d07668aeb0ba25bece9fb95ea2ca89e))
1830
+ * **Popup:** use content container as rootNode instead of anchorElement ([4eed6a0](https://github.com/skbkontur/retail-ui/commit/4eed6a06eaee691a3f2e0c8e474dc9a5b139ac5b))
1831
+ * **select:** prevent calling areValuesEqual with null ([#2847](https://github.com/skbkontur/retail-ui/issues/2847)) ([52a03b5](https://github.com/skbkontur/retail-ui/commit/52a03b5ee541d129716a8690a60f070ae4617bec)), closes [#1927](https://github.com/skbkontur/retail-ui/issues/1927)
1832
+ * **Tooltip:** don't render without content on mobiles ([#2877](https://github.com/skbkontur/retail-ui/issues/2877)) ([#2878](https://github.com/skbkontur/retail-ui/issues/2878)) ([396be08](https://github.com/skbkontur/retail-ui/commit/396be087ca7be38eb425d1c3a5262838fdb2749c))
1833
+
1834
+
1835
+ ### Reverts
1836
+
1837
+ * Revert "fix(SidePage): change scroll behavior according to Guides (#2756)" (#2874) ([6e4eb1a](https://github.com/skbkontur/retail-ui/commit/6e4eb1af176a1ed668beb63a0e132c69ba3bfdde)), closes [#2756](https://github.com/skbkontur/retail-ui/issues/2756) [#2874](https://github.com/skbkontur/retail-ui/issues/2874)
1838
+
1839
+
1840
+
1841
+
1842
+
1843
+ ## [4.0.5](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.0.4...@skbkontur/react-ui@4.0.5) (2022-04-12)
1844
+
1845
+
1846
+ ### Bug Fixes
1847
+
1848
+ * **DatePicker:** fix focus and fragments selection ([#2858](https://github.com/skbkontur/retail-ui/issues/2858)) ([ec4499e](https://github.com/skbkontur/retail-ui/commit/ec4499e444fead65fcaeb703e129ee3adb0f6fe4)), closes [#2614](https://github.com/skbkontur/retail-ui/issues/2614)
1849
+
1850
+
1851
+
1852
+
1853
+
1854
+ ## [4.0.4](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.0.3...@skbkontur/react-ui@4.0.4) (2022-04-01)
1855
+
1856
+
1857
+ ### Bug Fixes
1858
+
1859
+ * **Tooltip:** do not call onOpen after close ([#2848](https://github.com/skbkontur/retail-ui/issues/2848)) ([a3e0772](https://github.com/skbkontur/retail-ui/commit/a3e07728e9ed25b48afcc5a995acfbb7f5d7c93a))
1860
+ * corrected ThemeFactory.overrideDefaultTheme ([#2845](https://github.com/skbkontur/retail-ui/issues/2845)) ([2cc964f](https://github.com/skbkontur/retail-ui/commit/2cc964f5a7f052a442893e1312de1cf9115e131f))
1861
+
1862
+
1863
+
1864
+
1865
+
1866
+ ## [4.0.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.0.2...@skbkontur/react-ui@4.0.3) (2022-03-22)
1867
+
1868
+
1869
+ ### Bug Fixes
1870
+
1871
+ * **SidePage:** fix animation styles ([#2837](https://github.com/skbkontur/retail-ui/issues/2837)) ([2eeebb0](https://github.com/skbkontur/retail-ui/commit/2eeebb00fb651da8062d6b672f8bd71ae0fa7587))
1872
+
1873
+
1874
+
1875
+
1876
+
1877
+ ## [4.0.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.0.1...@skbkontur/react-ui@4.0.2) (2022-03-22)
1878
+
1879
+
1880
+ ### Bug Fixes
1881
+
1882
+ * **Button:** use default prop when "use"={null} ([#2833](https://github.com/skbkontur/retail-ui/issues/2833)) ([#2834](https://github.com/skbkontur/retail-ui/issues/2834)) ([cc2b506](https://github.com/skbkontur/retail-ui/commit/cc2b506d976e678857cbeed1582b76e952b62169))
1883
+ * **SidePage,Toast:** fix animation bugs ([#2835](https://github.com/skbkontur/retail-ui/issues/2835)) ([3c8e77d](https://github.com/skbkontur/retail-ui/commit/3c8e77dc67710b342d8df96043333f2cbf012c73))
1884
+
1885
+
1886
+
1887
+
1888
+
1889
+ ## [4.0.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.0.0...@skbkontur/react-ui@4.0.1) (2022-03-18)
1890
+
1891
+
1892
+ ### Bug Fixes
1893
+
1894
+ * **DatePicker:** scroll to date ([#2829](https://github.com/skbkontur/retail-ui/issues/2829)) ([3f3366d](https://github.com/skbkontur/retail-ui/commit/3f3366dbf16b7348eef3981976cf2d07d0b54e2d))
1895
+ * dropdownContainer position (master) ([#2827](https://github.com/skbkontur/retail-ui/issues/2827)) ([81467af](https://github.com/skbkontur/retail-ui/commit/81467af568ff519dd362b32dc8db360856f0ef7a))
1896
+ * **Modal:** fix lodash import ([#2824](https://github.com/skbkontur/retail-ui/issues/2824)) ([0f15b5e](https://github.com/skbkontur/retail-ui/commit/0f15b5eb041337eda552d096a34914ed86aad79b))
1897
+
1898
+
1899
+
1900
+
1901
+
1902
+ # [4.0.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.12.0...@skbkontur/react-ui@4.0.0) (2022-03-01)
1903
+
1904
+
1905
+ ### Bug Fixes
1906
+
1907
+ * **Button:** use shadows instead of borders ([d400c69](https://github.com/skbkontur/retail-ui/commit/d400c6925a0493b0f8b5300dc77625ac4b3810f6)), closes [#2559](https://github.com/skbkontur/retail-ui/issues/2559)
1908
+ * **Checkbox:** fix baseline ([3571ee3](https://github.com/skbkontur/retail-ui/commit/3571ee3877fd554201b5e901a581207b513c2f20))
1909
+ * **GlobalLoader:** Доработали поведение и поправили мелкие баги ([#2767](https://github.com/skbkontur/retail-ui/issues/2767)) ([17a666d](https://github.com/skbkontur/retail-ui/commit/17a666d94acbcebb41c69563a8b489ca0f43da45))
1910
+ * **Popup:** correct DOM node extraction ([#2811](https://github.com/skbkontur/retail-ui/issues/2811)) ([#2796](https://github.com/skbkontur/retail-ui/issues/2796)) ([01f951d](https://github.com/skbkontur/retail-ui/commit/01f951d872e2b59a1b049509a9882b24990bbb0e))
1911
+ * **Radio:** fix baseline ([fcb021d](https://github.com/skbkontur/retail-ui/commit/fcb021d1ee63df6a8fecc9d5757c072c6863df28))
1912
+ * **react-ui:** call original refs while replacing them ([#2729](https://github.com/skbkontur/retail-ui/issues/2729)) ([cd75e9f](https://github.com/skbkontur/retail-ui/commit/cd75e9f8fb03b469b783171cb74c099841b5ab6f))
1913
+ * **react-ui:** don't depend on global line-height ([98cb4dc](https://github.com/skbkontur/retail-ui/commit/98cb4dcb8f71417c89e1fc61b4f1f45ba3119943))
1914
+ * **ResponsiveLayout:** fallback for ie11 ([956f723](https://github.com/skbkontur/retail-ui/commit/956f7239c08bdb08d86e6056b2f6b71b540eaf22))
1915
+ * **Spinner:** add inline type ([f7a0f35](https://github.com/skbkontur/retail-ui/commit/f7a0f3505b90777424da60d137c32ea25500c81b))
1916
+ * **Toggle:** add vars for font-size and line-height ([911f1df](https://github.com/skbkontur/retail-ui/commit/911f1dfd89495265baa6cac2df45a1c52281ac8e))
1917
+ * **Toggle:** fix baseline ([1d3960b](https://github.com/skbkontur/retail-ui/commit/1d3960b496fbfec9796e3eb72614b79be7436374))
1918
+ * **Tooltip:** add vars for font-size and line-height ([3f27477](https://github.com/skbkontur/retail-ui/commit/3f274776c89ef194383de84f9cd5dbda3c0f6c1b))
1919
+
1920
+
1921
+ ### Features
1922
+
1923
+ * **FileUploader:** new component FileUploader ([#2542](https://github.com/skbkontur/retail-ui/issues/2542)) ([18d009a](https://github.com/skbkontur/retail-ui/commit/18d009a8ebeafa2379d5fb46a564ead97c3da6a5))
1924
+ * **GlobalLoader:** new component GlobalLoader ([#2554](https://github.com/skbkontur/retail-ui/issues/2554)) ([dfeef98](https://github.com/skbkontur/retail-ui/commit/dfeef98098932ee12d8f3591536f51b5add811c6))
1925
+ * **Hint,Tooltip,TooltipMenu,Dropdown,DropdownMenu:** add mobile version ([#2688](https://github.com/skbkontur/retail-ui/issues/2688)) ([1aa395b](https://github.com/skbkontur/retail-ui/commit/1aa395b493c65497c567c6d421eaa125a643e1e6))
1926
+ * **Modal:** add mobile version ([#2682](https://github.com/skbkontur/retail-ui/issues/2682)) ([10324c6](https://github.com/skbkontur/retail-ui/commit/10324c69505e11c1638aab7f128e8d0537cd4289))
1927
+ * **Radio, Switcher, Checkbox:** rename label to caption ([#2629](https://github.com/skbkontur/retail-ui/issues/2629)) ([bd1a7a7](https://github.com/skbkontur/retail-ui/commit/bd1a7a7f1ca8c6983b69e2044f182f34a627c194)), closes [#2196](https://github.com/skbkontur/retail-ui/issues/2196)
1928
+ * **react-ui:** add lab grotesque compensation ([b1920bb](https://github.com/skbkontur/retail-ui/commit/b1920bbc5534161e686c2147979f47b7bc36b049))
1929
+ * **react-ui:** add new theme ([#2592](https://github.com/skbkontur/retail-ui/issues/2592)) ([1aaaf17](https://github.com/skbkontur/retail-ui/commit/1aaaf17785bb624b730e26c525d019ae22acecd0))
1930
+ * **react-ui:** dark theme ([#2698](https://github.com/skbkontur/retail-ui/issues/2698)) ([8047743](https://github.com/skbkontur/retail-ui/commit/8047743c1572e753b327a5323c9f4481b0c1db45))
1931
+ * **react-ui:** use new theme by default ([#2707](https://github.com/skbkontur/retail-ui/issues/2707)) ([6de91d3](https://github.com/skbkontur/retail-ui/commit/6de91d3f6a44a86a8a9179f9718ab0b15256d91a))
1932
+ * **ResponsiveLayout:** add useResponsiveLayout, a hook for getting current layout ([#2699](https://github.com/skbkontur/retail-ui/issues/2699)) ([1596e91](https://github.com/skbkontur/retail-ui/commit/1596e911ddad9d300038904baf1ed93597276c35))
1933
+ * **Select,ComboBox,Autocomplete:** add responsive mobile layouts ([861f23a](https://github.com/skbkontur/retail-ui/commit/861f23affdc93e283a7dfdeaddd6b3af7cb27287))
1934
+ * **SidePage:** add mobile version ([#2695](https://github.com/skbkontur/retail-ui/issues/2695)) ([46d469b](https://github.com/skbkontur/retail-ui/commit/46d469bcfa57ee2a85f9014f7fa8b56b10406062))
1935
+
1936
+
1937
+ ### BREAKING CHANGES
1938
+
1939
+ * **react-ui:** update, rename and remove some themes, see #2592
1940
+ * **Radio, Switcher, Checkbox:** rename label to caption
1941
+
1942
+
1943
+
1944
+
1945
+
1946
+ # [3.12.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.11.0...@skbkontur/react-ui@3.12.0) (2022-02-22)
1947
+
1948
+
1949
+ ### Bug Fixes
1950
+
1951
+ * **Select:** fix menuAlign right ([#2693](https://github.com/skbkontur/retail-ui/issues/2693)) ([6428498](https://github.com/skbkontur/retail-ui/commit/6428498b8cb895f0bcfe853959b26caa41b53189))
1952
+ * **SidePage:** Исправил ошибку `Maximum update`, когда скролишь второй SidePage ([74134d8](https://github.com/skbkontur/retail-ui/commit/74134d8bf5d8a4aaed5aa554e41bb50e44d3836d))
1953
+ * **SidePage:** Исправил положение залипшего заголовка после закрытия второго SidePage ([76c6ff4](https://github.com/skbkontur/retail-ui/commit/76c6ff40eac3c76bb86e9118c4727b5bf6a442ae))
1954
+
1955
+
1956
+ ### Features
1957
+
1958
+ * **Sticky:** Сделал метод `ref.reflow()` публичным ([bdfc991](https://github.com/skbkontur/retail-ui/commit/bdfc991e20317d6da68191357a9ecd554990ef9b))
1959
+
1960
+
1961
+
1962
+
1963
+
1964
+ # [3.11.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.10.0...@skbkontur/react-ui@3.11.0) (2022-02-04)
1965
+
1966
+
1967
+ ### Bug Fixes
1968
+
1969
+ * **ScrollContainer:** consider scaling cases in browsers ([#2705](https://github.com/skbkontur/retail-ui/issues/2705)) ([e64d3de](https://github.com/skbkontur/retail-ui/commit/e64d3de80f12cdb7c2329d0b38d2531f84237f55))
1970
+ * **SidePage:** change scroll behavior according to Guides ([#2756](https://github.com/skbkontur/retail-ui/issues/2756)) ([47dfb5a](https://github.com/skbkontur/retail-ui/commit/47dfb5ac895c26655edef2e08cf1f86f5b246390))
1971
+ * **Spinner:** refactor animation for Safari ([#2748](https://github.com/skbkontur/retail-ui/issues/2748)) ([1698a4a](https://github.com/skbkontur/retail-ui/commit/1698a4a5542d9884f3e6deb833161a6219b9d72a))
1972
+ * **Switcher:** restore border in error and checked state ([#2742](https://github.com/skbkontur/retail-ui/issues/2742)) ([6fbe8f5](https://github.com/skbkontur/retail-ui/commit/6fbe8f529cfe14f8338a79b354a1201f38b06ee2))
1973
+
1974
+
1975
+ ### Features
1976
+
1977
+ * **Spinner:** add width and color props ([4ea170d](https://github.com/skbkontur/retail-ui/commit/4ea170d4f1cc30091c30e0ee637e38494ad79f0a))
1978
+
1979
+
1980
+
1981
+
1982
+
1983
+ # [3.10.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.9.4...@skbkontur/react-ui@3.10.0) (2022-01-27)
1984
+
1985
+
1986
+ ### Bug Fixes
1987
+
1988
+ * **react-ui:** [StrictMode] give up findDomNode ([#2518](https://github.com/skbkontur/retail-ui/issues/2518)) ([8028cdd](https://github.com/skbkontur/retail-ui/commit/8028cdd3c2289fd48816bdaf92da6a28892f40a7))
1989
+ * **react-ui:** [StrictMode] give up legacy context ([#2694](https://github.com/skbkontur/retail-ui/issues/2694)) ([d0253cc](https://github.com/skbkontur/retail-ui/commit/d0253ccc089764a317ccaa79aa00cc96fbb7aa0a))
1990
+ * **react-ui:** [StrictMode] give up unsafe methods ([#2514](https://github.com/skbkontur/retail-ui/issues/2514)) ([6cc2201](https://github.com/skbkontur/retail-ui/commit/6cc2201f0e8f711441e6c63229b703c03d4b6953))
1991
+ * **react-ui:** call original refs while replacing them ([#2736](https://github.com/skbkontur/retail-ui/issues/2736)) ([01ff2ab](https://github.com/skbkontur/retail-ui/commit/01ff2ab3243082c9347d20e844368ac775e54449))
1992
+ * **TokenInput:** handle Enter for TokenInputType.WithoutReference ([#2738](https://github.com/skbkontur/retail-ui/issues/2738)) ([2ee48cc](https://github.com/skbkontur/retail-ui/commit/2ee48cc31342dc13fd4596020d73e352311bdb82))
1993
+
1994
+
1995
+ ### Features
1996
+
1997
+ * support React.StrictMode ([04a4bc9](https://github.com/skbkontur/retail-ui/commit/04a4bc9f2dd35fa98ea4d9526ddd775dd1017b71))
1998
+ * **react-ui:** prepend styles to the head instead of appending ([#2696](https://github.com/skbkontur/retail-ui/issues/2696)) ([212ee04](https://github.com/skbkontur/retail-ui/commit/212ee047ae806a073316596c2ff696b5d08c80d2))
1999
+
2000
+
2001
+
2002
+
2003
+
2004
+ ## [3.9.4](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.9.3...@skbkontur/react-ui@3.9.4) (2021-12-27)
2005
+
2006
+
2007
+ ### Bug Fixes
2008
+
2009
+ * **Gapped:** correctly filter falsy childs ([#2692](https://github.com/skbkontur/retail-ui/issues/2692)) ([8e21e60](https://github.com/skbkontur/retail-ui/commit/8e21e60a7b7899945c2c101e48ede1a6e3360406))
2010
+ * **Loader:** use `forEach` from `Array` ([#2702](https://github.com/skbkontur/retail-ui/issues/2702)) ([167a07a](https://github.com/skbkontur/retail-ui/commit/167a07ac3b8057396ce292d79f5bb21b9f1c7bd6))
2011
+ * **RadioGroup:** fix types inference ([#2703](https://github.com/skbkontur/retail-ui/issues/2703)) ([4d410ab](https://github.com/skbkontur/retail-ui/commit/4d410ab8cf9d6d8b56f927e3b7efd698abf83920))
2012
+
2013
+
2014
+
2015
+
2016
+
2017
+ ## [3.9.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.9.2...@skbkontur/react-ui@3.9.3) (2021-12-03)
2018
+
2019
+
2020
+ ### Bug Fixes
2021
+
2022
+ * **Button:** disable focus in loading state ([#2661](https://github.com/skbkontur/retail-ui/issues/2661)) ([1c910c1](https://github.com/skbkontur/retail-ui/commit/1c910c16a11ba81b6799d74106c74bc2afc1fd57))
2023
+ * **Checkbox,Radio:** firing events onChange manually for Firefox ([6c19412](https://github.com/skbkontur/retail-ui/commit/6c19412b1c348666c802191ca851e4670df8edcc))
2024
+ * **CurrencyInput:** refactor Input scroll on cursor is moving ([4e2e8d1](https://github.com/skbkontur/retail-ui/commit/4e2e8d135a05025454a213b77697b419bf7e1aca))
2025
+ * **select:** add handleKey to search div ([#2660](https://github.com/skbkontur/retail-ui/issues/2660)) ([310b963](https://github.com/skbkontur/retail-ui/commit/310b963a510b134b391f6cae773a7b4940986623))
2026
+ * **SidePage:** use `isTestEnv` by default for `disableAnimations` ([b4035e8](https://github.com/skbkontur/retail-ui/commit/b4035e8d2beb0a1886ba0b6590838ac363c79210))
2027
+
2028
+
2029
+
2030
+
2031
+
2032
+ ## [3.9.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.9.1...@skbkontur/react-ui@3.9.2) (2021-11-26)
2033
+
2034
+
2035
+ ### Bug Fixes
2036
+
2037
+ * **TokenInput:** non-null assertion operator replaced with optional chaining ([#2670](https://github.com/skbkontur/retail-ui/issues/2670)) ([b7532d0](https://github.com/skbkontur/retail-ui/commit/b7532d03cea7e06277fdd2b1d827c53b1c4eaa49))
2038
+
2039
+
2040
+
2041
+
2042
+
2043
+ ## [3.9.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.9.0...@skbkontur/react-ui@3.9.1) (2021-11-19)
2044
+
2045
+
2046
+ ### Bug Fixes
2047
+
2048
+ * **ComboBox:** fix blur in Chrome ([#2665](https://github.com/skbkontur/retail-ui/issues/2665)) ([dab2ef0](https://github.com/skbkontur/retail-ui/commit/dab2ef0a16f878e179dd1ae98cebc3d69a6b7987))
2049
+ * **react-ui:** fix disabled and error state ([#2663](https://github.com/skbkontur/retail-ui/issues/2663)) ([4c2d542](https://github.com/skbkontur/retail-ui/commit/4c2d5420797b26cdeabd892bc87473c446d59bef))
2050
+ * **SidePage:** add offset prop ([#2626](https://github.com/skbkontur/retail-ui/issues/2626)) ([59b0257](https://github.com/skbkontur/retail-ui/commit/59b0257634a82bde15bca415e4f803076c89cf7a))
2051
+
2052
+
2053
+
2054
+
2055
+
2056
+ # [3.9.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.8.5...@skbkontur/react-ui@3.9.0) (2021-11-16)
2057
+
2058
+
2059
+ ### Bug Fixes
2060
+
2061
+ * **Link:** disable interactions on link with disabled and loading states ([#2621](https://github.com/skbkontur/retail-ui/issues/2621)) ([e78401e](https://github.com/skbkontur/retail-ui/commit/e78401e5c92e39e0d83f64664bdcd7e61fb9747c))
2062
+
2063
+
2064
+ ### Features
2065
+
2066
+ * **Popup/TokenInput/Kebab/DropdownMenu/TooltipMenu:** adjust position to fit viewport automatically ([#2638](https://github.com/skbkontur/retail-ui/issues/2638)) ([3f8d530](https://github.com/skbkontur/retail-ui/commit/3f8d530a06a22bc06c4294f4b509d4e9e6907a58))
2067
+
2068
+
2069
+
2070
+
2071
+
2072
+ ## [3.8.5](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.8.4...@skbkontur/react-ui@3.8.5) (2021-11-15)
2073
+
2074
+
2075
+ ### Bug Fixes
2076
+
2077
+ * **popup:** respect zero values for margin prop ([#2615](https://github.com/skbkontur/retail-ui/issues/2615)) ([416cc68](https://github.com/skbkontur/retail-ui/commit/416cc68d3ecbb9fcea8b2943326baef7f6028580))
2078
+ * **Popup:** fix shadow in Safari ([#2636](https://github.com/skbkontur/retail-ui/issues/2636)) ([bddf178](https://github.com/skbkontur/retail-ui/commit/bddf1785eba5cb2a40875a568249f590a09a209b)), closes [#2459](https://github.com/skbkontur/retail-ui/issues/2459) [#1677](https://github.com/skbkontur/retail-ui/issues/1677) [#1495](https://github.com/skbkontur/retail-ui/issues/1495)
2079
+ * **SidePage:** body takes 100% of available height ([#2567](https://github.com/skbkontur/retail-ui/issues/2567)) ([4dc607a](https://github.com/skbkontur/retail-ui/commit/4dc607abf33aa953ab1602fe68df39373c8c6481))
2080
+
2081
+
2082
+
2083
+
2084
+
2085
+ ## [3.8.4](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.8.3...@skbkontur/react-ui@3.8.4) (2021-11-03)
2086
+
2087
+
2088
+ ### Bug Fixes
2089
+
2090
+ * **DatePicker:** width for different sizes with empty value ([#2614](https://github.com/skbkontur/retail-ui/issues/2614)) ([cb5254f](https://github.com/skbkontur/retail-ui/commit/cb5254f10d92456018b1ead3790f8bbade0f34e0))
2091
+ * **RadioGroup:** problem with value type inference ([#2607](https://github.com/skbkontur/retail-ui/issues/2607)) ([d6136e4](https://github.com/skbkontur/retail-ui/commit/d6136e45a311b00f39bc5c741cef07aacf8d2f4f))
2092
+ * **Select:** add vars for disabled state ([#2610](https://github.com/skbkontur/retail-ui/issues/2610)) ([7300141](https://github.com/skbkontur/retail-ui/commit/73001417ba004754c8f52da377ceff1fff0b6027))
2093
+
2094
+
2095
+
2096
+
2097
+
2098
+ ## [3.8.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.8.2...@skbkontur/react-ui@3.8.3) (2021-11-02)
2099
+
2100
+
2101
+ ### Bug Fixes
2102
+
2103
+ * **ComboBox:** render placeholder instead of empty string values ([#2601](https://github.com/skbkontur/retail-ui/issues/2601)) ([3b4ed5a](https://github.com/skbkontur/retail-ui/commit/3b4ed5a419c794e5c9648a3b8ddc160065dbee1d))
2104
+ * **DatePicker:** adjust the width depending on the size ([#2602](https://github.com/skbkontur/retail-ui/issues/2602)) ([14098c2](https://github.com/skbkontur/retail-ui/commit/14098c2badba30c430fb1ccef57771c6fc672f92)), closes [#2025](https://github.com/skbkontur/retail-ui/issues/2025)
2105
+
2106
+
2107
+
2108
+
2109
+
2110
+ ## [3.8.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.8.1...@skbkontur/react-ui@3.8.2) (2021-10-29)
2111
+
2112
+
2113
+ ### Bug Fixes
2114
+
2115
+ * **CurrencyLabel:** revert color, inherit it from page ([#2595](https://github.com/skbkontur/retail-ui/issues/2595)) ([bb7b20c](https://github.com/skbkontur/retail-ui/commit/bb7b20c610ab07a03938dfa7c17589878a088f99))
2116
+ * **Toggle:** add id prop ([#2597](https://github.com/skbkontur/retail-ui/issues/2597)) ([82846db](https://github.com/skbkontur/retail-ui/commit/82846dbacff71a844867b88f7acb1c33eaef8bb9))
2117
+ * **Toggle:** remove interaction in checked disabled mode ([#2596](https://github.com/skbkontur/retail-ui/issues/2596)) ([513240f](https://github.com/skbkontur/retail-ui/commit/513240fd43a03f4b8334dded086212199fc89a99))
2118
+
2119
+
2120
+
2121
+
2122
+
2123
+ ## [3.8.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.8.0...@skbkontur/react-ui@3.8.1) (2021-10-28)
2124
+
2125
+
2126
+ ### Bug Fixes
2127
+
2128
+ * **Checkbox:** remove user-select:none ([#2586](https://github.com/skbkontur/retail-ui/issues/2586)) ([4da5f0c](https://github.com/skbkontur/retail-ui/commit/4da5f0cdc09d8e01f7d4ab7a7b01e58fdbad56b3))
2129
+ * **Kebab:** restore menuMaxHeight prop ([#2588](https://github.com/skbkontur/retail-ui/issues/2588)) ([20b82ce](https://github.com/skbkontur/retail-ui/commit/20b82ce8a4e7a411e42f6b2c848de1308617cbdb))
2130
+ * **Textarea:** fix autoResize on rows/maxRows change ([#2562](https://github.com/skbkontur/retail-ui/issues/2562)) ([a0c06f8](https://github.com/skbkontur/retail-ui/commit/a0c06f839ebe8de9fcbddfe7e8cf0568d3921e72))
2131
+ * **Toggle:** recover disabled caption styles ([#2582](https://github.com/skbkontur/retail-ui/issues/2582)) ([ef9fe96](https://github.com/skbkontur/retail-ui/commit/ef9fe969e0b59afe5ebe5c22827aa5bcdbd653f1))
2132
+
2133
+
2134
+
2135
+
2136
+
2137
+ # [3.8.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.7.2...@skbkontur/react-ui@3.8.0) (2021-10-27)
2138
+
2139
+
2140
+ ### Bug Fixes
2141
+
2142
+ * **ComboBox:** handle falsy values correctly ([#2563](https://github.com/skbkontur/retail-ui/issues/2563)) ([2df7e09](https://github.com/skbkontur/retail-ui/commit/2df7e09ec6fd8f4ab9e999654263acbe8d989803))
2143
+ * **ModalClose:** don't s show focus outline if it's not focus by Tab ([#2565](https://github.com/skbkontur/retail-ui/issues/2565)) ([b589014](https://github.com/skbkontur/retail-ui/commit/b58901428b7bfdf52727de1345e44d1d0cd35b8e))
2144
+ * **ThemePlayground:** computed vars are visible in the ThemeEditor ([62f191e](https://github.com/skbkontur/retail-ui/commit/62f191efa0234cc72175e05dcb543284fada7d7e))
2145
+ * **Toggle:** add toggleBgDisabledChecked, toggleBorderColorDisabled, toggleBorderColorDisabledChecked theme variables ([#2584](https://github.com/skbkontur/retail-ui/issues/2584)) ([b953719](https://github.com/skbkontur/retail-ui/commit/b953719e4cd5b0d89babe1b72f5ae497a9567889))
2146
+
2147
+
2148
+ ### Features
2149
+
2150
+ * **Upgrades:** abillity to customize classNames prefix ([#2561](https://github.com/skbkontur/retail-ui/issues/2561)) ([fbc9ced](https://github.com/skbkontur/retail-ui/commit/fbc9ceda8d9cb9c2be7d69a7fa199cf7c9745cee))
2151
+
2152
+
2153
+
2154
+
2155
+
2156
+ ## [3.7.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.7.1...@skbkontur/react-ui@3.7.2) (2021-10-25)
2157
+
2158
+
2159
+ ### Bug Fixes
2160
+
2161
+ * **Button:** add btnBackgroundClip theme var ([72708f9](https://github.com/skbkontur/retail-ui/commit/72708f9c1f58f248bf53dd0f2e75088a100711d4))
2162
+ * **Button:** add title prop ([#2569](https://github.com/skbkontur/retail-ui/issues/2569)) ([5140e96](https://github.com/skbkontur/retail-ui/commit/5140e96fbd33c57aa15a720935f6904e02b1f315))
2163
+ * **Paging:** use default cursor style for disabled paging link ([788f70a](https://github.com/skbkontur/retail-ui/commit/788f70a3dd3385165f3ffa0de0eb02cca887e584))
2164
+ * **TokenInput:** add public focus/blur methods ([0137266](https://github.com/skbkontur/retail-ui/commit/0137266810f09f139974a3480650587bb4b69d15))
2165
+
2166
+
2167
+
2168
+
2169
+
2170
+ ## [3.7.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.7.0...@skbkontur/react-ui@3.7.1) (2021-10-06)
2171
+
2172
+
2173
+ ### Bug Fixes
2174
+
2175
+ * **Checkbox:** revert to old focus behavior ([d0f80f7](https://github.com/skbkontur/retail-ui/commit/d0f80f73f44114ae9ed217729d6864e2f3f63d21)), closes [#2550](https://github.com/skbkontur/retail-ui/issues/2550)
2176
+ * **FxInput:** remove refInput prop from spread ([c5f403d](https://github.com/skbkontur/retail-ui/commit/c5f403dec7342b8ce29bdb9571fba0569eefc6a6))
2177
+ * **HideBodyVerticalScroll:** now scrollbar hiding always ([#2540](https://github.com/skbkontur/retail-ui/issues/2540)) ([c93db68](https://github.com/skbkontur/retail-ui/commit/c93db684f2954b075794c2ac26db761b72953614))
2178
+ * **PopupMenu:** move width property from internalMenu to Popup ([20643a4](https://github.com/skbkontur/retail-ui/commit/20643a437cf302a3f017822c54320827f869932d))
2179
+ * **SidePage:** replace icon close tag from link to button ([4458332](https://github.com/skbkontur/retail-ui/commit/4458332a79a143295e42ec9388ea27d0b94a7b21))
2180
+ * **theme:** text color of components link to `textColorDefault` ([#2543](https://github.com/skbkontur/retail-ui/issues/2543)) ([b3a92c5](https://github.com/skbkontur/retail-ui/commit/b3a92c5e61eec509322194f419386839393da709))
2181
+ * **TokenInput:** add delimiter comma support for IE ([#2539](https://github.com/skbkontur/retail-ui/issues/2539)) ([2bbf54a](https://github.com/skbkontur/retail-ui/commit/2bbf54a830de8966a7b2594bb6ac6fc9e185422d))
2182
+
2183
+
2184
+
2185
+
2186
+
2187
+ # [3.7.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.6.0...@skbkontur/react-ui@3.7.0) (2021-09-16)
2188
+
2189
+
2190
+ ### Bug Fixes
2191
+
2192
+ * **checkbox:** add `!important` for focus styles ([#2528](https://github.com/skbkontur/retail-ui/issues/2528)) ([35c6a69](https://github.com/skbkontur/retail-ui/commit/35c6a6905a6722ca0b99cb86aadee4731effc0ff)), closes [#2517](https://github.com/skbkontur/retail-ui/issues/2517)
2193
+ * **Loader:** fix focus disabling ([fcc5e1e](https://github.com/skbkontur/retail-ui/commit/fcc5e1e42dcacffcb5d0abcb79998c3e0a107e2e))
2194
+ * **radio:** remove focus styles on mouse click ([876a1b8](https://github.com/skbkontur/retail-ui/commit/876a1b87ce5b0a16fe212b5a74680be7e20e1b3b))
2195
+ * **theme:** fix disabled style of 4 controls* ([#2524](https://github.com/skbkontur/retail-ui/issues/2524)) ([6783532](https://github.com/skbkontur/retail-ui/commit/6783532cedde0c09ff1bcaaddc712c41cf9dbc9e))
2196
+ * **theme:** remove color variables from 8px theme ([c86ed5d](https://github.com/skbkontur/retail-ui/commit/c86ed5dd754affd93e1727305eb1f34189a5d98d))
2197
+ * **theme:** to correct disabled style of Input ([#2521](https://github.com/skbkontur/retail-ui/issues/2521)) ([d91fedd](https://github.com/skbkontur/retail-ui/commit/d91feddf0fbccc9d0129552c465e7fc29f4dbdff))
2198
+
2199
+
2200
+ ### Features
2201
+
2202
+ * **ScrollContainer:** horizontal scroll ([#2473](https://github.com/skbkontur/retail-ui/issues/2473)) ([1df7613](https://github.com/skbkontur/retail-ui/commit/1df7613b9d16c490bb110c3f872ee03152f5f45b)), closes [#1931](https://github.com/skbkontur/retail-ui/issues/1931)
2203
+
2204
+
2205
+
2206
+
2207
+
2208
+ # [3.6.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.5.0...@skbkontur/react-ui@3.6.0) (2021-08-26)
2209
+
2210
+
2211
+ ### Bug Fixes
2212
+
2213
+ * **FlatTheme:** set white bg for Radio, Checkbox and Toggle ([#2486](https://github.com/skbkontur/retail-ui/issues/2486)) ([07fac23](https://github.com/skbkontur/retail-ui/commit/07fac23f0089704db6a71e9561f0c5761df2d7dd))
2214
+ * **Loader:** disable focus children events while page is loading ([#2494](https://github.com/skbkontur/retail-ui/issues/2494)) ([1d46f96](https://github.com/skbkontur/retail-ui/commit/1d46f9667d5e1d3cfb55a131687210c4ca0948a8)), closes [#1732](https://github.com/skbkontur/retail-ui/issues/1732)
2215
+
2216
+
2217
+ ### Features
2218
+
2219
+ * **Button:** add `btnWarningSecondary` theme var and * ([#2512](https://github.com/skbkontur/retail-ui/issues/2512)) ([8a75266](https://github.com/skbkontur/retail-ui/commit/8a75266d65b73f159461313b7ec35f014ce02b37))
2220
+ * **Loader:** add props for show loader without spinner ([#2445](https://github.com/skbkontur/retail-ui/issues/2445)) ([2ffa70b](https://github.com/skbkontur/retail-ui/commit/2ffa70b165af3d31f2e6da06214d91b07c031563)), closes [#2266](https://github.com/skbkontur/retail-ui/issues/2266)
2221
+
2222
+
2223
+
2224
+
2225
+
2226
+ # [3.5.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.4.0...@skbkontur/react-ui@3.5.0) (2021-08-17)
2227
+
2228
+
2229
+ ### Bug Fixes
2230
+
2231
+ * **DateInput:** open keyboard on mobile devices ([#2474](https://github.com/skbkontur/retail-ui/issues/2474)) ([0a68e1c](https://github.com/skbkontur/retail-ui/commit/0a68e1c5479c95df96ad17afc2617e9444e37bf2))
2232
+ * **Input:** fix disabled border on error ([#2510](https://github.com/skbkontur/retail-ui/issues/2510)) ([97619a1](https://github.com/skbkontur/retail-ui/commit/97619a18f08df130700439b503b0b29e1ec703b1))
2233
+
2234
+
2235
+ ### Features
2236
+
2237
+ * **DatePicker:** support mobile devices ([#2447](https://github.com/skbkontur/retail-ui/issues/2447)) ([2ed9868](https://github.com/skbkontur/retail-ui/commit/2ed98684c46ac243bc29ec4cadd2026bd14f8ce9)), closes [#1619](https://github.com/skbkontur/retail-ui/issues/1619)
2238
+
2239
+
2240
+
2241
+
2242
+
2243
+ # [3.4.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.3.1...@skbkontur/react-ui@3.4.0) (2021-08-10)
2244
+
2245
+
2246
+ ### Bug Fixes
2247
+
2248
+ * **CurrencyInput:** fix delimiter for Safari ([#2495](https://github.com/skbkontur/retail-ui/issues/2495)) ([1b8789e](https://github.com/skbkontur/retail-ui/commit/1b8789ec9447fb775fb409d219105145280b05e7))
2249
+ * **Tab:** fix low height artefact ([20cdc0b](https://github.com/skbkontur/retail-ui/commit/20cdc0bbbd792b6be53bb123d1f8442d3840c2d6)), closes [#2500](https://github.com/skbkontur/retail-ui/issues/2500)
2250
+ * **Tooltip:** add closure workaround for Firefox and IE11 ([1236b0b](https://github.com/skbkontur/retail-ui/commit/1236b0ba35c6bff6a73b439e17db75ec91d5db6b))
2251
+
2252
+
2253
+ ### Features
2254
+
2255
+ * **react-ui:** fix unstable styles ([#2488](https://github.com/skbkontur/retail-ui/issues/2488)) ([b01898d](https://github.com/skbkontur/retail-ui/commit/b01898de589e6d146618867f476fb8803a78e91c))
2256
+ * **Tabs:** add generic for `value` prop ([#2471](https://github.com/skbkontur/retail-ui/issues/2471)) ([49ce216](https://github.com/skbkontur/retail-ui/commit/49ce2169174111e8021b989359f492de9b44e69d)), closes [#1953](https://github.com/skbkontur/retail-ui/issues/1953)
2257
+ * **TokenInput:** add `menuWidth` and `menuAlign` props ([#2479](https://github.com/skbkontur/retail-ui/issues/2479)) ([c3f6404](https://github.com/skbkontur/retail-ui/commit/c3f64045f0da12561840a1ac8134c03d4dc92623)), closes [#1834](https://github.com/skbkontur/retail-ui/issues/1834)
2258
+
2259
+
2260
+
2261
+
2262
+
2263
+ ## [3.3.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.3.0...@skbkontur/react-ui@3.3.1) (2021-07-23)
2264
+
2265
+
2266
+ ### Bug Fixes
2267
+
2268
+ * **Select:** fix highlighting of selected item ([#2483](https://github.com/skbkontur/retail-ui/issues/2483)) ([6b5412b](https://github.com/skbkontur/retail-ui/commit/6b5412bf74bd0d9651aa0ea064c9dea7389a2b21))
2269
+
2270
+
2271
+
2272
+
2273
+
2274
+ # [3.3.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.2.1...@skbkontur/react-ui@3.3.0) (2021-07-14)
2275
+
2276
+
2277
+ ### Bug Fixes
2278
+
2279
+ * **Button:** update background and border color* ([ee617bb](https://github.com/skbkontur/retail-ui/commit/ee617bb8bb2285e9ba863a7768fd666c4d0a936a))
2280
+ * **Combobox:** counting the number of found items ([#2465](https://github.com/skbkontur/retail-ui/issues/2465)) ([b2d5e67](https://github.com/skbkontur/retail-ui/commit/b2d5e67a648236ad6fdfa34973ebb2bb09f61c02))
2281
+ * **HBVS:** fix styles restoration ([89eed10](https://github.com/skbkontur/retail-ui/commit/89eed10a3efa7b049ebed87de9b634137634a0bb))
2282
+ * **hint:** add hintBgColor var ([#2457](https://github.com/skbkontur/retail-ui/issues/2457)) ([3f828e6](https://github.com/skbkontur/retail-ui/commit/3f828e60d0708da94f66d1b65409e330100126d7))
2283
+
2284
+
2285
+ ### Features
2286
+
2287
+ * **Modal:** allow use header/body/footer on any level ([f052f85](https://github.com/skbkontur/retail-ui/commit/f052f8557d677e51863a6feb0bde1ad37c52cb85)), closes [#2449](https://github.com/skbkontur/retail-ui/issues/2449)
2288
+ * **SidePage:** add FocusLock ([#2467](https://github.com/skbkontur/retail-ui/issues/2467)) ([fe6ca6a](https://github.com/skbkontur/retail-ui/commit/fe6ca6af4da4b39e3973fa937fdbf09b6731d033))
2289
+ * **SidePage:** allow use header/body/footer on any level ([9fe4264](https://github.com/skbkontur/retail-ui/commit/9fe4264fa17ba43f40f18f58d50a527177b93aa5)), closes [#2455](https://github.com/skbkontur/retail-ui/issues/2455)
2290
+
2291
+
2292
+
2293
+
2294
+
2295
+ ## [3.2.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.2.0...@skbkontur/react-ui@3.2.1) (2021-06-29)
2296
+
2297
+
2298
+ ### Bug Fixes
2299
+
2300
+ * **Modal,SidePage,HideBodyVerticalScroll:** fix performance issue ([7bd9ce6](https://github.com/skbkontur/retail-ui/commit/7bd9ce6974c2eea18537b15c6a6ee1a6e6a0a351))
2301
+ * **react-ui:** add new env vars for animation disabling ([9840822](https://github.com/skbkontur/retail-ui/commit/98408221c0d80ce24cf8da8a5cdbc96fee365519))
2302
+
2303
+
2304
+
2305
+
2306
+
2307
+ # [3.2.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.1.0...@skbkontur/react-ui@3.2.0) (2021-06-22)
2308
+
2309
+
2310
+ ### Bug Fixes
2311
+
2312
+ * **CurrencyInput:** double click and deselection by click ([#2366](https://github.com/skbkontur/retail-ui/issues/2366)) ([6346d85](https://github.com/skbkontur/retail-ui/commit/6346d850b7cda6926470eb9d01841f2ffb86b5e1))
2313
+ * **Modal:** fix shadows and footer color ([#2442](https://github.com/skbkontur/retail-ui/issues/2442)) ([94064bc](https://github.com/skbkontur/retail-ui/commit/94064bc8ea613f0caac806e25eb6584849ae7d95))
2314
+ * **Popup:** don't squash content if it doesn't fit in the viewport ([#2433](https://github.com/skbkontur/retail-ui/issues/2433)) ([098a5bf](https://github.com/skbkontur/retail-ui/commit/098a5bff2de098f584dd9c5e48c1e3f3a7e5f746))
2315
+ * **SidePage:** fix shadows and footer color ([#2446](https://github.com/skbkontur/retail-ui/issues/2446)) ([6b925e6](https://github.com/skbkontur/retail-ui/commit/6b925e6464f01323172e27b692dbc2278efa902d))
2316
+
2317
+
2318
+ ### Features
2319
+
2320
+ * **Kebab:** add custom icon ([da3a23c](https://github.com/skbkontur/retail-ui/commit/da3a23c9f2863565120d98cb43bbad5e57303e85))
2321
+ * **react-ui:** support webpack 5 ([3b20af0](https://github.com/skbkontur/retail-ui/commit/3b20af0a0b9b9455fd7f7594b27f6bf41c09eb80))
2322
+
2323
+
2324
+
2325
+
2326
+
2327
+ # [3.1.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@3.0.0...@skbkontur/react-ui@3.1.0) (2021-06-09)
2328
+
2329
+
2330
+ ### Bug Fixes
2331
+
2332
+ * **Button:** remove middle line on arrows ([51f9395](https://github.com/skbkontur/retail-ui/commit/51f93953ff3f1e9a9afaecf866184e8c7e704dda))
2333
+ * **Checkbox:** fix not triggered onFocus handler ([c8b1247](https://github.com/skbkontur/retail-ui/commit/c8b12479ce9f74c26a936bf05b2a5a65bc87453d))
2334
+ * **Input,Textarea,Toggle,Checkbox:** fix regress after 3.0 ([#2397](https://github.com/skbkontur/retail-ui/issues/2397)) ([0905743](https://github.com/skbkontur/retail-ui/commit/09057434064423f97f0c99a5ad12714a120f2b8b))
2335
+ * **Radio, Checkbox:** remove borders in flat theme ([a927027](https://github.com/skbkontur/retail-ui/commit/a927027d3482f60c2e18ab38cfb269b0dc79bff6))
2336
+ * **Tabs:** add resize detector in tab for updating indicator place ([347e672](https://github.com/skbkontur/retail-ui/commit/347e672e9cd964541ec0d6d1c2da5fbaef2a6b21))
2337
+ * **Textarea:** skip tab focus on iframe ([6f5aa39](https://github.com/skbkontur/retail-ui/commit/6f5aa39c77eb47e21654284c106c104bdf49e0d5))
2338
+
2339
+
2340
+ ### Features
2341
+
2342
+ * **Combobox:** add right icon ([#2431](https://github.com/skbkontur/retail-ui/issues/2431)) ([2c0d2c9](https://github.com/skbkontur/retail-ui/commit/2c0d2c9c990c1200d52e521434495e91f34bd9b0))
2343
+
2344
+
2345
+
2346
+
2347
+
2348
+ # [3.0.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.17.0...@skbkontur/react-ui@3.0.0) (2021-05-12)
2349
+
2350
+
2351
+ ### Bug Fixes
2352
+
2353
+ * **react-ui:** update default text color ([57189e6](https://github.com/skbkontur/retail-ui/commit/57189e6bebbfa63e293844c77c43b52153d13ea6))
2354
+ * **ThemeFactory:** create themes based on 8px by default ([141cf24](https://github.com/skbkontur/retail-ui/commit/141cf24b91a084c11fa641df0b3faf8dd3ea1612))
2355
+ * change the text color of disabled controls ([#2304](https://github.com/skbkontur/retail-ui/issues/2304)) ([09e27e9](https://github.com/skbkontur/retail-ui/commit/09e27e9a6aadefdf23b2ad801923f840f03f6828)), closes [#2207](https://github.com/skbkontur/retail-ui/issues/2207)
2356
+ * focus border color and menu items bg color changed to `[#1](https://github.com/skbkontur/retail-ui/issues/1)D85D0` ([35c325d](https://github.com/skbkontur/retail-ui/commit/35c325dd1cdf96c58d5bc680a9c93bfa025d5365)), closes [#1D85D0](https://github.com/skbkontur/retail-ui/issues/1D85D0) [#2330](https://github.com/skbkontur/retail-ui/issues/2330)
2357
+ * **Button:** add white-space: nowrap for linkbutton ([b5ceeed](https://github.com/skbkontur/retail-ui/commit/b5ceeedeb2216281f86e1c34a85a6ecbb16fd666))
2358
+ * **Button:** fix icon padding with empty children ([476a05d](https://github.com/skbkontur/retail-ui/commit/476a05de13f7276905bf4ac0081bf34d4dde32eb))
2359
+ * **Button:** remove transparent bg on hover from Flat theme ([#2253](https://github.com/skbkontur/retail-ui/issues/2253)) ([af72fe7](https://github.com/skbkontur/retail-ui/commit/af72fe716b135717531b1b5c7293e3f921246ba2))
2360
+ * **Theme:** improve themes markers, no need to replicate them anymore ([f635939](https://github.com/skbkontur/retail-ui/commit/f6359395fb7a20129c24ad8bb17f424368094fe7))
2361
+ * **ThemePlayground:** restore tests that was deleted by mistake ([1ea04c6](https://github.com/skbkontur/retail-ui/commit/1ea04c66462ad4c0f44ef52586787fef30aa753e)), closes [#2319](https://github.com/skbkontur/retail-ui/issues/2319)
2362
+ * **Tooltip,Hint:** change popup margin ([7c32369](https://github.com/skbkontur/retail-ui/commit/7c32369f12cb73fc0c77a46a10db2313e1dbfc43))
2363
+
2364
+
2365
+ ### Features
2366
+
2367
+ * **Button:** implement strokes via borders, add inner shadow for error/warning states ([#2285](https://github.com/skbkontur/retail-ui/issues/2285)) ([5bca212](https://github.com/skbkontur/retail-ui/commit/5bca212ebbcb75dba814a414dab94c4999f1e7cc))
2368
+ * **Button:** new loading state ([#2256](https://github.com/skbkontur/retail-ui/issues/2256)) ([c4d6537](https://github.com/skbkontur/retail-ui/commit/c4d65379f382c6fe5ddd4293ff9974443a3cae76))
2369
+ * **Fias:** remove component ([cd3ecdf](https://github.com/skbkontur/retail-ui/commit/cd3ecdf7d8c2bc3b7a1ce583efc786773db606d4))
2370
+ * **LocaleContext:** allow usage with any component ([cb074f6](https://github.com/skbkontur/retail-ui/commit/cb074f6231748b9a54d382c78561a00fb0c16a68))
2371
+ * **LocaleProvider:** remove component ([906b485](https://github.com/skbkontur/retail-ui/commit/906b48532150409b96643460d02265315caeb84b))
2372
+ * **Logotype:** remove component ([9455ffa](https://github.com/skbkontur/retail-ui/commit/9455ffad8d528ec312c0879622ec2c2e8032880a))
2373
+ * **MenuItem:** remove alkoLink prop ([a69ae24](https://github.com/skbkontur/retail-ui/commit/a69ae24c215ac17c1e3dd914b8c623f86553258c))
2374
+ * **react-ui:** new arrow icons ([#2331](https://github.com/skbkontur/retail-ui/issues/2331)) ([cf9e76f](https://github.com/skbkontur/retail-ui/commit/cf9e76ff124f4286d4b1bffe242807537c10d578))
2375
+ * **react-ui:** rename themes ([#2391](https://github.com/skbkontur/retail-ui/issues/2391)) ([ed2bd19](https://github.com/skbkontur/retail-ui/commit/ed2bd1959b488a97aa9d3ab96cbf40c504ca0a8a))
2376
+ * **react-ui:** turn on 8px theme by default ([b2e0087](https://github.com/skbkontur/retail-ui/commit/b2e00876762bf7ec4d40a3424110aee713ef33d6))
2377
+ * **Select, Dropdown:** remove diadocLinkIcon prop ([0374bad](https://github.com/skbkontur/retail-ui/commit/0374badf35daabae1984167a2a41751af2c18524))
2378
+ * **Spinner, Loader:** remove cloud prop ([923a57c](https://github.com/skbkontur/retail-ui/commit/923a57c9aac9aa1dff1775dca29f6dc548c5d358))
2379
+ * **SpinnerOld:** remove component ([8c76fac](https://github.com/skbkontur/retail-ui/commit/8c76fac129e503eb9e0a49f5f09e3adb90dec8a1))
2380
+ * **ThemeConsumer:** remove component ([9c01ab9](https://github.com/skbkontur/retail-ui/commit/9c01ab9e0e117fdaac03b12d49adc03db05ddba7))
2381
+ * **ThemeProvider:** remove component ([c932bb7](https://github.com/skbkontur/retail-ui/commit/c932bb75f5b2ba14238aa363e2f7756bae38adda))
2382
+ * **Toggle:** deprecate 'color' prop ([f7b9b22](https://github.com/skbkontur/retail-ui/commit/f7b9b22d154b5cdf9225a62815f94a05cc9dec77))
2383
+ * **Toggle:** implement error and warning states via shadows ([c67f8a5](https://github.com/skbkontur/retail-ui/commit/c67f8a5b81b1d5a11f0637e49ee565485effe4aa))
2384
+ * **Tooltip,Hint:** set useWrapper prop to false by default ([74bdb29](https://github.com/skbkontur/retail-ui/commit/74bdb299c19744f2c46052c3ed98b438bf1a221d))
2385
+ * **TopBar:** remove component ([5a67478](https://github.com/skbkontur/retail-ui/commit/5a67478751145fcd2445e283762ab48b729ddc23))
2386
+
2387
+
2388
+ ### Reverts
2389
+
2390
+ * Revert "test(Button): change size of screenshot" ([25887e6](https://github.com/skbkontur/retail-ui/commit/25887e688fb7c1a4d203baaf020c78e56d24486b))
2391
+
2392
+
2393
+ ### BREAKING CHANGES
2394
+
2395
+ * **react-ui:** default text color has been changed to #333333
2396
+ * **react-ui:** themes have been renamed (see migration.md)
2397
+ * **react-ui:** default theme has changed
2398
+ * Color of focus border and background of active menu items changed from `#5199db` to `#1D85D0`
2399
+ * **Tooltip,Hint:** It may affect position of Tooltips and Hints over your element due default wrapper removal. Also default offsets were changed.
2400
+ * **ThemeProvider:** component `ThemeProvider` was removed please use `ThemeContext` instead. See [ThemeContext](https://tech.skbkontur.ru/react-ui/#/Customization/ThemeContext).
2401
+ * **ThemeConsumer:** component `ThemeConsumer` was deprecated and removed please use `ThemeContext` instead
2402
+ * **Select, Dropdown:** Prop `diadocLinkIcon` was deprecated use prop `_renderButton` instead
2403
+ * **MenuItem:** Prop `alkoLink` was deprecated please use `link` instead
2404
+ * **LocaleProvider:** Component `LocaleProvider` has been removed, please use `LocaleContext` instead
2405
+ * **Spinner, Loader:** Cloud prop in `Spinner` and `Loader` components has been removed, behavior moved to `@skbkontur/react-ui-addons` see [migration](https://github.com/skbkontur/retail-ui/blob/master/packages/react-ui/MIGRATION.md).
2406
+ * **SpinnerOld:** Component `SpinnerOld` has been removed, please use component from @skbkontur/react-ui-addons
2407
+ * **Logotype:** Component `Logotype` has been removed, please use component from @skbkontur/react-ui-addons
2408
+ * **Fias:** Component `Fias` has been removed, please use component from @skbkontur/react-ui-addons
2409
+ * **TopBar:** Component `TopBar` has been removed, please use component from `@skbkontur/react-ui-addons`
2410
+
2411
+
2412
+
2413
+
2414
+
2415
+ # [2.17.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.16.2...@skbkontur/react-ui@2.17.0) (2021-05-12)
2416
+
2417
+
2418
+ ### Features
2419
+
2420
+ * support React 17 ([#2360](https://github.com/skbkontur/retail-ui/issues/2360)) ([066ff68](https://github.com/skbkontur/retail-ui/commit/066ff681477d415177a6312c218e49ed5baa4c44))
2421
+ * **DropdownMenu:** add prop width ([b49e8c0](https://github.com/skbkontur/retail-ui/commit/b49e8c0d05d085ac7e175899ec064d5cc7192507))
2422
+
2423
+
2424
+
2425
+
2426
+
2427
+ ## [2.16.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.16.1...@skbkontur/react-ui@2.16.2) (2021-04-30)
2428
+
2429
+
2430
+ ### Bug Fixes
2431
+
2432
+ * **Hint:** clear opening timer ([0a03c36](https://github.com/skbkontur/retail-ui/commit/0a03c36eef19dbaff51a774cee066a3255db5d3d))
2433
+ * **locale:** add check that 'name' field is configurable ([b895bc2](https://github.com/skbkontur/retail-ui/commit/b895bc237bb6c4de115d08f61749175cb0e314a0)), closes [#2370](https://github.com/skbkontur/retail-ui/issues/2370)
2434
+
2435
+
2436
+
2437
+
2438
+
2439
+ ## [2.16.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.16.0...@skbkontur/react-ui@2.16.1) (2021-04-28)
2440
+
2441
+
2442
+ ### Bug Fixes
2443
+
2444
+ * **SidePage:** fix sidepage counting for adding margins and shadows ([bb24bf6](https://github.com/skbkontur/retail-ui/commit/bb24bf6f08d953ba0cd935bbf17f88c125fcef8a))
2445
+
2446
+
2447
+
2448
+
2449
+
2450
+ # [2.16.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.15.0...@skbkontur/react-ui@2.16.0) (2021-04-12)
2451
+
2452
+
2453
+ ### Bug Fixes
2454
+
2455
+ * **CurrencyInput:** set default inputMode as "decimal" ([2a8154c](https://github.com/skbkontur/retail-ui/commit/2a8154c7c9b869457817978c8b1f3422e7be1da1)), closes [#1678](https://github.com/skbkontur/retail-ui/issues/1678)
2456
+ * **Toast:** increase z-index to always render on top of everything ([23d5178](https://github.com/skbkontur/retail-ui/commit/23d5178b96013768df751a2936bb1d81046747c1))
2457
+
2458
+
2459
+ ### Features
2460
+
2461
+ * **ComboBox:** support "inputMode" prop ([259ea32](https://github.com/skbkontur/retail-ui/commit/259ea32c2e3107d6f81bbd0da57969a1a49ca307))
2462
+ * **react-ui:** complete 8px theme ([#2322](https://github.com/skbkontur/retail-ui/issues/2322)) ([f6ac143](https://github.com/skbkontur/retail-ui/commit/f6ac1431c49191b6b151eace72b81eba0f23a6ff))
2463
+ * **TokenInput:** support "inputMode" prop ([452eb0c](https://github.com/skbkontur/retail-ui/commit/452eb0c995e80858467e235c480d04f54e685320))
2464
+
2465
+
2466
+
2467
+
2468
+
2469
+ # [2.15.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.14.1...@skbkontur/react-ui@2.15.0) (2021-03-18)
2470
+
2471
+
2472
+ ### Bug Fixes
2473
+
2474
+ * **Autocomplete:** use prop `active` from `RenderLayer` ([031940a](https://github.com/skbkontur/retail-ui/commit/031940ad30cbe84547741313017bfe04de52cfc3))
2475
+ * **Checkbox:** fix indeterminate state in IE11/Edge ([ff62f26](https://github.com/skbkontur/retail-ui/commit/ff62f2655e45ce20e1b151cdb08e570ab5d3c40d))
2476
+
2477
+
2478
+ ### Features
2479
+
2480
+ * **Textarea:** add `disableAnimation` and `extraRow` props ([#2317](https://github.com/skbkontur/retail-ui/issues/2317)) ([8351a7d](https://github.com/skbkontur/retail-ui/commit/8351a7d9cca38d4bb064829a516ac03b9a360d72)), closes [#2120](https://github.com/skbkontur/retail-ui/issues/2120)
2481
+
2482
+
2483
+
2484
+
2485
+
2486
+ ## [2.14.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.14.0...@skbkontur/react-ui@2.14.1) (2021-03-15)
2487
+
2488
+
2489
+ ### Bug Fixes
2490
+
2491
+ * **Toast,Center:** fix className forwarding ([#2313](https://github.com/skbkontur/retail-ui/issues/2313)) ([d643cc2](https://github.com/skbkontur/retail-ui/commit/d643cc2a52a9c3d11b5662e297dff8016ee92983)), closes [#2312](https://github.com/skbkontur/retail-ui/issues/2312)
2492
+
2493
+
2494
+
2495
+
2496
+
2497
+ # [2.14.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.13.0...@skbkontur/react-ui@2.14.0) (2021-03-05)
2498
+
2499
+
2500
+ ### Bug Fixes
2501
+
2502
+ * **Sticky:** avoid margins collapsing ([a39f3fc](https://github.com/skbkontur/retail-ui/commit/a39f3fcd24e2ffb2f163d86c6dbda4320f681f79))
2503
+ * **TokenInput:** don't call onBlur until focus is really lost ([7a6c856](https://github.com/skbkontur/retail-ui/commit/7a6c8563dd991d63511fe06561ee61a62d804c5e))
2504
+
2505
+
2506
+ ### Features
2507
+
2508
+ * **Loader:** add component prop ([40ea9b2](https://github.com/skbkontur/retail-ui/commit/40ea9b2b6e050927e503763e7ec33436dfa704df))
2509
+ * forward common props (className, style, data-*) ([#2257](https://github.com/skbkontur/retail-ui/issues/2257)) ([626ac07](https://github.com/skbkontur/retail-ui/commit/626ac07178e4d2139b03e6a6cb3e04a8e69475de))
2510
+ * **TokenInput:** onUnexpectedInput prop added ([cba1d76](https://github.com/skbkontur/retail-ui/commit/cba1d769a37620b25061b1e60541b67cf4fbb701))
2511
+
2512
+
2513
+
2514
+
2515
+
2516
+ # [2.13.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.12.1...@skbkontur/react-ui@2.13.0) (2021-01-27)
2517
+
2518
+
2519
+ ### Bug Fixes
2520
+
2521
+ * **Select:** fix typo in placeholder ([#2275](https://github.com/skbkontur/retail-ui/issues/2275)) ([bf1beb8](https://github.com/skbkontur/retail-ui/commit/bf1beb8288dd0376f43edf487c96267ef19e723a))
2522
+ * **Select:** reset search query on close ([#2265](https://github.com/skbkontur/retail-ui/issues/2265)) ([c168c50](https://github.com/skbkontur/retail-ui/commit/c168c508c97cfdb8c52267695e664d7b8fcff200)), closes [#2264](https://github.com/skbkontur/retail-ui/issues/2264)
2523
+ * **Textarea:** fix line breaks inside Gapped in IE; add story ([2cec37c](https://github.com/skbkontur/retail-ui/commit/2cec37cccb9c0b3c02e0436d28cbd4d361f07e6d))
2524
+
2525
+
2526
+ ### Features
2527
+
2528
+ * **Link:** new loading state ([#2271](https://github.com/skbkontur/retail-ui/issues/2271)) ([f494fd8](https://github.com/skbkontur/retail-ui/commit/f494fd844b50eeed0cbf60a1da27e213976c143f))
2529
+
2530
+
2531
+
2532
+
2533
+
2534
+ ## [2.12.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.12.0...@skbkontur/react-ui@2.12.1) (2020-12-25)
2535
+
2536
+
2537
+ ### Bug Fixes
2538
+
2539
+ * **ScrollContainer:** add onScroll prop & dont block window scroll if inner scroll isnt active ([#2252](https://github.com/skbkontur/retail-ui/issues/2252)) ([df069ab](https://github.com/skbkontur/retail-ui/commit/df069ab0cee3cedd322c5a29b04887ab2ca1cf97))
2540
+
2541
+
2542
+
2543
+
2544
+
2545
+ # [2.12.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.11.0...@skbkontur/react-ui@2.12.0) (2020-12-23)
2546
+
2547
+
2548
+ ### Features
2549
+
2550
+ * ssr support ([#2103](https://github.com/skbkontur/retail-ui/issues/2103)) ([506a7f6](https://github.com/skbkontur/retail-ui/commit/506a7f63337cc4ca2567581495959b1656fedd18))
2551
+
2552
+
2553
+
2554
+
2555
+
2556
+ # [2.11.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.10.0...@skbkontur/react-ui@2.11.0) (2020-12-17)
2557
+
2558
+
2559
+ ### Bug Fixes
2560
+
2561
+ * **ComboBox:** add an explicit call to focus on the Input ([89c71c3](https://github.com/skbkontur/retail-ui/commit/89c71c3cff0b5b88c79d3c24abd1edbaf84533b2)), closes [#1862](https://github.com/skbkontur/retail-ui/issues/1862)
2562
+ * **Modal.Header:** fix right padding with noClose ([50115db](https://github.com/skbkontur/retail-ui/commit/50115db98f4bf2ca70398b20504ce7ef04d71510))
2563
+ * **RadioGroup:** fix gaps between radios for 8px theme ([ef95117](https://github.com/skbkontur/retail-ui/commit/ef9511755a8869d75c52633148f5ef8d90ddad2b))
2564
+ * **ScrollContainer:** properly handle scroll's state change ([e61d825](https://github.com/skbkontur/retail-ui/commit/e61d825dcac36460fa56a7cb33907c277f32b78f))
2565
+
2566
+
2567
+ ### Features
2568
+
2569
+ * **Textarea:** add chars counter ([5580592](https://github.com/skbkontur/retail-ui/commit/558059275c6a563b5f9348570b7193b400ec3c00)), closes [#2208](https://github.com/skbkontur/retail-ui/issues/2208)
2570
+
2571
+
2572
+
2573
+
2574
+
2575
+ # [2.10.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.9.0...@skbkontur/react-ui@2.10.0) (2020-12-03)
2576
+
2577
+
2578
+ ### Bug Fixes
2579
+
2580
+ * **Icon20px,TopBar:** replace iconic font with svg icons ([67981e1](https://github.com/skbkontur/retail-ui/commit/67981e125a4e5fc93eb4f5e03c0ebcdfb638b6ed)), closes [#2223](https://github.com/skbkontur/retail-ui/issues/2223)
2581
+ * **Input:** fix disabled color in Safari ([5b35688](https://github.com/skbkontur/retail-ui/commit/5b356880aea96fbe716eaf3cb8d0cedf72f51542))
2582
+ * **Kebab:** use svg icon for large size ([c3d5b13](https://github.com/skbkontur/retail-ui/commit/c3d5b138ddcf1da45f487616fa940f7ac2d7e921)), closes [#2223](https://github.com/skbkontur/retail-ui/issues/2223)
2583
+ * **Modal:** fix cross's box-sizing ([e734022](https://github.com/skbkontur/retail-ui/commit/e7340220f6bfabaed5c5b74fd094767a47c8c4e0))
2584
+ * **Spinner,SpinnerOld:** remake fallback animation using SVG ([#2203](https://github.com/skbkontur/retail-ui/issues/2203)) ([fe32192](https://github.com/skbkontur/retail-ui/commit/fe321928785a464dd2c631266ab18ae508436caf)), closes [#2182](https://github.com/skbkontur/retail-ui/issues/2182)
2585
+ * **Textarea:** correct onCut and onPaste handlers ([ee04b65](https://github.com/skbkontur/retail-ui/commit/ee04b65f6b0421df06f08014de6a226c428cb49c))
2586
+
2587
+
2588
+ ### Features
2589
+
2590
+ * **ComboBox:** add leftIcon prop ([d7a4904](https://github.com/skbkontur/retail-ui/commit/d7a49047717a2a5acefdc2136e3edccc0a56a703))
2591
+ * **TopBarItem:** accept ReactElement as icon ([4fa4609](https://github.com/skbkontur/retail-ui/commit/4fa460994a0e1043cddfbb1f485cb761b801f3e2))
2592
+
2593
+
2594
+
2595
+
2596
+
2597
+ # [2.9.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.8.0...@skbkontur/react-ui@2.9.0) (2020-11-19)
2598
+
2599
+
2600
+ ### Features
2601
+
2602
+ * **TokenInput:** ability to edit tokens ([#2189](https://github.com/skbkontur/retail-ui/issues/2189)) ([7ae8ea6](https://github.com/skbkontur/retail-ui/commit/7ae8ea6f1625600f3935ccd15b0fa797813f4f7b)), closes [#2112](https://github.com/skbkontur/retail-ui/issues/2112)
2603
+
2604
+
2605
+
2606
+
2607
+
2608
+ # [2.8.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.7.0...@skbkontur/react-ui@2.8.0) (2020-11-09)
2609
+
2610
+
2611
+ ### Bug Fixes
2612
+
2613
+ * **Input:** allow to scroll and select text while disabled ([63f5176](https://github.com/skbkontur/retail-ui/commit/63f5176c0804758f5acdd8d21c1d9c5d1eb17250)), closes [#2192](https://github.com/skbkontur/retail-ui/issues/2192) [#2054](https://github.com/skbkontur/retail-ui/issues/2054)
2614
+ * **ModalStack:** add fallback for `fbemitter` from old versions ([c1ece9c](https://github.com/skbkontur/retail-ui/commit/c1ece9ce279a113c82fa325a3001d0067db18436))
2615
+ * **ScrollContainer:** don't hide horizontal scrollbars ([d8f734f](https://github.com/skbkontur/retail-ui/commit/d8f734fe7e050b929c76d5ecd4ef636cc6c3ed3e)), closes [#2190](https://github.com/skbkontur/retail-ui/issues/2190)
2616
+ * **ScrollContainer:** fix scroll state calculation ([4eb0142](https://github.com/skbkontur/retail-ui/commit/4eb0142844ca9145da1aae4c5a9a1b3cd5045310)), closes [#2190](https://github.com/skbkontur/retail-ui/issues/2190)
2617
+ * **Textarea:** fix placeholder's color for FF ([9eb31d5](https://github.com/skbkontur/retail-ui/commit/9eb31d58105a475ec0ecac28c24181d4526d730b)), closes [#2186](https://github.com/skbkontur/retail-ui/issues/2186)
2618
+ * **TokenInput:** deselect active tokens after edit ([c40f067](https://github.com/skbkontur/retail-ui/commit/c40f06748590f5cb208e139811ff525295c800c4)), closes [#1879](https://github.com/skbkontur/retail-ui/issues/1879)
2619
+ * **TokenInput:** refresh items after paste from clipboard ([fcf09c6](https://github.com/skbkontur/retail-ui/commit/fcf09c6000da720a3f585b288edc8157a92d8de7))
2620
+ * **TokenInput:** select first item ([2ff4df2](https://github.com/skbkontur/retail-ui/commit/2ff4df23ecfb20601a674b11f3c324aa1fa87d01)), closes [#1878](https://github.com/skbkontur/retail-ui/issues/1878) [#1187](https://github.com/skbkontur/retail-ui/issues/1187)
2621
+
2622
+
2623
+ ### Features
2624
+
2625
+ * **DateInput:** add prop `autoFocus` ([2960ab9](https://github.com/skbkontur/retail-ui/commit/2960ab9af4fc2519e15caf5782418999efcb9270))
2626
+
2627
+
2628
+
2629
+
2630
+
2631
+ # [2.7.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.6.0...@skbkontur/react-ui@2.7.0) (2020-10-29)
2632
+
2633
+
2634
+ ### Bug Fixes
2635
+
2636
+ * **Autocomplete:** support relative width ([#2104](https://github.com/skbkontur/retail-ui/issues/2104)) ([3bd9a13](https://github.com/skbkontur/retail-ui/commit/3bd9a13b2309b9051054c419500786d98196e6c9))
2637
+ * **ComboBox:** support () => null in renderNotFound ([bb7a01a](https://github.com/skbkontur/retail-ui/commit/bb7a01ae96436baca900651378545adb6138a4c1))
2638
+ * **modal:** fix crossicon into svg ([996dc90](https://github.com/skbkontur/retail-ui/commit/996dc90a15d45d13ff7d98129a863579a05ec915))
2639
+ * **modal:** fix modal blackout if sidepage have bigger z-index ([24c9e1d](https://github.com/skbkontur/retail-ui/commit/24c9e1df487b953e77fa968794d429bb781ef378)), closes [#2175](https://github.com/skbkontur/retail-ui/issues/2175)
2640
+ * **modalclose:** up in Zindex, now upper than ModalHeader ([de8d81c](https://github.com/skbkontur/retail-ui/commit/de8d81cc343d31a4a6c49b6cc065086f817a216b))
2641
+
2642
+
2643
+ ### Features
2644
+
2645
+ * **modalbody:** add prop noPadding ([7163909](https://github.com/skbkontur/retail-ui/commit/71639091d9fa2e96fe4bd803245fd22a09045e8d))
2646
+
2647
+
2648
+
2649
+
2650
+
2651
+
2652
+ # [2.6.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.5.0...@skbkontur/react-ui@2.6.0) (2020-10-13)
2653
+
2654
+
2655
+ ### Bug Fixes
2656
+
2657
+ * **customization:** replace textareaHeight with textareaMinHeight ([42e3d4f](https://github.com/skbkontur/retail-ui/commit/42e3d4f04956235572c967f1891615bf409b5ed8))
2658
+ * **DatePicker:** return TodayLink's border ([9206bee](https://github.com/skbkontur/retail-ui/commit/9206bee72389bfa00885c8ab5d0d7431e11e0d1a))
2659
+ * **Textarea:** fix background color regress ([#2170](https://github.com/skbkontur/retail-ui/issues/2170)) ([d206ff2](https://github.com/skbkontur/retail-ui/commit/d206ff2bbfb174e7799241fabcac9123a607950b))
2660
+ * **Textarea:** fix min height ([2777ac5](https://github.com/skbkontur/retail-ui/commit/2777ac5fd57370256f44606f7baa12373cf1b5a5)), closes [#2120](https://github.com/skbkontur/retail-ui/issues/2120) [#2160](https://github.com/skbkontur/retail-ui/issues/2160)
2661
+
2662
+
2663
+ ### Features
2664
+
2665
+ * **Toggle:** add use 'children' ([33e725c](https://github.com/skbkontur/retail-ui/commit/33e725c69373cd44dc7a2ec6fd2d4c1855b456fb)), closes [#1723](https://github.com/skbkontur/retail-ui/issues/1723)
2666
+ * **Tooltip:** add manual control ([ad0d0a2](https://github.com/skbkontur/retail-ui/commit/ad0d0a29da1f13628cc54c92b36b38dfb45156a6)), closes [#914](https://github.com/skbkontur/retail-ui/issues/914)
2667
+
2668
+
2669
+
2670
+
2671
+
2672
+
2673
+ # [2.5.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.4.3...@skbkontur/react-ui@2.5.0) (2020-09-23)
2674
+
2675
+
2676
+ ### Bug Fixes
2677
+
2678
+ * **Button:** checked + disabled кнопка сдвигает текст на 1 px ([da2e822](https://github.com/skbkontur/retail-ui/commit/da2e822df3d12c2afb743e941120bc52f910efe5))
2679
+ * **spinner:** fix spinner fallback mini ([9a766e3](https://github.com/skbkontur/retail-ui/commit/9a766e3b9110dfa19babf3446555f5d8da68b182))
2680
+ * **Tab:** return operability with links from react-router-dom ([8da96a9](https://github.com/skbkontur/retail-ui/commit/8da96a97511459f8164862a1dc61d4a591fff466))
2681
+
2682
+
2683
+ ### Features
2684
+
2685
+ * **Switcher:** Добавляет disabled состояние ([d5b13a8](https://github.com/skbkontur/retail-ui/commit/d5b13a8d0c345fc5bba97f6b407b9b2df0f78d2c))
2686
+
2687
+
2688
+
2689
+
2690
+
2691
+ ## [2.4.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.4.2...@skbkontur/react-ui@2.4.3) (2020-09-16)
2692
+
2693
+
2694
+ ### Bug Fixes
2695
+
2696
+ * **Fias:** add "version" param to all requests ([6c1f200](https://github.com/skbkontur/retail-ui/commit/6c1f200f5eb1b04f753eeb0860340049bfd16a16)), closes [#2126](https://github.com/skbkontur/retail-ui/issues/2126)
2697
+ * **Input:** fixed wrong right mask position ([88116d6](https://github.com/skbkontur/retail-ui/commit/88116d6994c58ebea5dacfa1e0ffa498fe2f1963)), closes [#1379](https://github.com/skbkontur/retail-ui/issues/1379)
2698
+ * **PasswordInput:** change eye icon ([e36c1ba](https://github.com/skbkontur/retail-ui/commit/e36c1baa647993450e9f88e7e48f2f6f24066745)), closes [#2111](https://github.com/skbkontur/retail-ui/issues/2111)
2699
+ * **Popup:** prevent wrong styles order ([08c7c4c](https://github.com/skbkontur/retail-ui/commit/08c7c4ce45238f72357b1ab2210dccda337f5f45)), closes [#2005](https://github.com/skbkontur/retail-ui/issues/2005)
2700
+ * **Select.styles:** fix span width with left icon ([e2dceec](https://github.com/skbkontur/retail-ui/commit/e2dceec963c9c2b038abc13e8012666635b18098))
2701
+ * **theme:** add var 'tokenInputTextColor' ([cbad454](https://github.com/skbkontur/retail-ui/commit/cbad454a701f31fb97f33da423c0317e8340f429)), closes [#2099](https://github.com/skbkontur/retail-ui/issues/2099)
2702
+
2703
+
2704
+
2705
+
2706
+
2707
+ ## [2.4.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.4.1...@skbkontur/react-ui@2.4.2) (2020-08-31)
2708
+
2709
+
2710
+ ### Bug Fixes
2711
+
2712
+ * **Link, Button:** use hover styles from theme ([e23b3e1](https://github.com/skbkontur/retail-ui/commit/e23b3e186890a5b02072a142c54eab0df3b743df)), closes [#2072](https://github.com/skbkontur/retail-ui/issues/2072)
2713
+ * **Loader:** обновление позиции лоадера при переключении active на true ([acb5bbe](https://github.com/skbkontur/retail-ui/commit/acb5bbe31a9d2d1132d88862a6be94bb8ef227c1)), closes [#2092](https://github.com/skbkontur/retail-ui/issues/2092)
2714
+ * **MenuItem:** pass state into custom component ([073f1fa](https://github.com/skbkontur/retail-ui/commit/073f1fa6e542e06cc4f830e418118ace8cb4648f))
2715
+
2716
+
2717
+
2718
+
2719
+
2720
+ ## [2.4.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.4.0...@skbkontur/react-ui@2.4.1) (2020-08-07)
2721
+
2722
+
2723
+ ### Bug Fixes
2724
+
2725
+ * **Input:** fix disabled bg color for 8px theme ([a4c8b28](https://github.com/skbkontur/retail-ui/commit/a4c8b286ebbf732a8c919527243beb76674647db))
2726
+ * **react-ui:** fix controlHeight vars for non-8px themes ([db08994](https://github.com/skbkontur/retail-ui/commit/db089943e6e342551bcc1e4ae3b1a31e10e99a1c))
2727
+ * **Switcher:** add button vars ([2b932df](https://github.com/skbkontur/retail-ui/commit/2b932df248da61bee182af96c208ec6626338cdb))
2728
+ * **Switcher:** add variables for label ([fe0f8d1](https://github.com/skbkontur/retail-ui/commit/fe0f8d16c76f4cc636c9729ba71c66021e885291))
2729
+ * **Switcher:** adjust button's paddings for 8px theme ([3d4ad29](https://github.com/skbkontur/retail-ui/commit/3d4ad29975cc0aa11c1a057e438f956513fceee7))
2730
+ * **Tab:** fix Indicator position for 8px theme ([19b5b7f](https://github.com/skbkontur/retail-ui/commit/19b5b7fc71b02f3030ac4aac9e251f418a611955))
2731
+ * **Tab:** use large size values in 8px theme ([a2a1f0d](https://github.com/skbkontur/retail-ui/commit/a2a1f0d28195c0bbd1f2cde585c99f66a26935ab))
2732
+ * **TokenInput:** fix styles issue ([5ce5578](https://github.com/skbkontur/retail-ui/commit/5ce55783b10ae676afe47ccfea5f0d952f1c7981)), closes [#1952](https://github.com/skbkontur/retail-ui/issues/1952)
2733
+ * **TokenInput:** use font-size and line-height vars; align tokens ([8a9dc0b](https://github.com/skbkontur/retail-ui/commit/8a9dc0b9bdd3d2fc42279035935f34a11f404bb6))
2734
+
2735
+
2736
+
2737
+
2738
+
2739
+ # [2.4.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.3.2...@skbkontur/react-ui@2.4.0) (2020-07-17)
2740
+
2741
+
2742
+ ### Bug Fixes
2743
+
2744
+ * **ThemeEditor:** restore scroll to variable by link click ([0454ae6](https://github.com/skbkontur/retail-ui/commit/0454ae6d2b92cd61935fc2ded857b79aef86e9bc))
2745
+ * **ThemeFactory:** don't ignore computed properties in factory methods ([9eb6cd8](https://github.com/skbkontur/retail-ui/commit/9eb6cd844a38ed182d35dde58bb443abcb1ffd23))
2746
+ * **ThemePlayground:** fix ThemeEditor's styles ([0ab8225](https://github.com/skbkontur/retail-ui/commit/0ab82253bfa26f65a4998a51cbf0742a1d0f90a5))
2747
+
2748
+
2749
+ ### Features
2750
+
2751
+ * **react-ui:** add 8px theme ([652f193](https://github.com/skbkontur/retail-ui/commit/652f193c244fcf6bc82afe324c46ccec1f63bff1))
2752
+ * **ThemePlayground:** add 8px toggle ([7cd6681](https://github.com/skbkontur/retail-ui/commit/7cd668178b5a65bd5564e86254bf8c4f5faf8839))
2753
+
2754
+
2755
+
2756
+
2757
+
2758
+ ## [2.3.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.3.1...@skbkontur/react-ui@2.3.2) (2020-07-08)
2759
+
2760
+
2761
+ ### Bug Fixes
2762
+
2763
+ * **Button:** fix styles order ([d372600](https://github.com/skbkontur/retail-ui/commit/d3726009a420143222e562eb9a035835b46ce38c)), closes [#2061](https://github.com/skbkontur/retail-ui/issues/2061) [#1952](https://github.com/skbkontur/retail-ui/issues/1952)
2764
+ * **InputLikeText:** add class for icon on right side ([6235e21](https://github.com/skbkontur/retail-ui/commit/6235e21a504c09799c601d35b64465df02374f05)), closes [#2025](https://github.com/skbkontur/retail-ui/issues/2025)
2765
+
2766
+
2767
+
2768
+
2769
+
2770
+ ## [2.3.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.3.0...@skbkontur/react-ui@2.3.1) (2020-06-09)
2771
+
2772
+
2773
+ ### Bug Fixes
2774
+
2775
+ * **FxInput:** add prop `disabled` to button `restore` ([f4b3723](https://github.com/skbkontur/retail-ui/commit/f4b372386b1d7fa9a9ae761e6d20d3ad0d097386)), closes [#2050](https://github.com/skbkontur/retail-ui/issues/2050)
2776
+ * **Gapped:** fix left margin for single child ([7bf690a](https://github.com/skbkontur/retail-ui/commit/7bf690afabfff99095e2b1d183c9744e886d7917))
2777
+ * **react-ui:** use NODE_ENV=test for animations disabling ([d1fda47](https://github.com/skbkontur/retail-ui/commit/d1fda4755e3b38248aa51d9e06a4a068c13b770e))
2778
+
2779
+
2780
+
2781
+
2782
+
2783
+ # [2.3.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.2.0...@skbkontur/react-ui@2.3.0) (2020-05-27)
2784
+
2785
+
2786
+ ### Bug Fixes
2787
+
2788
+ * **[combobox]:** fix DebounsedSearch bug and several bugs in test wrap ([507c189](https://github.com/skbkontur/retail-ui/commit/507c189c91a3ecdbfcf965fc41ee6a712c81bd51)), closes [#2031](https://github.com/skbkontur/retail-ui/issues/2031)
2789
+ * **Checkbox:** change variable theme `chbCheckedActiveBg` ([7fd2464](https://github.com/skbkontur/retail-ui/commit/7fd2464d4f63bc2ef0bea7561146ab7907e0255e)), closes [#1935](https://github.com/skbkontur/retail-ui/issues/1935)
2790
+ * **Input:** recovery of event trigger: onChange, onKeyDown, onKeyPress ([4aebf7a](https://github.com/skbkontur/retail-ui/commit/4aebf7afbbe1995383db739fa4f98fdbcd452462)), closes [#1938](https://github.com/skbkontur/retail-ui/issues/1938)
2791
+ * **MaskedInput:** add specific property of the IE/EDGE ([271a4c2](https://github.com/skbkontur/retail-ui/commit/271a4c2d330562a63a1753fee93ea8ddde6aa28b)), closes [#1911](https://github.com/skbkontur/retail-ui/issues/1911)
2792
+ * **react-ui:** fix tree-shaking that isn't working ([9545add](https://github.com/skbkontur/retail-ui/commit/9545add7748119fcb252e45188ebab953c47bf8e))
2793
+ * **SidePage:** add ignore mousedown on window scrollbar ([0aa3eec](https://github.com/skbkontur/retail-ui/commit/0aa3eec296cd38400870fb9d6503e8bd71c5882c)), closes [#1934](https://github.com/skbkontur/retail-ui/issues/1934)
2794
+ * **tooltip:** fix active props to RenderLayer ([347004e](https://github.com/skbkontur/retail-ui/commit/347004eb52ef52cd637379062ea8ca6c0cab7849))
2795
+ * **tooltip:** only hover&focus ([b61fb3b](https://github.com/skbkontur/retail-ui/commit/b61fb3bbadb2dca467ac42d5aef773f1f293a4ff))
2796
+
2797
+
2798
+ ### Features
2799
+
2800
+ * **Checkbox:** add variable theme `chbCheckedActiveShadow` ([183d198](https://github.com/skbkontur/retail-ui/commit/183d198bfc4885eb0fbcd7dcda34f6245f22d2f7))
2801
+ * **Link:** fill rel attr with 'noopener noreferrer' ([8f3b79b](https://github.com/skbkontur/retail-ui/commit/8f3b79b82e3a0c5f63761f7f25b02914735808ac))
2802
+
2803
+
2804
+
2805
+
2806
+
2807
+ # [2.2.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.1.1...@skbkontur/react-ui@2.2.0) (2020-04-29)
2808
+
2809
+
2810
+ ### Bug Fixes
2811
+
2812
+ * **Input:** add setTimeout for cases with autoFocus ([e90ebbc](https://github.com/skbkontur/retail-ui/commit/e90ebbcf57e33553bb7d05b44a61f76b50c0ef58)), closes [#1995](https://github.com/skbkontur/retail-ui/issues/1995)
2813
+ * **Select:** add support any types value to filterItem ([d63a4d6](https://github.com/skbkontur/retail-ui/commit/d63a4d61a267a6de9389999cdd5c8cb1d27e8233)), closes [#1996](https://github.com/skbkontur/retail-ui/issues/1996)
2814
+ * **Select:** re-fix commit with hash "e90ebbc" ([125d11b](https://github.com/skbkontur/retail-ui/commit/125d11b855c6a3fc99eaa9b38b181ac86be62be4)), closes [#1995](https://github.com/skbkontur/retail-ui/issues/1995)
2815
+ * **Select:** set width to 100% ([b924d00](https://github.com/skbkontur/retail-ui/commit/b924d00aa6d01ffbe528f2223ffa2f4c7128ae3d)), closes [#1994](https://github.com/skbkontur/retail-ui/issues/1994)
2816
+ * **SidePage:** make sidepage to not overlap the rest of the page ([e180c31](https://github.com/skbkontur/retail-ui/commit/e180c3148048b452e1b3b67f9ed0f4b667334ebb)), closes [#1949](https://github.com/skbkontur/retail-ui/issues/1949)
2817
+ * **Tooltip:** set default value for `box-sizing`, due to `reset.css` ([5afa08d](https://github.com/skbkontur/retail-ui/commit/5afa08df20a459bde885f26cb4dafb06c296413d)), closes [#2008](https://github.com/skbkontur/retail-ui/issues/2008)
2818
+ * **TopBar:** fix noShadow prop ([4ba47af](https://github.com/skbkontur/retail-ui/commit/4ba47af14eb2baf05383bf9270ae99a6195e0e4f)), closes [#1997](https://github.com/skbkontur/retail-ui/issues/1997)
2819
+
2820
+
2821
+ ### Features
2822
+
2823
+ * **TokenInput:** new parameter 'onAddItem' in 'renderAddButton' prop ([6bcfcc6](https://github.com/skbkontur/retail-ui/commit/6bcfcc6a1a2c32592d361b657b0888402219681e))
2824
+
2825
+
2826
+
2827
+
2828
+
2829
+ ## [2.1.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.1.0...@skbkontur/react-ui@2.1.1) (2020-04-14)
2830
+
2831
+
2832
+ ### Bug Fixes
2833
+
2834
+ * **Radio:** add styles for `checked:hover` ([1e99755](https://github.com/skbkontur/retail-ui/commit/1e9975532cc8e4edf15da2572c7914b03037d12a)), closes [#1979](https://github.com/skbkontur/retail-ui/issues/1979)
2835
+ * **Toggle:** add custom boxShadow for toggle ([1922285](https://github.com/skbkontur/retail-ui/commit/1922285bd65cca03b79047f8b09f484ec433bba2))
2836
+
2837
+
2838
+
2839
+
2840
+
2841
+ # [2.1.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@2.0.0...@skbkontur/react-ui@2.1.0) (2020-04-07)
2842
+
2843
+
2844
+ ### Bug Fixes
2845
+
2846
+ * **logotype:** paddings, icon with figma ([6a84800](https://github.com/skbkontur/retail-ui/commit/6a848008b7f431b7294786f5e36155be5b433565))
2847
+ * **textarea:** fix react warning ([647f9f4](https://github.com/skbkontur/retail-ui/commit/647f9f4ca0fa7484d974a4ea7a11a0b49d087bd0))
2848
+
2849
+
2850
+ ### Features
2851
+
2852
+ * **Modal:** add 'disableFocusLock' prop ([c046c38](https://github.com/skbkontur/retail-ui/commit/c046c386d1439044ba7ee869e9ce57b203841b90))
2853
+ * **ThemeFactory:** accept a base theme as a second arg of create method ([b92b20b](https://github.com/skbkontur/retail-ui/commit/b92b20bcac53face9280dd5951e0cb467b34d4a4))
2854
+ * **TokenInput:** new prop 'renderAddButton' ([06a2010](https://github.com/skbkontur/retail-ui/commit/06a201064db9f929aa8b7ff8e35f291457f328c8))
2855
+ * **TokenInput:** new prop "onInputValueChange" ([b621c8d](https://github.com/skbkontur/retail-ui/commit/b621c8d8eadbdbb88a7d6fcfd88522fc5ed879a4))
2856
+ * **TokenInput:** new public api method 'reset' ([14df810](https://github.com/skbkontur/retail-ui/commit/14df810b1b53896c62c18d16dc0a1d1aef94ee2f))
2857
+
2858
+
2859
+
2860
+
2861
+
2862
+ # 2.0.0 (2020-03-24)
2863
+
2864
+
2865
+ ### Bug Fixes
2866
+
2867
+ * button/checkbox theme styles actualize ([10ddc66](https://github.com/skbkontur/retail-ui/commit/10ddc668e84bc997a0a332dedace75982d5ba9bf))
2868
+ * **checkbox:** sync styles between defalt and flat themes ([e0dcc7b](https://github.com/skbkontur/retail-ui/commit/e0dcc7bc02c281df74e0b7bf841d66065156ea14))
2869
+ * **fias:** warning throw exeption ([bb5aa2c](https://github.com/skbkontur/retail-ui/commit/bb5aa2cce8ae33f42fa9fc80b5708b9b5be211df))
2870
+ * **TopBar:** add typings for topbar dropdown props ([0c4d88c](https://github.com/skbkontur/retail-ui/commit/0c4d88c38742b1c07d758673e98d4cc09066564e)), closes [#1497](https://github.com/skbkontur/retail-ui/issues/1497)
2871
+
2872
+
2873
+ ### Code Refactoring
2874
+
2875
+ * **Modal:** rename Header/Footer/Body classes ([c373982](https://github.com/skbkontur/retail-ui/commit/c3739827c93e83b5080fbd177711ab7d0f2e0f6f)), closes [#1883](https://github.com/skbkontur/retail-ui/issues/1883)
2876
+ * **SidePage:** use latest Context API instead of HOC ([819cdf7](https://github.com/skbkontur/retail-ui/commit/819cdf7d44952f73d59a6a1044bf3cd94d7ca06d)), closes [#1883](https://github.com/skbkontur/retail-ui/issues/1883)
2877
+ * **Tab:** use latest Context API instead of HOC ([10e6c32](https://github.com/skbkontur/retail-ui/commit/10e6c3213d039bc18251af0b38e20a263b00019b))
2878
+ * **TopBar:** rename inner classes ([ff974b4](https://github.com/skbkontur/retail-ui/commit/ff974b46879d8f8e27a0e3679699db4863eaecc3)), closes [#1883](https://github.com/skbkontur/retail-ui/issues/1883)
2879
+
2880
+
2881
+ ### Features
2882
+
2883
+ * move all theme variables inside js, remove less support ([e219505](https://github.com/skbkontur/retail-ui/commit/e2195058c70424dc7e097cc8d174afbb05a9fd7d))
2884
+ * **localecontext:** add to export ([ad7bb41](https://github.com/skbkontur/retail-ui/commit/ad7bb41316378fe37af8cc6ad9efe15537804f7a))
2885
+ * **ThemeContext:** add to export ([bdeb112](https://github.com/skbkontur/retail-ui/commit/bdeb1123e6eb393b56c27c50ddff2f6721d54850))
2886
+
2887
+
2888
+ ### Performance Improvements
2889
+
2890
+ * **Button:** memoize css-in-js styles ([a7934d0](https://github.com/skbkontur/retail-ui/commit/a7934d0a00fe68a1d8fea55737669394730f6fe2))
2891
+ * **calendar:** memoize css-in-js styles ([7865514](https://github.com/skbkontur/retail-ui/commit/7865514f6849088aa4665ff85bfec4825d932147))
2892
+ * **center:** memoize css-in-js styles ([275593a](https://github.com/skbkontur/retail-ui/commit/275593ab15eaa84b75412163956b45c7203a91ce))
2893
+ * **checkbox:** memoize css-in-js styles ([d808cd0](https://github.com/skbkontur/retail-ui/commit/d808cd02dae9ba9a46efb01033b203f33b3259c8))
2894
+ * **customcombobox:** memoize css-in-js styles ([984d565](https://github.com/skbkontur/retail-ui/commit/984d565adb51588f1d8ff0fbd50197a51064f169))
2895
+ * **DateFragmentsView:** memoize css-in-js styles ([49c8897](https://github.com/skbkontur/retail-ui/commit/49c8897437b79987f2b0c78b8f4ec331d74c7fb9))
2896
+ * **datepicker:** memoize css-in-js styles ([364d49e](https://github.com/skbkontur/retail-ui/commit/364d49eb8a836423ab1e4df5c69af14deb0c1187))
2897
+ * **dateselect:** memoize css-in-js styles ([7d4c1ac](https://github.com/skbkontur/retail-ui/commit/7d4c1ac3587568a6ffd5b1e32b55eb7b8db8f4c5))
2898
+ * **Fias:** memoize css-in-js styles ([02a3d4e](https://github.com/skbkontur/retail-ui/commit/02a3d4e6639fffee9302ef6791e6d3185bd18037))
2899
+ * **group:** memoize css-in-js styles ([b68f50b](https://github.com/skbkontur/retail-ui/commit/b68f50bdfa427abea6b1860dbcf4753670a02c83))
2900
+ * **hint:** memoize css-in-js styles ([c3117bb](https://github.com/skbkontur/retail-ui/commit/c3117bb1ec60ee350c28d74a957c37e8cbdafe06))
2901
+ * **icon16px:** memoize css-in-js styles ([a2e5ae5](https://github.com/skbkontur/retail-ui/commit/a2e5ae5072769c4805cf4b3ced90b9eccd047079))
2902
+ * **icon20px:** memoize css-in-js styles ([83fa890](https://github.com/skbkontur/retail-ui/commit/83fa8909ada6927bcb4dc26c65d9b9d1fbc1a143))
2903
+ * **Input:** memoize css-in-js styles ([05c8344](https://github.com/skbkontur/retail-ui/commit/05c8344489f6929b1246c08c498b49304229080a))
2904
+ * **InputLikeText:** memoize css-in-js styles ([fb5527d](https://github.com/skbkontur/retail-ui/commit/fb5527dacf63545004387d4d8f194cd2efc60485))
2905
+ * **internalmenu:** memoize css-in-js styles ([5ca5d8f](https://github.com/skbkontur/retail-ui/commit/5ca5d8f5693da7bbfd2f2b53b96eb50e0cdb25f2))
2906
+ * **kebab:** memoize css-in-js styles ([c95a77a](https://github.com/skbkontur/retail-ui/commit/c95a77a5a1b2ac172d54b9c67e93bb32fb96ed66))
2907
+ * **link:** memoize css-in-js styles ([e204263](https://github.com/skbkontur/retail-ui/commit/e2042636ac17b988c098a8ca7f0a26fdd99d7506))
2908
+ * **loader:** memoize css-in-js styles ([0fcab14](https://github.com/skbkontur/retail-ui/commit/0fcab14f19dcfa87aff058e1470efe1c69bc5559))
2909
+ * **logotype:** memoize css-in-js styles ([16449a1](https://github.com/skbkontur/retail-ui/commit/16449a154cd090ad367caeffb49df23dc50a6b88))
2910
+ * **MaskedInput:** memoize css-in-js styles ([7cd3695](https://github.com/skbkontur/retail-ui/commit/7cd3695162faa7b5d2ebdf5f7b40c6586aeeaf60))
2911
+ * **menu:** memoize css-in-js styles ([ad46309](https://github.com/skbkontur/retail-ui/commit/ad46309ccf6e47946be7f087402d289d6c1a1274))
2912
+ * **menuheader:** memoize css-in-js styles ([eff22b1](https://github.com/skbkontur/retail-ui/commit/eff22b16114d5e030ec258c29a6032f9ba9604bd))
2913
+ * **menuitem:** memoize css-in-js styles ([02a2275](https://github.com/skbkontur/retail-ui/commit/02a227505fc55b6b16c9429ae70d29b8407d8739))
2914
+ * **menuseparator:** memoize css-in-js styles ([e9ac810](https://github.com/skbkontur/retail-ui/commit/e9ac8102b814aa3377dec2c011d66f1e2aa43882))
2915
+ * **modal:** memoize css-in-js styles ([f51e7bf](https://github.com/skbkontur/retail-ui/commit/f51e7bf87d5b66b0c5038b893369beb6b0b7dc41))
2916
+ * **paging:** memoize css-in-js styles ([56f247c](https://github.com/skbkontur/retail-ui/commit/56f247c5f367f3576f1443b8647516a1af873f37))
2917
+ * **PasswordInput:** memoize css-in-js styles ([f09a61e](https://github.com/skbkontur/retail-ui/commit/f09a61e0c7e23452425ce7abb89dc698aded8946))
2918
+ * **popup:** memoize css-in-js styles ([da09c09](https://github.com/skbkontur/retail-ui/commit/da09c098264afe2780b927cd8811a9fba9835703))
2919
+ * **radio:** memoize css-in-js styles ([ca776fa](https://github.com/skbkontur/retail-ui/commit/ca776fa9bc1a42fd501d87a17a90e21170f0b8d8))
2920
+ * **radiogroup:** memoize css-in-js styles ([c3dcc1d](https://github.com/skbkontur/retail-ui/commit/c3dcc1dbee94759806636e54bfda31f073862405))
2921
+ * **resizedetector:** memoize css-in-js styles ([1c72573](https://github.com/skbkontur/retail-ui/commit/1c72573622c541d599a7ce9611dd382d26bed595))
2922
+ * **scrollcontainer:** memoize css-in-js styles ([3e0e58f](https://github.com/skbkontur/retail-ui/commit/3e0e58f46df6ca42affaadbedda18f94ad80b237))
2923
+ * **Select:** memoize css-in-js styles ([1424478](https://github.com/skbkontur/retail-ui/commit/142447824bf212d4b44cac09fe5e791ee9d96139))
2924
+ * **sidepage:** memoize css-in-js styles ([4dd2a2a](https://github.com/skbkontur/retail-ui/commit/4dd2a2a269cb1759ba45b1134f32bbbfc488ef9a))
2925
+ * **spinner:** memoize css-in-js styles ([edb1835](https://github.com/skbkontur/retail-ui/commit/edb1835821ceb2e8f103484cf705f443e1d7400f))
2926
+ * **spinnericon:** memoize css-in-js styles ([7802c51](https://github.com/skbkontur/retail-ui/commit/7802c510f212b5eff44aa10ceaddecd5690fea45))
2927
+ * **sticky:** memoize css-in-js styles ([9882179](https://github.com/skbkontur/retail-ui/commit/988217911bcc3ebe39af440d23549eeed10e5d3b))
2928
+ * **switcher:** memoize css-in-js styles ([f93bf4c](https://github.com/skbkontur/retail-ui/commit/f93bf4c5674b530237c792a44ba067750626c7db))
2929
+ * **tabs:** memoize css-in-js styles ([5a7b13a](https://github.com/skbkontur/retail-ui/commit/5a7b13a995122d2d5f203f0baeed026f211b74a8))
2930
+ * **textarea:** memoize css-in-js styles ([b4dec2b](https://github.com/skbkontur/retail-ui/commit/b4dec2be3a080bcf20592013557b4873361a4f34))
2931
+ * **themeplayground:** memoize css-in-js styles ([c522503](https://github.com/skbkontur/retail-ui/commit/c52250362fe6a434e9ccbca8e66b22107741a397))
2932
+ * **themeshowcase:** memoize css-in-js styles ([89bd313](https://github.com/skbkontur/retail-ui/commit/89bd313fe8292d2854d46b1239adbc1325b454ec))
2933
+ * **toast:** memoize css-in-js styles ([20538cf](https://github.com/skbkontur/retail-ui/commit/20538cf272435401f0965904fc3dca37fc479a7f))
2934
+ * **toggle:** memoize css-in-js styles ([af43674](https://github.com/skbkontur/retail-ui/commit/af4367448c4f8c62362de50afb4f130324ca7f03))
2935
+ * **Token:** memoize css-in-js styles ([426a7fb](https://github.com/skbkontur/retail-ui/commit/426a7fb76f0b4fc31ec2c261e84ee32c5fb90608))
2936
+ * **TokenInput:** memoize css-in-js styles ([26f97b5](https://github.com/skbkontur/retail-ui/commit/26f97b5550224b10755020dada2b4bd84d0bee4d))
2937
+ * **tooltip:** memoize css-in-js styles ([84d5966](https://github.com/skbkontur/retail-ui/commit/84d59663e910c649bfe4631ba263f0d7d3916404))
2938
+ * **TopBar:** memoize css-in-js styles ([291e395](https://github.com/skbkontur/retail-ui/commit/291e39515608ab6f76f5970a4551a53b6b8d73dd))
2939
+
2940
+
2941
+ ### BREAKING CHANGES
2942
+
2943
+ * **TopBar:** Item/ButtonItem/Devider/Logout/Organizations/User have been renamed with 'TopBar'-prefix, e.g.: TopBarItem, etc.
2944
+ * **Tab:** use Context API from react@16.6
2945
+ * **SidePage:** use Context API from react@16.6
2946
+ * **Modal:** Header/Footer/Body classes and props inside Modal have been renamed, e.g.: Header
2947
+ -> ModalHeader, HeaderProps -> ModalHeaderProps, etc.
2948
+
2949
+
2950
+
2951
+
2952
+
2953
+ # [1.11.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.10.0...retail-ui@1.11.0) (2020-03-24)
2954
+
2955
+
2956
+ ### Bug Fixes
2957
+
2958
+ * **DatePicker:** fix autoFocus behavior ([f4bbce5](https://github.com/skbkontur/retail-ui/commit/f4bbce5))
2959
+
2960
+
2961
+ ### Features
2962
+
2963
+ * **TokenInput:** new prop 'maxMenuHeight' ([ea1da66](https://github.com/skbkontur/retail-ui/commit/ea1da66))
2964
+
2965
+
2966
+
2967
+
2968
+
2969
+ # [1.10.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.9.0...retail-ui@1.10.0) (2020-03-11)
2970
+
2971
+
2972
+ ### Bug Fixes
2973
+
2974
+ * **Input:** disable user select mask [#1917](https://github.com/skbkontur/retail-ui/issues/1917) ([ef7038f](https://github.com/skbkontur/retail-ui/commit/ef7038f))
2975
+ * **SidePage:** make non-blocking SidePage responsive ([#1904](https://github.com/skbkontur/retail-ui/issues/1904)) ([1c6e71a](https://github.com/skbkontur/retail-ui/commit/1c6e71a))
2976
+ * **TopBar:** add typings for topbar dropdown props ([784ae38](https://github.com/skbkontur/retail-ui/commit/784ae38)), closes [#1497](https://github.com/skbkontur/retail-ui/issues/1497)
2977
+
2978
+
2979
+ ### Features
2980
+
2981
+ * **TopBar:** remove header in user dropdown ([5853cb6](https://github.com/skbkontur/retail-ui/commit/5853cb6)), closes [#1726](https://github.com/skbkontur/retail-ui/issues/1726)
2982
+
2983
+
2984
+
2985
+
2986
+
2987
+ # [1.9.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.8.1...retail-ui@1.9.0) (2020-02-13)
2988
+
2989
+
2990
+ ### Features
2991
+
2992
+ * **CurrencyInput:** new prop 'hideTrailingZeros' ([#1869](https://github.com/skbkontur/retail-ui/issues/1869)) ([1823370](https://github.com/skbkontur/retail-ui/commit/1823370))
2993
+
2994
+
2995
+
2996
+
2997
+
2998
+ ## [1.8.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.8.0...retail-ui@1.8.1) (2020-02-06)
2999
+
3000
+
3001
+ ### Bug Fixes
3002
+
3003
+ * **Loader:** пофиксил высоту дочерних компонентов по родителю ([25d45e2](https://github.com/skbkontur/retail-ui/commit/25d45e2)), closes [#1855](https://github.com/skbkontur/retail-ui/issues/1855)
3004
+
3005
+
3006
+ ### Reverts
3007
+
3008
+ * inline 'stylis-plugin-extra-scope' ([79f0399](https://github.com/skbkontur/retail-ui/commit/79f0399)), closes [#1873](https://github.com/skbkontur/retail-ui/issues/1873)
3009
+ * test(react-ui): render component with specificityLevel on ([5335325](https://github.com/skbkontur/retail-ui/commit/5335325)), closes [#1874](https://github.com/skbkontur/retail-ui/issues/1874)
3010
+
3011
+
3012
+
3013
+
3014
+
3015
+ # [1.8.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.7.0...retail-ui@1.8.0) (2020-01-20)
3016
+
3017
+
3018
+ ### Bug Fixes
3019
+
3020
+ * remove jquery downloading ([687ad9d](https://github.com/skbkontur/retail-ui/commit/687ad9d))
3021
+
3022
+
3023
+ ### Features
3024
+
3025
+ * **telemetry:** add field for identifying components ([b7fec03](https://github.com/skbkontur/retail-ui/commit/b7fec03)), closes [#1838](https://github.com/skbkontur/retail-ui/issues/1838)
3026
+ * **Tooltip:** add onOpen prop ([90b89d7](https://github.com/skbkontur/retail-ui/commit/90b89d7)), closes [#1832](https://github.com/skbkontur/retail-ui/issues/1832)
3027
+
3028
+
3029
+
3030
+
3031
+
3032
+ # [1.7.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.9...retail-ui@1.7.0) (2019-12-27)
3033
+
3034
+
3035
+ ### Bug Fixes
3036
+
3037
+ * **Modal:** don't create stacking context inside Footer ([3b314a8](https://github.com/skbkontur/retail-ui/commit/3b314a8))
3038
+
3039
+
3040
+ ### Features
3041
+
3042
+ * **Gapped:** add `wrap` prop, change default prop values ([2ac9e8b](https://github.com/skbkontur/retail-ui/commit/2ac9e8b))
3043
+
3044
+
3045
+ ### Reverts
3046
+
3047
+ * **Gapped:** don't cover other elements with horizontal layout ([652983d](https://github.com/skbkontur/retail-ui/commit/652983d))
3048
+
3049
+
3050
+
3051
+
3052
+
3053
+ ## [1.6.9](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.8...retail-ui@1.6.9) (2019-12-24)
3054
+
3055
+
3056
+ ### Bug Fixes
3057
+
3058
+ * **Checkbox:** adjust baseline if row is high ([52a71b0](https://github.com/skbkontur/retail-ui/commit/52a71b0))
3059
+ * **ComboBoxOld:** close tooltip on blur ([94a5630](https://github.com/skbkontur/retail-ui/commit/94a5630)), closes [#1669](https://github.com/skbkontur/retail-ui/issues/1669)
3060
+ * **Gapped:** don't cover other elements with horizontal layout ([e622933](https://github.com/skbkontur/retail-ui/commit/e622933))
3061
+ * **Modal:** fix issue with cross ([e599455](https://github.com/skbkontur/retail-ui/commit/e599455)), closes [#180](https://github.com/skbkontur/retail-ui/issues/180)
3062
+
3063
+
3064
+
3065
+
3066
+
3067
+ ## [1.6.8](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.7...retail-ui@1.6.8) (2019-12-16)
3068
+
3069
+
3070
+ ### Bug Fixes
3071
+
3072
+ * **SidePageHeader:** fix maximum update depth ([548b894](https://github.com/skbkontur/retail-ui/commit/548b894))
3073
+
3074
+
3075
+
3076
+
3077
+
3078
+ ## [1.6.7](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.6...retail-ui@1.6.7) (2019-12-10)
3079
+
3080
+
3081
+ ### Bug Fixes
3082
+
3083
+ * **TokenInput:** fix module import ([440d199](https://github.com/skbkontur/retail-ui/commit/440d199))
3084
+
3085
+
3086
+
3087
+
3088
+
3089
+ ## [1.6.6](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.5...retail-ui@1.6.6) (2019-12-02)
3090
+
3091
+
3092
+ ### Bug Fixes
3093
+
3094
+ * **Loader:** correctly work with Sticky ([493cd18](https://github.com/skbkontur/retail-ui/commit/493cd18))
3095
+ * **Modal:** added word-break: break-word to Modal.Header ([#1754](https://github.com/skbkontur/retail-ui/issues/1754)) ([96f5bc5](https://github.com/skbkontur/retail-ui/commit/96f5bc5))
3096
+ * **Sticky:** correct work with other ZIndex components ([d198ee1](https://github.com/skbkontur/retail-ui/commit/d198ee1)), closes [#1750](https://github.com/skbkontur/retail-ui/issues/1750) [#1764](https://github.com/skbkontur/retail-ui/issues/1764)
3097
+ * **ZIndex:** don't call remount children components ([5db3a29](https://github.com/skbkontur/retail-ui/commit/5db3a29)), closes [#1761](https://github.com/skbkontur/retail-ui/issues/1761)
3098
+
3099
+
3100
+
3101
+
3102
+
3103
+ ## [1.6.5](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.4...retail-ui@1.6.5) (2019-11-26)
3104
+
3105
+
3106
+ ### Bug Fixes
3107
+
3108
+ * **Popup:** disable call findDOMNode when location is null ([da7cd1c](https://github.com/skbkontur/retail-ui/commit/da7cd1c))
3109
+
3110
+
3111
+
3112
+
3113
+
3114
+ ## [1.6.4](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.3...retail-ui@1.6.4) (2019-11-25)
3115
+
3116
+
3117
+ ### Bug Fixes
3118
+
3119
+ * **Loader:** don't apply zIndex context in inactive state ([b170cd2](https://github.com/skbkontur/retail-ui/commit/b170cd2)), closes [#1746](https://github.com/skbkontur/retail-ui/issues/1746)
3120
+ * **Popup:** don't render portal container on closed state ([bee3a28](https://github.com/skbkontur/retail-ui/commit/bee3a28))
3121
+
3122
+
3123
+
3124
+
3125
+
3126
+ ## [1.6.3](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.2...retail-ui@1.6.3) (2019-11-18)
3127
+
3128
+
3129
+ ### Bug Fixes
3130
+
3131
+ * **Loader:** reset z-index only in active state ([8f1d936](https://github.com/skbkontur/retail-ui/commit/8f1d936)), closes [#1716](https://github.com/skbkontur/retail-ui/issues/1716) [#1722](https://github.com/skbkontur/retail-ui/issues/1722)
3132
+ * **SidePage:** shadow always cover loader content ([eea3782](https://github.com/skbkontur/retail-ui/commit/eea3782)), closes [#1718](https://github.com/skbkontur/retail-ui/issues/1718)
3133
+ * **Toggle:** checked and focused view ([#1727](https://github.com/skbkontur/retail-ui/issues/1727)) ([945d3cb](https://github.com/skbkontur/retail-ui/commit/945d3cb)), closes [#1682](https://github.com/skbkontur/retail-ui/issues/1682)
3134
+ * **Tooltip:** added clear timeout to unmount method ([37fb81a](https://github.com/skbkontur/retail-ui/commit/37fb81a))
3135
+
3136
+
3137
+
3138
+
3139
+
3140
+ ## [1.6.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.1...retail-ui@1.6.2) (2019-11-06)
3141
+
3142
+
3143
+ ### Bug Fixes
3144
+
3145
+ * **Sticky:** move fixed element on horizontal scroll ([85882e3](https://github.com/skbkontur/retail-ui/commit/85882e3)), closes [#1705](https://github.com/skbkontur/retail-ui/issues/1705)
3146
+ * **Toast:** show above Loader ([5b6ccf7](https://github.com/skbkontur/retail-ui/commit/5b6ccf7)), closes [#1706](https://github.com/skbkontur/retail-ui/issues/1706)
3147
+
3148
+
3149
+
3150
+
3151
+
3152
+ ## [1.6.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.0...retail-ui@1.6.1) (2019-10-30)
3153
+
3154
+
3155
+ ### Bug Fixes
3156
+
3157
+ * **MonthView:** wrong import colorFunctions ([24eeb1e](https://github.com/skbkontur/retail-ui/commit/24eeb1e))
3158
+
3159
+
3160
+
3161
+
3162
+
3163
+ # [1.6.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.5.0...retail-ui@1.6.0) (2019-10-30)
3164
+
3165
+
3166
+ ### Bug Fixes
3167
+
3168
+ * **Checkbox:** add calling onBlur in handleBlur ([47791d9](https://github.com/skbkontur/retail-ui/commit/47791d9)), closes [#1565](https://github.com/skbkontur/retail-ui/issues/1565)
3169
+ * **ColorObject:** fix returning string from hsl color ([3d83c48](https://github.com/skbkontur/retail-ui/commit/3d83c48)), closes [#1695](https://github.com/skbkontur/retail-ui/issues/1695)
3170
+ * **DatePicker:** fix color border-bottom of month ([89e69cf](https://github.com/skbkontur/retail-ui/commit/89e69cf)), closes [#1605](https://github.com/skbkontur/retail-ui/issues/1605)
3171
+ * **MenuItem:** call onMouseEnter/Leave in cloned element ([ff397c9](https://github.com/skbkontur/retail-ui/commit/ff397c9))
3172
+ * **RadioGroup:** pass onBlur into Radio ([20f9dcb](https://github.com/skbkontur/retail-ui/commit/20f9dcb)), closes [#1670](https://github.com/skbkontur/retail-ui/issues/1670)
3173
+ * **Select:** add missing comment type ([bf89513](https://github.com/skbkontur/retail-ui/commit/bf89513))
3174
+ * **Select:** fix color placeholder ([5e35c59](https://github.com/skbkontur/retail-ui/commit/5e35c59))
3175
+ * **Sticky:** infinity render loop in IE ([85180dd](https://github.com/skbkontur/retail-ui/commit/85180dd))
3176
+ * **Sticky:** maximum update depth exceeded ([75fb581](https://github.com/skbkontur/retail-ui/commit/75fb581)), closes [#1485](https://github.com/skbkontur/retail-ui/issues/1485)
3177
+ * **Tooltip:** reset position on close ([4d03a22](https://github.com/skbkontur/retail-ui/commit/4d03a22)), closes [#1673](https://github.com/skbkontur/retail-ui/issues/1673)
3178
+ * **TopBar:** fix noShadow prop ([1af4648](https://github.com/skbkontur/retail-ui/commit/1af4648)), closes [#1672](https://github.com/skbkontur/retail-ui/issues/1672)
3179
+
3180
+
3181
+ ### Features
3182
+
3183
+ * **ColorFunctions:** add fade function ([a10dcb9](https://github.com/skbkontur/retail-ui/commit/a10dcb9))
3184
+ * **DefaultTheme:** add variable 'chbCheckedShadow' ([b2531b3](https://github.com/skbkontur/retail-ui/commit/b2531b3))
3185
+ * **Emotion:** add 'prefixer' for classes ([6043228](https://github.com/skbkontur/retail-ui/commit/6043228))
3186
+ * **FlatTheme:** add variables 'chbCheckedShadow' and 'chbBorderRadius' ([e3424e7](https://github.com/skbkontur/retail-ui/commit/e3424e7))
3187
+ * **FlatTheme:** add vars 'chbShadowHover' and 'chbCheckedHoverShadow' ([62dad9c](https://github.com/skbkontur/retail-ui/commit/62dad9c))
3188
+ * **FocusTrap:** add component FocusTrap ([1baf0c3](https://github.com/skbkontur/retail-ui/commit/1baf0c3))
3189
+ * **Theme:** remove calendarMonthTitleBorderBottom ([3dcfb6f](https://github.com/skbkontur/retail-ui/commit/3dcfb6f))
3190
+ * **ZIndex:** add layers priority ([68ea45b](https://github.com/skbkontur/retail-ui/commit/68ea45b)), closes [#776](https://github.com/skbkontur/retail-ui/issues/776)
3191
+
3192
+
3193
+
3194
+
3195
+
3196
+ # [1.5.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.4.0...retail-ui@1.5.0) (2019-10-09)
3197
+
3198
+
3199
+ ### Bug Fixes
3200
+
3201
+ * **ComboBox:** add offsetX for DropDownContainer ([6cbea25](https://github.com/skbkontur/retail-ui/commit/6cbea25)), closes [#1005](https://github.com/skbkontur/retail-ui/issues/1005)
3202
+ * **CurrencyLabel:** fix defaultProps definition ([2794e1a](https://github.com/skbkontur/retail-ui/commit/2794e1a))
3203
+ * **customization:** change 'blinkColor' ([03fd81f](https://github.com/skbkontur/retail-ui/commit/03fd81f)), closes [#1646](https://github.com/skbkontur/retail-ui/issues/1646)
3204
+ * **Select:** fix calls prop onKeyDown ([6720eff](https://github.com/skbkontur/retail-ui/commit/6720eff)), closes [#1665](https://github.com/skbkontur/retail-ui/issues/1665)
3205
+ * **TopBarDropDown:** make 'use' prop required ([fcea8b1](https://github.com/skbkontur/retail-ui/commit/fcea8b1))
3206
+
3207
+
3208
+ ### Features
3209
+
3210
+ * **Paging:** deprecate 'strings' prop ([6c84288](https://github.com/skbkontur/retail-ui/commit/6c84288))
3211
+ * **Paging:** remove 'strings' prop ([58cabb7](https://github.com/skbkontur/retail-ui/commit/58cabb7)), closes [#1232](https://github.com/skbkontur/retail-ui/issues/1232)
3212
+ * **ThemeContext:** exports ThemeContext ([ef0579b](https://github.com/skbkontur/retail-ui/commit/ef0579b)), closes [#1656](https://github.com/skbkontur/retail-ui/issues/1656)
3213
+ * **TopBarDropDown:** added "default" "use" option ([74ef3b3](https://github.com/skbkontur/retail-ui/commit/74ef3b3))
3214
+ * **TopBarDropDown:** added flow types ([f3909be](https://github.com/skbkontur/retail-ui/commit/f3909be))
3215
+
3216
+
3217
+
3218
+
3219
+
3220
+ # [1.4.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.3.1...retail-ui@1.4.0) (2019-10-02)
3221
+
3222
+
3223
+ ### Bug Fixes
3224
+
3225
+ * **Button:** isButton is undefined when use adapter ([0e41da9](https://github.com/skbkontur/retail-ui/commit/0e41da9))
3226
+ * **CurrencyInput:** don't throw error if fractionDigits is zero/float ([3c70c20](https://github.com/skbkontur/retail-ui/commit/3c70c20)), closes [#1558](https://github.com/skbkontur/retail-ui/issues/1558)
3227
+ * **DatePicker:** prepare PR to fork ([832fb7b](https://github.com/skbkontur/retail-ui/commit/832fb7b))
3228
+ * **DatePicker:** remove console.log ([67951d7](https://github.com/skbkontur/retail-ui/commit/67951d7))
3229
+ * **DatePicker:** simplify fallback structure for ie ([f9e27ed](https://github.com/skbkontur/retail-ui/commit/f9e27ed))
3230
+ * **DatePicker:** Баг с кликом на день календаря в Edge [#1557](https://github.com/skbkontur/retail-ui/issues/1557) ([7b24f69](https://github.com/skbkontur/retail-ui/commit/7b24f69))
3231
+ * **DatePicker:** Привел в порядок типизацию в DateInputFallback [#1557](https://github.com/skbkontur/retail-ui/issues/1557) ([dcebd76](https://github.com/skbkontur/retail-ui/commit/dcebd76))
3232
+ * **docs:** fix code formatter of the ThemeShowcase ([42b99c2](https://github.com/skbkontur/retail-ui/commit/42b99c2))
3233
+ * **Fias:** escape regexp spec chars ([cace4b6](https://github.com/skbkontur/retail-ui/commit/cace4b6)), closes [#1636](https://github.com/skbkontur/retail-ui/issues/1636)
3234
+ * **Radio:** show label as disabled if context.disabled is true ([de64b32](https://github.com/skbkontur/retail-ui/commit/de64b32)), closes [#1275](https://github.com/skbkontur/retail-ui/issues/1275)
3235
+ * **Toggle:** show tooltip on disabled toggle in ie ([3db9565](https://github.com/skbkontur/retail-ui/commit/3db9565)), closes [#1630](https://github.com/skbkontur/retail-ui/issues/1630)
3236
+
3237
+
3238
+ ### Features
3239
+
3240
+ * **Combobox:** add prop onInputKeyDown ([b804b84](https://github.com/skbkontur/retail-ui/commit/b804b84))
3241
+ * **lib:** add key identification tools ([73479fe](https://github.com/skbkontur/retail-ui/commit/73479fe)), closes [#1429](https://github.com/skbkontur/retail-ui/issues/1429)
3242
+ * **Select:** add prop onKeyDown ([ba41e73](https://github.com/skbkontur/retail-ui/commit/ba41e73))
3243
+
3244
+
3245
+
3246
+
3247
+
3248
+ ## [1.3.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.3.0...retail-ui@1.3.1) (2019-09-24)
3249
+
3250
+
3251
+ ### Bug Fixes
3252
+
3253
+ * **Dropdown:** sync type of `width` prop type with proptypes checks ([47a5612](https://github.com/skbkontur/retail-ui/commit/47a5612))
3254
+ * **Input:** avoid bug with transition in IE ([45f45d5](https://github.com/skbkontur/retail-ui/commit/45f45d5)), closes [#1614](https://github.com/skbkontur/retail-ui/issues/1614)
3255
+ * **Popup:** deterministic open/close animation ([0415fa4](https://github.com/skbkontur/retail-ui/commit/0415fa4)), closes [#1372](https://github.com/skbkontur/retail-ui/issues/1372)
3256
+ * **RenderContainer:** getRootId changed ([b0ce223](https://github.com/skbkontur/retail-ui/commit/b0ce223))
3257
+ * **TokenInput:** make height equal to the Input ([92e9d8b](https://github.com/skbkontur/retail-ui/commit/92e9d8b)), closes [#1589](https://github.com/skbkontur/retail-ui/issues/1589)
3258
+
3259
+
3260
+
3261
+
3262
+
3263
+ # [1.3.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.2.0...retail-ui@1.3.0) (2019-09-11)
3264
+
3265
+
3266
+ ### Bug Fixes
3267
+
3268
+ * **Button:** change disabled bg & shadow for the FlatTheme ([765e9d4](https://github.com/skbkontur/retail-ui/commit/765e9d4))
3269
+ * **Button:** fix emotion className interpolation warning ([ad5d2a2](https://github.com/skbkontur/retail-ui/commit/ad5d2a2))
3270
+ * **Checkbox:** prevent styles reset, caused by code-splitting ([2161a4d](https://github.com/skbkontur/retail-ui/commit/2161a4d)), closes [#1556](https://github.com/skbkontur/retail-ui/issues/1556)
3271
+ * **Select:** prevent arrow color reset, caused by code-splitting ([e7a6dc3](https://github.com/skbkontur/retail-ui/commit/e7a6dc3)), closes [#1568](https://github.com/skbkontur/retail-ui/issues/1568)
3272
+
3273
+
3274
+ ### Features
3275
+
3276
+ * **Logotype:** add props size and onArrowClick ([94fc027](https://github.com/skbkontur/retail-ui/commit/94fc027))
3277
+
3278
+
3279
+
3280
+
3281
+
3282
+ # [1.2.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.1.2...retail-ui@1.2.0) (2019-09-03)
3283
+
3284
+
3285
+ ### Bug Fixes
3286
+
3287
+ * **Button:** add disabled color to the "link" use ([20c002b](https://github.com/skbkontur/retail-ui/commit/20c002b)), closes [#1563](https://github.com/skbkontur/retail-ui/issues/1563)
3288
+ * **Button:** fix arrow error/warning outline ([6a18b05](https://github.com/skbkontur/retail-ui/commit/6a18b05)), closes [#1531](https://github.com/skbkontur/retail-ui/issues/1531)
3289
+ * **ComboBox:** spinner position by baseline ([5f144e8](https://github.com/skbkontur/retail-ui/commit/5f144e8)), closes [#1333](https://github.com/skbkontur/retail-ui/issues/1333)
3290
+ * **DatePicker:** change year limits for better limit date validations ([1b552f3](https://github.com/skbkontur/retail-ui/commit/1b552f3)), closes [#1573](https://github.com/skbkontur/retail-ui/issues/1573)
3291
+ * **Icon20px:** prevent from selecting ([763b5b8](https://github.com/skbkontur/retail-ui/commit/763b5b8))
3292
+ * **react-ui:** support CRA css-modules convention: components ([c1d687a](https://github.com/skbkontur/retail-ui/commit/c1d687a)), closes [#1477](https://github.com/skbkontur/retail-ui/issues/1477)
3293
+ * **react-ui:** support CRA css-modules convention: variables ([aace330](https://github.com/skbkontur/retail-ui/commit/aace330))
3294
+ * **Token:** import react as namespace ([8b10014](https://github.com/skbkontur/retail-ui/commit/8b10014)), closes [#1519](https://github.com/skbkontur/retail-ui/issues/1519)
3295
+
3296
+
3297
+ ### Features
3298
+
3299
+ * **Fias:** render additional fields in the search results ([37fa2db](https://github.com/skbkontur/retail-ui/commit/37fa2db))
3300
+ * **Fias:** search streets through not only direct parent ([7729fd7](https://github.com/skbkontur/retail-ui/commit/7729fd7))
3301
+ * **ScrollContainer:** add scrollBehaviour prop ([ad4c7c9](https://github.com/skbkontur/retail-ui/commit/ad4c7c9))
3302
+
3303
+
3304
+
3305
+
3306
+
3307
+ ## [1.1.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.1.1...retail-ui@1.1.2) (2019-08-07)
3308
+
3309
+
3310
+ ### Bug Fixes
3311
+
3312
+ * **ComboBox:** keep focus after Enter key press on the list item ([a9b62dd](https://github.com/skbkontur/retail-ui/commit/a9b62dd)), closes [#1532](https://github.com/skbkontur/retail-ui/issues/1532)
3313
+ * **Group:** removed vertical-align ([2f8cad6](https://github.com/skbkontur/retail-ui/commit/2f8cad6))
3314
+
3315
+
3316
+
3317
+
3318
+
3319
+ ## [1.1.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.1.0...retail-ui@1.1.1) (2019-07-31)
3320
+
3321
+
3322
+ ### Bug Fixes
3323
+
3324
+ * **Button:** changed style 'color' for disabled button to '#a0a0a0' ([521a4e8](https://github.com/skbkontur/retail-ui/commit/521a4e8)), closes [#a0a0a0](https://github.com/skbkontur/retail-ui/issues/a0a0a0) [#1415](https://github.com/skbkontur/retail-ui/issues/1415)
3325
+ * **customization:** prevent js-styles from overriding by css-resets ([2a9c4ac](https://github.com/skbkontur/retail-ui/commit/2a9c4ac)), closes [#1514](https://github.com/skbkontur/retail-ui/issues/1514)
3326
+ * **Radio:** decrease types checking time ([f18c74b](https://github.com/skbkontur/retail-ui/commit/f18c74b)), closes [#1518](https://github.com/skbkontur/retail-ui/issues/1518)
3327
+
3328
+
3329
+
3330
+
3331
+
3332
+ # [1.1.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.0.1...retail-ui@1.1.0) (2019-07-23)
3333
+
3334
+
3335
+ ### Bug Fixes
3336
+
3337
+ * **Button:** change 'background-color' and 'border-color' when hovering ([627b1e6](https://github.com/skbkontur/retail-ui/commit/627b1e6)), closes [#1416](https://github.com/skbkontur/retail-ui/issues/1416)
3338
+ * **TokenInput:** add input's box-shadow ([6f0789f](https://github.com/skbkontur/retail-ui/commit/6f0789f))
3339
+ * **TokenInput:** fix flat styles ([0fa0d52](https://github.com/skbkontur/retail-ui/commit/0fa0d52)), closes [#1493](https://github.com/skbkontur/retail-ui/issues/1493)
3340
+ * **TokenInput:** remove hardcoded dataTid ([9e5151f](https://github.com/skbkontur/retail-ui/commit/9e5151f))
3341
+
3342
+
3343
+ ### Features
3344
+
3345
+ * **Switcher:** add prop 'size' ([a5e16ae](https://github.com/skbkontur/retail-ui/commit/a5e16ae)), closes [#1492](https://github.com/skbkontur/retail-ui/issues/1492)
3346
+
3347
+
3348
+
3349
+
3350
+
3351
+ ## [1.0.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.0.0...retail-ui@1.0.1) (2019-07-16)
3352
+
3353
+
3354
+ ### Bug Fixes
3355
+
3356
+ * **Input:** add calling 'selectAll' via 'raf' ([#1496](https://github.com/skbkontur/retail-ui/issues/1496)) ([37b866d](https://github.com/skbkontur/retail-ui/commit/37b866d)), closes [#1413](https://github.com/skbkontur/retail-ui/issues/1413)
3357
+ * **Tab:** add error/warning/primary hover borders to vertical tabs ([29f4bc2](https://github.com/skbkontur/retail-ui/commit/29f4bc2))
3358
+ * **Tab:** remove hover border from disabled tabs ([2f98438](https://github.com/skbkontur/retail-ui/commit/2f98438)), closes [#1504](https://github.com/skbkontur/retail-ui/issues/1504)
3359
+ * **Textarea:** add blocking Enter after reaching 'maxLength' ([2a862f5](https://github.com/skbkontur/retail-ui/commit/2a862f5))
3360
+ * **ThemeShowcase:** make it fit enough to squize into styleguidist ([12f184b](https://github.com/skbkontur/retail-ui/commit/12f184b))
3361
+ * **ThemeShowcase:** source code tooltip contents in production mode ([89c5183](https://github.com/skbkontur/retail-ui/commit/89c5183))
3362
+
3363
+
3364
+
3365
+
3366
+
3367
+ # [1.0.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.53.0...retail-ui@1.0.0) (2019-07-02)
3368
+
3369
+
3370
+ ### Features
3371
+
3372
+ * Customization ([#1333](https://github.com/skbkontur/retail-ui/issues/1333)) ([15e9e8f](https://github.com/skbkontur/retail-ui/commit/15e9e8f))
3373
+
3374
+
3375
+ ### BREAKING CHANGES
3376
+
3377
+ * Upgrades.enableSizeMedium16px is no longer working: redefine fontSizeMedium
3378
+ variable via ThemeProvider or by calling ThemeFactory.overrideDefaultTheme()
3379
+
3380
+ * refactor(ColorObject): remove require call
3381
+
3382
+ * style(Upgrades): fix lint error
3383
+
3384
+ * chore(storybook): use ThemeProvider instead of overrideDefaultTheme
3385
+
3386
+ * refactor(ThemeFactory): remove ThemesCache
3387
+
3388
+ * refactor(ThemeEditor): clear timeout on unmount
3389
+
3390
+ * refactor(variables.less): prepare for Date* controls convertion
3391
+
3392
+ * feat(DateSelect): customize with css-in-js
3393
+
3394
+ * refactor(DatePickerOld): rename less file to prevent confusion
3395
+
3396
+ * feat(DatePicker): customize with css-in-js
3397
+
3398
+ * refactor(DateInput): properly separate styles between components
3399
+
3400
+ * feat(DateInput): customize with css-in-js
3401
+
3402
+ * feat(Calendar): customize with css-in-js
3403
+
3404
+ * refactor(TokenInput): add -webkit-text-fill-color
3405
+
3406
+ * refactor(styles): remove rt-ie8, rt-ie9
3407
+
3408
+ * refactor(Calendar): rename classnames to cx
3409
+
3410
+ * refactor(variables.less): move mixins into separate file
3411
+
3412
+ * style(CustomComboBox): specify px for padding-bottom
3413
+
3414
+ * style(SidePage): fix variable typo
3415
+
3416
+ * refactor(styles): remove unnecessary imports
3417
+
3418
+ * refactor(FormatSourceCode): rewrite code in more readable way
3419
+
3420
+ * test(ComboBoxView): approve screens with new spinner gray color
3421
+
3422
+ * fix(Button): fix sizeMedium baseline regress
3423
+
3424
+ * test(Button): approve screenshots with 14px medium font-size
3425
+
3426
+ * test(ComboBox): approve darker spinner color while loading items
3427
+
3428
+ * refactor(TokenInput): simplify styles
3429
+
3430
+ * refactor(TokenInput): fix firefox placeholder opacity
3431
+
3432
+ * refactor(DateSelect): make active prevail over selected
3433
+
3434
+ * refactor(DatePicker): fix red color bug
3435
+
3436
+ * refactor(DatePicker): make weekend prevail over today
3437
+
3438
+ * refactor(DateFragmentsView): fix .delimiter.filled combination style
3439
+
3440
+ * style(AnotherInputsPlayground): remove underscores from private methods
3441
+
3442
+ * test(AnotherInputsPlayground): stable date for screenshots
3443
+
3444
+ * test(Customization): approve actual screenshots
3445
+
3446
+ * refactor(customization): separate ThemeProviderPlayground component
3447
+
3448
+ * docs(ThemeProviderPlayground ): add README
3449
+
3450
+ * docs(customization): add core README
3451
+
3452
+ # copied from PR
3453
+
3454
+ * build(styleguide): add customization section to config
3455
+
3456
+ * chore(ThemeProviderPlayground): fix import
3457
+
3458
+ * test(Button): approve 14px font-size for medium size in flat theme
3459
+
3460
+ * refactor(customization): introduce derived font sizes for button/input
3461
+
3462
+ * refactor(Button): use fontSize=16px for size=medium in flat theme
3463
+
3464
+ * test(Button): approve 16px font-size for medium size in flat theme
3465
+
3466
+ * test(Customization): approve 16px font-size in flat theme
3467
+
3468
+ * refactor(DateInput): remove isSizeMedium16pxEnabled() in favor of theme
3469
+
3470
+ * refactor(Upgrades): cleanup deprecated methods
3471
+
3472
+ * docs(customization): fix styleguide's components and sections
3473
+
3474
+ * docs(customization): hack-fix ordered lists
3475
+
3476
+ * docs(customization): remove broken links
3477
+
3478
+ * docs(customization): fix less formatting
3479
+
3480
+ * docs(customization): add some line-breaks
3481
+
3482
+ * docs(customization): emphasize inline <code> the way it's done at github
3483
+
3484
+ * docs(customization): switch 'jsx static' to 'typescript' for some blocks
3485
+
3486
+ * docs(customization): use monospace font for inline <code>
3487
+
3488
+ * chore(Button): fix baseline of flat medium Button
3489
+
3490
+ * docs(customization): fix typo
3491
+
3492
+ * style: format with prettier
3493
+
3494
+ * style: make stylelint ignore *.ts
3495
+
3496
+
3497
+
3498
+
3499
+
3500
+ # [0.53.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.52.1...retail-ui@0.53.0) (2019-07-02)
3501
+
3502
+
3503
+ ### Bug Fixes
3504
+
3505
+ * **CurrencyInput:** add 15-digit limit and warning about it ([b523ddf](https://github.com/skbkontur/retail-ui/commit/b523ddf))
3506
+ * **CurrencyLabel:** add warning about 15-digit limit for fractionDigits ([adba185](https://github.com/skbkontur/retail-ui/commit/adba185))
3507
+ * **DateInputFallback:** remove unnecessary call 'emitChange' ([cf28a56](https://github.com/skbkontur/retail-ui/commit/cf28a56)), closes [#1466](https://github.com/skbkontur/retail-ui/issues/1466)
3508
+ * **DropdownContainer:** change calculations for positioning up ([0e9460e](https://github.com/skbkontur/retail-ui/commit/0e9460e)), closes [#1471](https://github.com/skbkontur/retail-ui/issues/1471)
3509
+ * **Modal:** don't close by click on scrollbar ([d69fca6](https://github.com/skbkontur/retail-ui/commit/d69fca6)), closes [#757](https://github.com/skbkontur/retail-ui/issues/757) [#810](https://github.com/skbkontur/retail-ui/issues/810) [#1352](https://github.com/skbkontur/retail-ui/issues/1352) [#1456](https://github.com/skbkontur/retail-ui/issues/1456)
3510
+
3511
+
3512
+ ### Features
3513
+
3514
+ * **Fias:** expose FiasSearch ([075bd36](https://github.com/skbkontur/retail-ui/commit/075bd36))
3515
+
3516
+
3517
+
3518
+
3519
+
3520
+ ## [0.52.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.52.0...retail-ui@0.52.1) (2019-06-18)
3521
+
3522
+ **Note:** Version bump only for package retail-ui
3523
+
3524
+
3525
+
3526
+
3527
+
3528
+ # [0.52.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.51.1...retail-ui@0.52.0) (2019-06-13)
3529
+
3530
+
3531
+ ### Bug Fixes
3532
+
3533
+ * **Button:** fix paddings for medium size in flat theme ([3f99560](https://github.com/skbkontur/retail-ui/commit/3f99560)), closes [#1309](https://github.com/skbkontur/retail-ui/issues/1309) [#1451](https://github.com/skbkontur/retail-ui/issues/1451)
3534
+ * **DropdownMenu:** added missing flow types props ([#1462](https://github.com/skbkontur/retail-ui/issues/1462)) ([eb1bc3e](https://github.com/skbkontur/retail-ui/commit/eb1bc3e))
3535
+ * **MaskedInput:** add support prop 'defaultValue' ([e8b9436](https://github.com/skbkontur/retail-ui/commit/e8b9436))
3536
+ * **RenderLayer:** add touchstart handling ([567f80b](https://github.com/skbkontur/retail-ui/commit/567f80b)), closes [#1439](https://github.com/skbkontur/retail-ui/issues/1439)
3537
+ * **SidePage:** allow pass string to width prop ([#1447](https://github.com/skbkontur/retail-ui/issues/1447)) ([eff4f78](https://github.com/skbkontur/retail-ui/commit/eff4f78))
3538
+ * **Spinner:** baseline and height are equal to icons ([996c365](https://github.com/skbkontur/retail-ui/commit/996c365))
3539
+
3540
+
3541
+ ### Features
3542
+
3543
+ * **DatePicker:** add localization ([10d30d0](https://github.com/skbkontur/retail-ui/commit/10d30d0))
3544
+ * **DateSelect:** add localization ([00a5ea7](https://github.com/skbkontur/retail-ui/commit/00a5ea7))
3545
+ * **Fias:** add localization ([cc5a7ef](https://github.com/skbkontur/retail-ui/commit/cc5a7ef))
3546
+ * **lib:** add lib `MouseDrag` ([9e7d329](https://github.com/skbkontur/retail-ui/commit/9e7d329))
3547
+ * **lib:** add tools for internationalizing dates ([aac2c0d](https://github.com/skbkontur/retail-ui/commit/aac2c0d))
3548
+ * **LocaleHelper:** add getting locale with default langCode ([d25d2a3](https://github.com/skbkontur/retail-ui/commit/d25d2a3))
3549
+ * **Tooltip:** add trigger type hover&focus ([422915e](https://github.com/skbkontur/retail-ui/commit/422915e))
3550
+
3551
+
3552
+
3553
+
3554
+
3555
+ ## [0.51.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.51.0...retail-ui@0.51.1) (2019-06-04)
3556
+
3557
+
3558
+ ### Bug Fixes
3559
+
3560
+ * **Fias:** prevent the verification api from returning wrong fields ([d77dc2c](https://github.com/skbkontur/retail-ui/commit/d77dc2c)), closes [#1436](https://github.com/skbkontur/retail-ui/issues/1436)
3561
+
3562
+
3563
+
3564
+
3565
+
3566
+ # [0.51.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.50.0...retail-ui@0.51.0) (2019-05-28)
3567
+
3568
+
3569
+ ### Bug Fixes
3570
+
3571
+ * **DatePicker:** fix icon style ([3e092ef](https://github.com/skbkontur/retail-ui/commit/3e092ef))
3572
+ * **MenuItem:** fix triggered `MouseEnter` from disabled button ([1c88969](https://github.com/skbkontur/retail-ui/commit/1c88969))
3573
+ * **Tabs:** replace check on existence `focus` ([87e0443](https://github.com/skbkontur/retail-ui/commit/87e0443))
3574
+
3575
+
3576
+ ### Features
3577
+
3578
+ * **CurrencyInput:** add support prop `integerDigits` ([#1404](https://github.com/skbkontur/retail-ui/issues/1404)) ([165e822](https://github.com/skbkontur/retail-ui/commit/165e822)), closes [#685](https://github.com/skbkontur/retail-ui/issues/685)
3579
+
3580
+
3581
+
3582
+
3583
+
3584
+ # [0.50.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.49.1...retail-ui@0.50.0) (2019-05-22)
3585
+
3586
+
3587
+ ### Bug Fixes
3588
+
3589
+ * **Button:** add dropping `isTabPressed` by mouseDown ([#1400](https://github.com/skbkontur/retail-ui/issues/1400)) ([2d2b870](https://github.com/skbkontur/retail-ui/commit/2d2b870)), closes [#1013](https://github.com/skbkontur/retail-ui/issues/1013)
3590
+
3591
+
3592
+ ### Features
3593
+
3594
+ * **Toast:** toast is testable ([#1403](https://github.com/skbkontur/retail-ui/issues/1403)) ([5dcdf32](https://github.com/skbkontur/retail-ui/commit/5dcdf32))
3595
+
3596
+
3597
+
3598
+
3599
+
3600
+ ## [0.49.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.49.0...retail-ui@0.49.1) (2019-05-16)
3601
+
3602
+
3603
+ ### Bug Fixes
3604
+
3605
+ * **Select:** bind public focus function to component instance ([5909b9e](https://github.com/skbkontur/retail-ui/commit/5909b9e))
3606
+ * **Toggle:** fix overflow issue in Safari ([#1411](https://github.com/skbkontur/retail-ui/issues/1411)) ([7073cb5](https://github.com/skbkontur/retail-ui/commit/7073cb5))
3607
+
3608
+
3609
+
3610
+
3611
+
3612
+ # [0.49.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.48.0...retail-ui@0.49.0) (2019-05-14)
3613
+
3614
+
3615
+ ### Bug Fixes
3616
+
3617
+ * **flow:** update props ([c652880](https://github.com/skbkontur/retail-ui/commit/c652880))
3618
+ * **Paging:** add autofocus for IE11 ([e434d80](https://github.com/skbkontur/retail-ui/commit/e434d80)), closes [#1358](https://github.com/skbkontur/retail-ui/issues/1358)
3619
+ * **TokenInput:** add mapping `renderValue` before copying to clipboard ([79c76c0](https://github.com/skbkontur/retail-ui/commit/79c76c0)), closes [#1336](https://github.com/skbkontur/retail-ui/issues/1336)
3620
+
3621
+
3622
+ ### Features
3623
+
3624
+ * **TokenInput:** add prop `valueToString` ([9e7bf50](https://github.com/skbkontur/retail-ui/commit/9e7bf50))
3625
+
3626
+
3627
+
3628
+
3629
+
3630
+ # [0.48.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.47.0...retail-ui@0.48.0) (2019-04-30)
3631
+
3632
+
3633
+ ### Bug Fixes
3634
+
3635
+ * **ComboBox:** fix input text with single item behavior ([#1360](https://github.com/skbkontur/retail-ui/issues/1360)) ([c6fa7a5](https://github.com/skbkontur/retail-ui/commit/c6fa7a5)), closes [#992](https://github.com/skbkontur/retail-ui/issues/992)
3636
+ * **Fias:** search postal Code through all fields ([7433d12](https://github.com/skbkontur/retail-ui/commit/7433d12))
3637
+ * **Fias:** validate all fields ([8d126f9](https://github.com/skbkontur/retail-ui/commit/8d126f9))
3638
+ * **flow:** add children to Modal props ([1e7e420](https://github.com/skbkontur/retail-ui/commit/1e7e420))
3639
+ * **flow:** add missed props ([5538a61](https://github.com/skbkontur/retail-ui/commit/5538a61))
3640
+ * **Modal:** change modal position according to the guides ([0e7e053](https://github.com/skbkontur/retail-ui/commit/0e7e053)), closes [#1331](https://github.com/skbkontur/retail-ui/issues/1331)
3641
+ * **Modal:** fix closing on background click ([089bad0](https://github.com/skbkontur/retail-ui/commit/089bad0)), closes [#810](https://github.com/skbkontur/retail-ui/issues/810) [#1352](https://github.com/skbkontur/retail-ui/issues/1352)
3642
+ * **Popup:** remove hardcoded maxWidth ([721b751](https://github.com/skbkontur/retail-ui/commit/721b751)), closes [#1343](https://github.com/skbkontur/retail-ui/issues/1343)
3643
+ * **ScrollContainer:** do not access the DOM until it is surely ready ([2b59064](https://github.com/skbkontur/retail-ui/commit/2b59064)), closes [#1371](https://github.com/skbkontur/retail-ui/issues/1371)
3644
+
3645
+
3646
+ ### Features
3647
+
3648
+ * **ComboBox:** add prop `renderAddButton` ([#1365](https://github.com/skbkontur/retail-ui/issues/1365)) ([55345e1](https://github.com/skbkontur/retail-ui/commit/55345e1))
3649
+ * **DropdownMenu:** add positions prop ([7fc607d](https://github.com/skbkontur/retail-ui/commit/7fc607d))
3650
+ * **MenuItem:** add `link` prop ([d705f19](https://github.com/skbkontur/retail-ui/commit/d705f19))
3651
+
3652
+
3653
+
3654
+
3655
+
3656
+ # [0.47.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.46.2...retail-ui@0.47.0) (2019-04-22)
3657
+
3658
+
3659
+ ### Bug Fixes
3660
+
3661
+ * **Button:** add border radius & background styles in flat theme ([59486e3](https://github.com/skbkontur/retail-ui/commit/59486e3))
3662
+ * **Button:** fix arrow position in flat version for small button ([2ce7b42](https://github.com/skbkontur/retail-ui/commit/2ce7b42))
3663
+ * **Button:** fix border color at checked + focused state on hover ([bad4f08](https://github.com/skbkontur/retail-ui/commit/bad4f08))
3664
+ * **Button:** fix border overlap in visually focused state with error/warning ([72d2787](https://github.com/skbkontur/retail-ui/commit/72d2787))
3665
+ * **Button:** fix stylelint `eol-whitespace` error ([461850f](https://github.com/skbkontur/retail-ui/commit/461850f))
3666
+ * **Button:** fixed disabled state shadow styles at flat version ([ad5db6f](https://github.com/skbkontur/retail-ui/commit/ad5db6f))
3667
+ * **Button:** fixed flat styles in IE ([ad3f558](https://github.com/skbkontur/retail-ui/commit/ad3f558))
3668
+ * **Input:** add background & border color styles in flat theme ([b106eb2](https://github.com/skbkontur/retail-ui/commit/b106eb2))
3669
+ * **Paging:** changed detecting of pressed key ([f7b5f24](https://github.com/skbkontur/retail-ui/commit/f7b5f24))
3670
+ * **Radio:** fixed outline padding in flat styles ([0baf333](https://github.com/skbkontur/retail-ui/commit/0baf333))
3671
+ * **Textarea:** add background & border color styles in flat theme ([003c268](https://github.com/skbkontur/retail-ui/commit/003c268))
3672
+ * **Toggle:** add white outline to focused box-shadow ([7b7a3c9](https://github.com/skbkontur/retail-ui/commit/7b7a3c9))
3673
+
3674
+
3675
+ ### Features
3676
+
3677
+ * **Button:** add arrow styles in flat version ([8e1d268](https://github.com/skbkontur/retail-ui/commit/8e1d268))
3678
+ * **Button:** add arrows shadow & border styles in flat theme ([1889232](https://github.com/skbkontur/retail-ui/commit/1889232))
3679
+ * **Button, Checkbox, Radio, Toggle:** add common outline color variable ([58fac79](https://github.com/skbkontur/retail-ui/commit/58fac79))
3680
+
3681
+
3682
+
3683
+
3684
+
3685
+ ## [0.46.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.46.1...retail-ui@0.46.2) (2019-04-17)
3686
+
3687
+
3688
+ ### Bug Fixes
3689
+
3690
+ * **Tabs:** context provider render children for reac@15 ([f0df170](https://github.com/skbkontur/retail-ui/commit/f0df170))
3691
+
3692
+
3693
+
3694
+
3695
+
3696
+ ## [0.46.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.46.0...retail-ui@0.46.1) (2019-04-16)
3697
+
3698
+
3699
+ ### Bug Fixes
3700
+
3701
+ * **Autocomplete:** restore lost focus in IE ([a232110](https://github.com/skbkontur/retail-ui/commit/a232110)), closes [#1075](https://github.com/skbkontur/retail-ui/issues/1075)
3702
+ * **ComboBox:** add missing callbacks ([fab3ff6](https://github.com/skbkontur/retail-ui/commit/fab3ff6))
3703
+ * **ComboBox:** restore lost focus to outer element on clickOutside in IE ([702f60c](https://github.com/skbkontur/retail-ui/commit/702f60c)), closes [#1075](https://github.com/skbkontur/retail-ui/issues/1075)
3704
+ * **ComboBoxOld:** restore lost focus in IE ([dff471b](https://github.com/skbkontur/retail-ui/commit/dff471b)), closes [#1075](https://github.com/skbkontur/retail-ui/issues/1075)
3705
+ * **Hint:** render popup even if no text provided ([cf4a473](https://github.com/skbkontur/retail-ui/commit/cf4a473))
3706
+ * **Tabs:** correct work with FunctionalComponents ([93163db](https://github.com/skbkontur/retail-ui/commit/93163db)), closes [#1337](https://github.com/skbkontur/retail-ui/issues/1337)
3707
+ * **Tabs:** error findDOMNode on unmounted active tab component ([90142cb](https://github.com/skbkontur/retail-ui/commit/90142cb))
3708
+ * **TopBarDropdown:** added methods open & close ([9e7ddcc](https://github.com/skbkontur/retail-ui/commit/9e7ddcc))
3709
+
3710
+
3711
+
3712
+
3713
+
3714
+ # [0.46.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.45.0...retail-ui@0.46.0) (2019-04-08)
3715
+
3716
+
3717
+ ### Bug Fixes
3718
+
3719
+ * **Button:** compare elements reliable way ([0d7843e](https://github.com/skbkontur/retail-ui/commit/0d7843e)), closes [#1267](https://github.com/skbkontur/retail-ui/issues/1267)
3720
+ * preventDefault inside passive event listener ([055eb48](https://github.com/skbkontur/retail-ui/commit/055eb48)), closes [#1326](https://github.com/skbkontur/retail-ui/issues/1326)
3721
+ * safe components usage for SSR ([#1312](https://github.com/skbkontur/retail-ui/issues/1312)) ([0c8c91e](https://github.com/skbkontur/retail-ui/commit/0c8c91e))
3722
+ * **ComboBoxOld:** args types for renderTotalCount and onInputChange ([4ddd480](https://github.com/skbkontur/retail-ui/commit/4ddd480))
3723
+ * **Fias:** allow to fill stead and house without street ([9c728e5](https://github.com/skbkontur/retail-ui/commit/9c728e5)), closes [#1314](https://github.com/skbkontur/retail-ui/issues/1314)
3724
+ * **Menu,InternalMenu:** compare elements reliable way ([4c60cb4](https://github.com/skbkontur/retail-ui/commit/4c60cb4)), closes [#1267](https://github.com/skbkontur/retail-ui/issues/1267)
3725
+ * **Modal:** compare elements reliable way ([fdba164](https://github.com/skbkontur/retail-ui/commit/fdba164)), closes [#1267](https://github.com/skbkontur/retail-ui/issues/1267)
3726
+
3727
+
3728
+ ### Features
3729
+
3730
+ * **Fias:** add rooms search ([10843e1](https://github.com/skbkontur/retail-ui/commit/10843e1))
3731
+
3732
+
3733
+
3734
+
3735
+
3736
+ # [0.45.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.44.3...retail-ui@0.45.0) (2019-04-01)
3737
+
3738
+
3739
+ ### Bug Fixes
3740
+
3741
+ * **Autocomplete:** handle concurrent requests ([dd07ef4](https://github.com/skbkontur/retail-ui/commit/dd07ef4)), closes [#1299](https://github.com/skbkontur/retail-ui/issues/1299)
3742
+ * **Logotype:** async load products widget script ([85312d9](https://github.com/skbkontur/retail-ui/commit/85312d9))
3743
+ * **Popup:** children is not required by prop-types ([c976312](https://github.com/skbkontur/retail-ui/commit/c976312)), closes [#1292](https://github.com/skbkontur/retail-ui/issues/1292)
3744
+ * **ScrollContainer:** multiple scrollbars on OSX ([#827](https://github.com/skbkontur/retail-ui/issues/827)) ([118b347](https://github.com/skbkontur/retail-ui/commit/118b347))
3745
+ * **Tooltip:** deactivate RenderLayer by default ([0818973](https://github.com/skbkontur/retail-ui/commit/0818973)), closes [#1304](https://github.com/skbkontur/retail-ui/issues/1304)
3746
+
3747
+
3748
+ ### Features
3749
+
3750
+ * **flow:** add typings ([42f8fed](https://github.com/skbkontur/retail-ui/commit/42f8fed))
3751
+
3752
+
3753
+ ### Reverts
3754
+
3755
+ * **Popup:** fix regress with dynamically changing callbacks ([1b3bd4e](https://github.com/skbkontur/retail-ui/commit/1b3bd4e)), closes [#1297](https://github.com/skbkontur/retail-ui/issues/1297)
3756
+ * **RenderLayer): "perf(RenderLayer:** less event subscriptions" ([8e492e8](https://github.com/skbkontur/retail-ui/commit/8e492e8)), closes [#1304](https://github.com/skbkontur/retail-ui/issues/1304)
3757
+
3758
+
3759
+
3760
+
3761
+
3762
+ ## [0.44.3](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.44.2...retail-ui@0.44.3) (2019-03-27)
3763
+
3764
+
3765
+ ### Bug Fixes
3766
+
3767
+ * **Input:** don't show placeholder if mask is visible ([1c40f1d](https://github.com/skbkontur/retail-ui/commit/1c40f1d))
3768
+ * **Input:** fix placeholder width for masked input ([8696f40](https://github.com/skbkontur/retail-ui/commit/8696f40)), closes [#1272](https://github.com/skbkontur/retail-ui/issues/1272)
3769
+
3770
+
3771
+
3772
+
3773
+
3774
+ ## [0.44.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.44.1...retail-ui@0.44.2) (2019-03-26)
3775
+
3776
+
3777
+ ### Bug Fixes
3778
+
3779
+ * **ComboBoxOld:** bring typings back ([65d26cd](https://github.com/skbkontur/retail-ui/commit/65d26cd))
3780
+ * **hint:** add pin offset ([9c68d44](https://github.com/skbkontur/retail-ui/commit/9c68d44)), closes [#1265](https://github.com/skbkontur/retail-ui/issues/1265)
3781
+ * **Input:** fix input outlines in IE ([2594500](https://github.com/skbkontur/retail-ui/commit/2594500)), closes [#1197](https://github.com/skbkontur/retail-ui/issues/1197)
3782
+ * **Popup:** call `onOpen` prop in right moment for react@15 ([07d98e7](https://github.com/skbkontur/retail-ui/commit/07d98e7)), closes [#1257](https://github.com/skbkontur/retail-ui/issues/1257)
3783
+ * **Tooltip:** correct render invalid react element ([d49b9fd](https://github.com/skbkontur/retail-ui/commit/d49b9fd))
3784
+ * **Tooltip:** loosing focus on show/hide content ([83b86f7](https://github.com/skbkontur/retail-ui/commit/83b86f7))
3785
+
3786
+
3787
+ ### Performance Improvements
3788
+
3789
+ * **Popup:** bind instead of field initializer ([e1bfba1](https://github.com/skbkontur/retail-ui/commit/e1bfba1))
3790
+ * **Popup:** do not renderContent if closed ([49b03a6](https://github.com/skbkontur/retail-ui/commit/49b03a6))
3791
+ * **Popup:** less event subscriptions ([eb30481](https://github.com/skbkontur/retail-ui/commit/eb30481))
3792
+ * **Popup:** remove RenderLayer/onCloseRequest ([1763036](https://github.com/skbkontur/retail-ui/commit/1763036))
3793
+ * **RenderContainer:** lazy domContainer ([7a193fe](https://github.com/skbkontur/retail-ui/commit/7a193fe))
3794
+ * **RenderLayer:** bind instead of field initializer ([a7a940b](https://github.com/skbkontur/retail-ui/commit/a7a940b))
3795
+ * **RenderLayer:** less event subscriptions ([f095eca](https://github.com/skbkontur/retail-ui/commit/f095eca))
3796
+ * **Tooltip:** bind instead of field initializer ([e4a1ef5](https://github.com/skbkontur/retail-ui/commit/e4a1ef5))
3797
+ * **Tooltip:** skip RenderLayer if unneeded ([9719e45](https://github.com/skbkontur/retail-ui/commit/9719e45))
3798
+
3799
+
3800
+
3801
+
3802
+
3803
+ ## [0.44.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.44.0...retail-ui@0.44.1) (2019-03-19)
3804
+
3805
+
3806
+ ### Bug Fixes
3807
+
3808
+ * **retail-ui:** fix some imports for `[@skbkontur](https://github.com/skbkontur)/react-ui` ([d4c19a8](https://github.com/skbkontur/retail-ui/commit/d4c19a8))
3809
+
3810
+
3811
+
3812
+
3813
+
3814
+ # [0.44.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.43.0...retail-ui@0.44.0) (2019-03-19)
3815
+
3816
+
3817
+ ### Bug Fixes
3818
+
3819
+ * **ComboBox:** typings issues ([d51d66d](https://github.com/skbkontur/retail-ui/commit/d51d66d))
3820
+ * **Group:** fix flexbox width bug in IE ([6b9dd7a](https://github.com/skbkontur/retail-ui/commit/6b9dd7a)), closes [#1199](https://github.com/skbkontur/retail-ui/issues/1199) [#1234](https://github.com/skbkontur/retail-ui/issues/1234)
3821
+ * **Group:** pass "corners" prop only for Button ([54b9d13](https://github.com/skbkontur/retail-ui/commit/54b9d13)), closes [#1225](https://github.com/skbkontur/retail-ui/issues/1225)
3822
+ * **retail-ui:** add optional for some props and default for generic ([07003a4](https://github.com/skbkontur/retail-ui/commit/07003a4))
3823
+ * **SidePage:** change header paddings according to the guides ([722d00f](https://github.com/skbkontur/retail-ui/commit/722d00f))
3824
+ * **SidePage:** fix scrollbar overlapping by the footer with wrong width ([f3468b1](https://github.com/skbkontur/retail-ui/commit/f3468b1))
3825
+ * **SidePage:** remove empty space from the fixed header ([48a53f9](https://github.com/skbkontur/retail-ui/commit/48a53f9)), closes [#971](https://github.com/skbkontur/retail-ui/issues/971)
3826
+
3827
+
3828
+ ### Features
3829
+
3830
+ * **ComboBox:** add props `searchOnFocus` and `drawArrow` ([a605c22](https://github.com/skbkontur/retail-ui/commit/a605c22))
3831
+
3832
+
3833
+
3834
+
3835
+
3836
+ # [0.43.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.42.0...retail-ui@0.43.0) (2019-03-12)
3837
+
3838
+
3839
+ ### Bug Fixes
3840
+
3841
+ * **Button:** fix disabled link background ([9c2cdae](https://github.com/skbkontur/retail-ui/commit/9c2cdae)), closes [#1213](https://github.com/skbkontur/retail-ui/issues/1213)
3842
+ * **ComboBox:** correct import specific icon, not all ([9f0fcbf](https://github.com/skbkontur/retail-ui/commit/9f0fcbf))
3843
+ * **ComboBox:** repair blur when menu is not open ([0861a90](https://github.com/skbkontur/retail-ui/commit/0861a90))
3844
+ * **ComboBoxMenu:** unique keys warning ([7ead9fc](https://github.com/skbkontur/retail-ui/commit/7ead9fc))
3845
+ * **Modal:** enable adaptive style by default ([284ad95](https://github.com/skbkontur/retail-ui/commit/284ad95)), closes [#1164](https://github.com/skbkontur/retail-ui/issues/1164)
3846
+ * **Tooltip:** fix svg icons click in ie11 ([d99676d](https://github.com/skbkontur/retail-ui/commit/d99676d)), closes [#1107](https://github.com/skbkontur/retail-ui/issues/1107)
3847
+ * **Tooltip:** handleClickOutside detects content ([c69773b](https://github.com/skbkontur/retail-ui/commit/c69773b)), closes [#1210](https://github.com/skbkontur/retail-ui/issues/1210)
3848
+
3849
+
3850
+ ### Features
3851
+
3852
+ * **ComboBox:** add localization ([2bc0300](https://github.com/skbkontur/retail-ui/commit/2bc0300))
3853
+ * **LocaleContext:** localization controls ([4d5a412](https://github.com/skbkontur/retail-ui/commit/4d5a412))
3854
+ * **Logotype:** add localization ([47fa21e](https://github.com/skbkontur/retail-ui/commit/47fa21e))
3855
+ * **Paging:** add localization ([ef982db](https://github.com/skbkontur/retail-ui/commit/ef982db))
3856
+ * **Select:** add localization ([8a539be](https://github.com/skbkontur/retail-ui/commit/8a539be))
3857
+ * **Spinner:** add localization ([265deee](https://github.com/skbkontur/retail-ui/commit/265deee))
3858
+ * **TokenInput:** add localization ([49d7742](https://github.com/skbkontur/retail-ui/commit/49d7742))
3859
+ * **TopBar:** add `TopBar.Logout` for localization ([18533e9](https://github.com/skbkontur/retail-ui/commit/18533e9))
3860
+ * **TopBar:** add localization ([50accaf](https://github.com/skbkontur/retail-ui/commit/50accaf))
3861
+
3862
+
3863
+
3864
+
3865
+
3866
+ # [0.42.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.41.1...retail-ui@0.42.0) (2019-03-05)
3867
+
3868
+ ### Bug Fixes
3869
+
3870
+ - **DatePicker:** fix clear selection on IE11 ([fe61312](https://github.com/skbkontur/retail-ui/commit/fe61312)), closes [#1205](https://github.com/skbkontur/retail-ui/issues/1205)
3871
+ - **Fias:** fix textarea import ([2a1dd51](https://github.com/skbkontur/retail-ui/commit/2a1dd51))
3872
+ - **retail-ui:** fix placeholders color according to the guides ([f29f9ac](https://github.com/skbkontur/retail-ui/commit/f29f9ac)), closes [#1166](https://github.com/skbkontur/retail-ui/issues/1166)
3873
+ - **Tooltip:** reposition changed content ([39b641f](https://github.com/skbkontur/retail-ui/commit/39b641f)), closes [#962](https://github.com/skbkontur/retail-ui/issues/962)
3874
+
3875
+ ### Features
3876
+
3877
+ - **DropdownMenu:** add header and footer props ([db8a428](https://github.com/skbkontur/retail-ui/commit/db8a428))
3878
+ - **ScrollContainer:** add `onScrollStateChange` prop ([18366b7](https://github.com/skbkontur/retail-ui/commit/18366b7))
3879
+ - **TooltipMenu:** add header and footer props ([578125d](https://github.com/skbkontur/retail-ui/commit/578125d))
3880
+
3881
+ ## [0.41.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.41.0...retail-ui@0.41.1) (2019-02-27)
3882
+
3883
+ ### Bug Fixes
3884
+
3885
+ - **Popup:** remove ambient types ([72fb736](https://github.com/skbkontur/retail-ui/commit/72fb736))
3886
+
3887
+ # [0.41.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.40.1...retail-ui@0.41.0) (2019-02-26)
3888
+
3889
+ ### Bug Fixes
3890
+
3891
+ - **ComboBox:** fix `focusNextElement` call condition ([da8e007](https://github.com/skbkontur/retail-ui/commit/da8e007))
3892
+ - **ComboBox:** fix open if blured ([6a63937](https://github.com/skbkontur/retail-ui/commit/6a63937))
3893
+ - **ComboBox:** fixed menu item highlight on focus([#1100](https://github.com/skbkontur/retail-ui/issues/1100)) ([212cf2d](https://github.com/skbkontur/retail-ui/commit/212cf2d))
3894
+ - **ComboBox:** use requestStatus and repeatRequest to highlight menu item properly ([c5dfd8f](https://github.com/skbkontur/retail-ui/commit/c5dfd8f))
3895
+ - **DateInput:** add handle action `separator` ([c532008](https://github.com/skbkontur/retail-ui/commit/c532008)), closes [#1059](https://github.com/skbkontur/retail-ui/issues/1059)
3896
+ - **Hint:** don't render Popup if text is empty ([f4b2e03](https://github.com/skbkontur/retail-ui/commit/f4b2e03))
3897
+ - **PasswordInput:** remove not DOM prop `detectCapsLock` ([7d49446](https://github.com/skbkontur/retail-ui/commit/7d49446))
3898
+ - **Popup:** closing 'hover' after dropdown selection ([c021e04](https://github.com/skbkontur/retail-ui/commit/c021e04))
3899
+ - **Popup:** possible memory leak fix ([bd1bca4](https://github.com/skbkontur/retail-ui/commit/bd1bca4))
3900
+ - **retail-ui:** fix input and button baseline (according to the guides) ([085d6af](https://github.com/skbkontur/retail-ui/commit/085d6af))
3901
+ - **Token:** fix align text and icon ([#1182](https://github.com/skbkontur/retail-ui/issues/1182)) ([fe49699](https://github.com/skbkontur/retail-ui/commit/fe49699)), closes [#1158](https://github.com/skbkontur/retail-ui/issues/1158)
3902
+ - **Tooltip:** don't render Popup without content ([a9fbdb5](https://github.com/skbkontur/retail-ui/commit/a9fbdb5))
3903
+
3904
+ ### Features
3905
+
3906
+ - **ComboBox:** add `cancelSearch` public method ([dcafb27](https://github.com/skbkontur/retail-ui/commit/dcafb27))
3907
+ - **ComboBox:** public blur method ([e3e3a8e](https://github.com/skbkontur/retail-ui/commit/e3e3a8e))
3908
+ - **Fias:** support foreign addresses ([2641ca2](https://github.com/skbkontur/retail-ui/commit/2641ca2))
3909
+
3910
+ ## [0.40.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.40.0...retail-ui@0.40.1) (2019-02-19)
3911
+
3912
+ ### Bug Fixes
3913
+
3914
+ - **SidePage:** dynamic resolved types `Body` and `Footer` with context ([4ec286b](https://github.com/skbkontur/retail-ui/commit/4ec286b))
3915
+
3916
+ # [0.40.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.39.0...retail-ui@0.40.0) (2019-02-19)
3917
+
3918
+ ### Bug Fixes
3919
+
3920
+ - **RenderContainer:** unique keys warning ([b2279b3](https://github.com/skbkontur/retail-ui/commit/b2279b3)), closes [#1149](https://github.com/skbkontur/retail-ui/issues/1149)
3921
+ - **Tooltip:** fixed closing for `hoverAnchor` ([fd932f2](https://github.com/skbkontur/retail-ui/commit/fd932f2)), closes [#973](https://github.com/skbkontur/retail-ui/issues/973)
3922
+
3923
+ ### Features
3924
+
3925
+ - **flow:** add typings ([#1160](https://github.com/skbkontur/retail-ui/issues/1160)) ([55d79c9](https://github.com/skbkontur/retail-ui/commit/55d79c9))
3926
+ - **PasswordInput:** add support blur event ([#1162](https://github.com/skbkontur/retail-ui/issues/1162)) ([ddd8195](https://github.com/skbkontur/retail-ui/commit/ddd8195)), closes [#889](https://github.com/skbkontur/retail-ui/issues/889)
3927
+ - **Popup:** add `ignoreHover` prop ([869f556](https://github.com/skbkontur/retail-ui/commit/869f556))
3928
+ - **TokenInput:** add ability to directly render token component ([#1148](https://github.com/skbkontur/retail-ui/issues/1148)) ([6354b2a](https://github.com/skbkontur/retail-ui/commit/6354b2a))
3929
+
3930
+ <a name="0.39.0"></a>
3931
+
3932
+ # [0.39.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.38.0...retail-ui@0.39.0) (2019-02-12)
3933
+
3934
+ ### Bug Fixes
3935
+
3936
+ - **DropdownContainer:** fixed initial position ([8eed80e](https://github.com/skbkontur/retail-ui/commit/8eed80e))
3937
+ - **Menu:** not call `setState` after unmount ([dfd5152](https://github.com/skbkontur/retail-ui/commit/dfd5152))
3938
+
3939
+ ### Features
3940
+
3941
+ - **ComboBox:** минимальное время показа лоадера ([279afac](https://github.com/skbkontur/retail-ui/commit/279afac))
3942
+ - **Fias:** add fields settings ([31ea3d3](https://github.com/skbkontur/retail-ui/commit/31ea3d3))
3943
+ - **Fias:** add postalCode field ([02f1498](https://github.com/skbkontur/retail-ui/commit/02f1498))
3944
+ - **Fias:** move fields labels to the locale ([0bae0fd](https://github.com/skbkontur/retail-ui/commit/0bae0fd))
3945
+ - **retail-ui:** add more flow typings ([#1137](https://github.com/skbkontur/retail-ui/issues/1137)) ([e72b3eb](https://github.com/skbkontur/retail-ui/commit/e72b3eb))
3946
+
3947
+ <a name="0.38.0"></a>
3948
+
3949
+ # [0.38.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.37.0...retail-ui@0.38.0) (2019-02-05)
3950
+
3951
+ ### Bug Fixes
3952
+
3953
+ - **Button:** reset text styles ([0b7eec5](https://github.com/skbkontur/retail-ui/commit/0b7eec5)), closes [#1108](https://github.com/skbkontur/retail-ui/issues/1108)
3954
+ - **Button:** text align center with custom width ([2150cc6](https://github.com/skbkontur/retail-ui/commit/2150cc6)), closes [#1121](https://github.com/skbkontur/retail-ui/issues/1121)
3955
+ - **Combobox:** fix non-closing menu with disablePortal prop ([c5b5288](https://github.com/skbkontur/retail-ui/commit/c5b5288))
3956
+ - **DateInput:** remove unecessary wrapper element ([908941e](https://github.com/skbkontur/retail-ui/commit/908941e)), closes [#1119](https://github.com/skbkontur/retail-ui/issues/1119)
3957
+ - **Input:** reset text styles ([b7bd90b](https://github.com/skbkontur/retail-ui/commit/b7bd90b)), closes [#1108](https://github.com/skbkontur/retail-ui/issues/1108)
3958
+ - **InputLikeText:** fix overflow inside flex container ([91f5c8a](https://github.com/skbkontur/retail-ui/commit/91f5c8a)), closes [#1116](https://github.com/skbkontur/retail-ui/issues/1116)
3959
+ - **Kladr:** recover TypeScript typings ([948212d](https://github.com/skbkontur/retail-ui/commit/948212d)), closes [#1058](https://github.com/skbkontur/retail-ui/issues/1058)
3960
+ - **RenderLayer:** disable catch events ([#1127](https://github.com/skbkontur/retail-ui/issues/1127)) ([f0a447c](https://github.com/skbkontur/retail-ui/commit/f0a447c))
3961
+ - **Textarea:** define min-height, close [#1072](https://github.com/skbkontur/retail-ui/issues/1072) ([#1082](https://github.com/skbkontur/retail-ui/issues/1082)) ([01cf7d3](https://github.com/skbkontur/retail-ui/commit/01cf7d3))
3962
+
3963
+ ### Features
3964
+
3965
+ - add flow typings ([9577790](https://github.com/skbkontur/retail-ui/commit/9577790))
3966
+ - **Logotype:** add locale prop ([e39c7f7](https://github.com/skbkontur/retail-ui/commit/e39c7f7))
3967
+
3968
+ <a name="0.37.0"></a>
3969
+
3970
+ # [0.37.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.36.0...retail-ui@0.37.0) (2019-01-30)
3971
+
3972
+ ### Bug Fixes
3973
+
3974
+ - **Fias:** allow to search for houses in planning structures ([3eeec85](https://github.com/skbkontur/retail-ui/commit/3eeec85)), closes [#1098](https://github.com/skbkontur/retail-ui/issues/1098)
3975
+
3976
+ ### Features
3977
+
3978
+ - **Input:** поддержка префикса и суффикса ([fe9a1d8](https://github.com/skbkontur/retail-ui/commit/fe9a1d8))
3979
+ - **Input:** флекс-верска инпута ([64deabc](https://github.com/skbkontur/retail-ui/commit/64deabc))
3980
+ - **InputLikeText:** интерфейс пропсов наследуется от InputProps ([b4b7dce](https://github.com/skbkontur/retail-ui/commit/b4b7dce))
3981
+
3982
+ <a name="0.36.0"></a>
3983
+
3984
+ # [0.36.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.35.0...retail-ui@0.36.0) (2019-01-21)
3985
+
3986
+ ### Bug Fixes
3987
+
3988
+ - **Hint:** fix unnecessary re-render ([c9160d4](https://github.com/skbkontur/retail-ui/commit/c9160d4)), closes [#1053](https://github.com/skbkontur/retail-ui/issues/1053)
3989
+ - **SidePage:** update layout when the Body has been updated ([4477546](https://github.com/skbkontur/retail-ui/commit/4477546)), closes [#961](https://github.com/skbkontur/retail-ui/issues/961)
3990
+ - **TopBar.Item:** при onlyIcon={true} не рендерятся дети, fix [#1019](https://github.com/skbkontur/retail-ui/issues/1019) ([49f52d2](https://github.com/skbkontur/retail-ui/commit/49f52d2))
3991
+
3992
+ ### Features
3993
+
3994
+ - **Kebab:** add size medium ([9ea2d17](https://github.com/skbkontur/retail-ui/commit/9ea2d17))
3995
+ - **Select:** add public focus method ([8f317e1](https://github.com/skbkontur/retail-ui/commit/8f317e1)), closes [#1063](https://github.com/skbkontur/retail-ui/issues/1063)
3996
+ - **Select:** компонент принимает пропсы onFocus/onBlur ([2d4ba50](https://github.com/skbkontur/retail-ui/commit/2d4ba50))
3997
+ - **SidePage:** add updateLayout method ([7fe9290](https://github.com/skbkontur/retail-ui/commit/7fe9290))
3998
+
3999
+ <a name="0.35.0"></a>
4000
+
4001
+ # [0.35.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.34.0...retail-ui@0.35.0) (2019-01-14)
4002
+
4003
+ ### Bug Fixes
4004
+
4005
+ - **Calendar:** set box-sizing ([f3e7432](https://github.com/skbkontur/retail-ui/commit/f3e7432)), closes [#525](https://github.com/skbkontur/retail-ui/issues/525) [#762](https://github.com/skbkontur/retail-ui/issues/762)
4006
+ - **ComboBox:** keep focus after click on refresh ([2effb7c](https://github.com/skbkontur/retail-ui/commit/2effb7c)), closes [#1012](https://github.com/skbkontur/retail-ui/issues/1012)
4007
+ - **ComboBoxOld:** fix click on disabled arrow ([031281b](https://github.com/skbkontur/retail-ui/commit/031281b))
4008
+ - **DropdownContainer:** remove listeners in disablePortal mode too ([51a611f](https://github.com/skbkontur/retail-ui/commit/51a611f)), closes [#1064](https://github.com/skbkontur/retail-ui/issues/1064)
4009
+ - **Input:** pass formatChars to ReactInputMask ([747badf](https://github.com/skbkontur/retail-ui/commit/747badf))
4010
+ - **Modal:** скрыта нативная рамка фокуса в ff ([f9fecb2](https://github.com/skbkontur/retail-ui/commit/f9fecb2))
4011
+ - **Radio:** fix cursor in flat-theme, fix [#990](https://github.com/skbkontur/retail-ui/issues/990) ([0b21a21](https://github.com/skbkontur/retail-ui/commit/0b21a21))
4012
+
4013
+ ### Features
4014
+
4015
+ - **Icon:** remove component ([cd229d3](https://github.com/skbkontur/retail-ui/commit/cd229d3)), closes [#1037](https://github.com/skbkontur/retail-ui/issues/1037)
4016
+ - **retail-ui:** add brand color variables ([072f2f5](https://github.com/skbkontur/retail-ui/commit/072f2f5))
4017
+ - **retail-ui:** add TokenInput component ([402c9bc](https://github.com/skbkontur/retail-ui/commit/402c9bc)), closes [#650](https://github.com/skbkontur/retail-ui/issues/650)
4018
+
4019
+ ### BREAKING CHANGES
4020
+
4021
+ - **Icon:** Component `Icon` has been removed, please use icons from `@skbkontur/react-icons`
4022
+
4023
+ <a name="0.34.0"></a>
4024
+
4025
+ # [0.34.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.33.0...retail-ui@0.34.0) (2018-12-26)
4026
+
4027
+ ### Bug Fixes
4028
+
4029
+ - **Autocomplete:** исправлен многократный вызов `source` ([6a73bc5](https://github.com/skbkontur/retail-ui/commit/6a73bc5)), closes [#937](https://github.com/skbkontur/retail-ui/issues/937)
4030
+ - **ComboBox:** always close on clickOutside ([1715695](https://github.com/skbkontur/retail-ui/commit/1715695))
4031
+ - **ComboBox:** run empty search on input click if closed ([75670b4](https://github.com/skbkontur/retail-ui/commit/75670b4))
4032
+ - **CurrencyInput:** починено поведение фокуса ([ce3e1e9](https://github.com/skbkontur/retail-ui/commit/ce3e1e9)), closes [#932](https://github.com/skbkontur/retail-ui/issues/932)
4033
+ - **DatePicker:** close if picker became disabled ([2b98084](https://github.com/skbkontur/retail-ui/commit/2b98084))
4034
+ - **DatePicker:** do not open on focus if disabled ([03fb67d](https://github.com/skbkontur/retail-ui/commit/03fb67d))
4035
+ - **DatePickerOld:** can't blur in ie11 ([f515c56](https://github.com/skbkontur/retail-ui/commit/f515c56)), closes [#1030](https://github.com/skbkontur/retail-ui/issues/1030)
4036
+ - **DatePickerOld:** can't blur in safari ([194adca](https://github.com/skbkontur/retail-ui/commit/194adca))
4037
+ - **DropdownContainer:** align dropdown in disablePortal mode ([ca8561f](https://github.com/skbkontur/retail-ui/commit/ca8561f)), closes [#590](https://github.com/skbkontur/retail-ui/issues/590)
4038
+ - **Fias:** [FiasComboBox] update searchText on value change ([55cb808](https://github.com/skbkontur/retail-ui/commit/55cb808))
4039
+ - **Fias:** disallow search through all parents for Street and lower ([09966ec](https://github.com/skbkontur/retail-ui/commit/09966ec))
4040
+ - **Fias:** invalidate House if it wasn't chosen from the list ([2389155](https://github.com/skbkontur/retail-ui/commit/2389155)), closes [#905](https://github.com/skbkontur/retail-ui/issues/905)
4041
+ - **Fias:** open list on focus after validation (if has items) ([7972960](https://github.com/skbkontur/retail-ui/commit/7972960))
4042
+ - **InternalMenu:** focus on menu without scrollTo ([263091d](https://github.com/skbkontur/retail-ui/commit/263091d)), closes [#996](https://github.com/skbkontur/retail-ui/issues/996)
4043
+ - **Logotype:** always render dropdown container ([dfc26cb](https://github.com/skbkontur/retail-ui/commit/dfc26cb)), closes [#631](https://github.com/skbkontur/retail-ui/issues/631)
4044
+ - **Logotype:** display root as inline element when there is no widget ([b0f316f](https://github.com/skbkontur/retail-ui/commit/b0f316f))
4045
+ - **Logotype:** init widget on props update ([109f562](https://github.com/skbkontur/retail-ui/commit/109f562))
4046
+ - **Sticky:** infinity update loop in safari ([7c26f85](https://github.com/skbkontur/retail-ui/commit/7c26f85)), closes [#1033](https://github.com/skbkontur/retail-ui/issues/1033)
4047
+ - **Textarea:** don't pass placeholder prop if it is polyfilled ([54d16bb](https://github.com/skbkontur/retail-ui/commit/54d16bb)), closes [#955](https://github.com/skbkontur/retail-ui/issues/955)
4048
+ - **TopBar:** update User's links to cabinet.kontur.ru ([53d1024](https://github.com/skbkontur/retail-ui/commit/53d1024))
4049
+
4050
+ ### Features
4051
+
4052
+ - **Fias:** show "select from list" message on validation if has items ([91dd8ba](https://github.com/skbkontur/retail-ui/commit/91dd8ba))
4053
+ - **Popup:** add `onOpen` prop ([af52795](https://github.com/skbkontur/retail-ui/commit/af52795))
4054
+ - **Spinner:** поддержка ReactNode в caption ([b0ba0cd](https://github.com/skbkontur/retail-ui/commit/b0ba0cd))
4055
+ - **Textarea:** шрифт и отсутпы по гайдам ([ca61be6](https://github.com/skbkontur/retail-ui/commit/ca61be6))
4056
+
4057
+ <a name="0.33.0"></a>
4058
+
4059
+ # [0.33.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.32.1...retail-ui@0.33.0) (2018-12-17)
4060
+
4061
+ ### Bug Fixes
4062
+
4063
+ - **ComboBox:** always keep textValue in sync with value, if not editing ([f9e6531](https://github.com/skbkontur/retail-ui/commit/f9e6531))
4064
+ - **ComboBox:** fix getValueString function ([50accf1](https://github.com/skbkontur/retail-ui/commit/50accf1))
4065
+ - **CustomComboBox:** made some props required ([dd1f90a](https://github.com/skbkontur/retail-ui/commit/dd1f90a))
4066
+ - **MenuItem:** remove 'white-space: nowrap' property ([b4fb9e7](https://github.com/skbkontur/retail-ui/commit/b4fb9e7)), closes [#590](https://github.com/skbkontur/retail-ui/issues/590) [#959](https://github.com/skbkontur/retail-ui/issues/959)
4067
+ - **paging:** починено поведение глобального листенера ([fddcc74](https://github.com/skbkontur/retail-ui/commit/fddcc74)), closes [#998](https://github.com/skbkontur/retail-ui/issues/998) [#976](https://github.com/skbkontur/retail-ui/issues/976)
4068
+
4069
+ ### Features
4070
+
4071
+ - **ComboBox:** add search method ([bb3fa2e](https://github.com/skbkontur/retail-ui/commit/bb3fa2e)), closes [#991](https://github.com/skbkontur/retail-ui/issues/991)
4072
+ - **ComboBox:** allow to open combobox with search ([c3b8965](https://github.com/skbkontur/retail-ui/commit/c3b8965))
4073
+
4074
+ <a name="0.32.1"></a>
4075
+
4076
+ ## [0.32.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.32.0...retail-ui@0.32.1) (2018-12-11)
4077
+
4078
+ ### Bug Fixes
4079
+
4080
+ - **DateSelect:** fix varialble name in styles ([542ab98](https://github.com/skbkontur/retail-ui/commit/542ab98)), closes [#975](https://github.com/skbkontur/retail-ui/issues/975)
4081
+ - **Input:** fix regression around medium font-size ([a900f6e](https://github.com/skbkontur/retail-ui/commit/a900f6e))
4082
+
4083
+ <a name="0.32.0"></a>
4084
+
4085
+ # [0.32.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.31.0...retail-ui@0.32.0) (2018-12-10)
4086
+
4087
+ ### Bug Fixes
4088
+
4089
+ - **ComboBox:** keep focus after item click and focus next after Enter ([50e5ef0](https://github.com/skbkontur/retail-ui/commit/50e5ef0)), closes [#907](https://github.com/skbkontur/retail-ui/issues/907)
4090
+ - **Popup:** remove unwanted pin border in IE ([b9f3b90](https://github.com/skbkontur/retail-ui/commit/b9f3b90)), closes [#786](https://github.com/skbkontur/retail-ui/issues/786) [#943](https://github.com/skbkontur/retail-ui/issues/943)
4091
+ - **RenderContainer:** correct store ids in data-attribute ([0dc7089](https://github.com/skbkontur/retail-ui/commit/0dc7089))
4092
+ - **Tooltip:** reset opened state by trigger prop ([83d0132](https://github.com/skbkontur/retail-ui/commit/83d0132)), closes [#896](https://github.com/skbkontur/retail-ui/issues/896)
4093
+
4094
+ ### Features
4095
+
4096
+ - **ComboBox:** add open/close methods ([7bbd941](https://github.com/skbkontur/retail-ui/commit/7bbd941)), closes [#957](https://github.com/skbkontur/retail-ui/issues/957)
4097
+ - **Input:** blink on unexpected input ([7162ffa](https://github.com/skbkontur/retail-ui/commit/7162ffa))
4098
+ - **lib:** add functions for getting focusable elements ([6ff8b71](https://github.com/skbkontur/retail-ui/commit/6ff8b71))
4099
+
4100
+ ### Performance Improvements
4101
+
4102
+ - **ComboBox:** optimize focusNextElement method ([f8946f4](https://github.com/skbkontur/retail-ui/commit/f8946f4))
4103
+
4104
+ <a name="0.31.0"></a>
4105
+
4106
+ # [0.31.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.30.0...retail-ui@0.31.0) (2018-12-04)
4107
+
4108
+ ### Bug Fixes
4109
+
4110
+ - **ComboBox:** don't do search on focus in autocomplete mode ([241195d](https://github.com/skbkontur/retail-ui/commit/241195d)), closes [#601](https://github.com/skbkontur/retail-ui/issues/601)
4111
+ - **DatePickerOld:** fix firefox specific bug ([737262d](https://github.com/skbkontur/retail-ui/commit/737262d))
4112
+ - **Modal:** generated docs use helper function as component ([ac0f9f3](https://github.com/skbkontur/retail-ui/commit/ac0f9f3))
4113
+ - **Popup:** fix render child for react@15 ([b2364a6](https://github.com/skbkontur/retail-ui/commit/b2364a6))
4114
+ - **Select:** fix text-overflow color ([4b100bd](https://github.com/skbkontur/retail-ui/commit/4b100bd)), closes [#543](https://github.com/skbkontur/retail-ui/issues/543)
4115
+ - **Select:** less offset of arrow-icon ([d2e1183](https://github.com/skbkontur/retail-ui/commit/d2e1183)), closes [#542](https://github.com/skbkontur/retail-ui/issues/542)
4116
+
4117
+ ### Features
4118
+
4119
+ - **Input:** improve masked input ([#900](https://github.com/skbkontur/retail-ui/issues/900)) ([f03fd28](https://github.com/skbkontur/retail-ui/commit/f03fd28)), closes [#463](https://github.com/skbkontur/retail-ui/issues/463) [#449](https://github.com/skbkontur/retail-ui/issues/449) [#499](https://github.com/skbkontur/retail-ui/issues/499) [#463](https://github.com/skbkontur/retail-ui/issues/463) [#449](https://github.com/skbkontur/retail-ui/issues/449) [#499](https://github.com/skbkontur/retail-ui/issues/499)
4120
+ - **Modal:** add alignTop prop ([618b88b](https://github.com/skbkontur/retail-ui/commit/618b88b)), closes [#715](https://github.com/skbkontur/retail-ui/issues/715)
4121
+
4122
+ <a name="0.30.0"></a>
4123
+
4124
+ # [0.30.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.29.0...retail-ui@0.30.0) (2018-11-20)
4125
+
4126
+ ### Bug Fixes
4127
+
4128
+ - **ComboBox:** fix blinking test by mocking lodash.debounce ([fef6e3e](https://github.com/skbkontur/retail-ui/commit/fef6e3e))
4129
+ - **ComboBox:** prevent searching items after blur ([0a6153d](https://github.com/skbkontur/retail-ui/commit/0a6153d))
4130
+ - **ComboBox:** show editing input text on focus instead of value ([6e0e8d4](https://github.com/skbkontur/retail-ui/commit/6e0e8d4))
4131
+ - **Menu:** scroll till the container edges while moving through items ([32a6f94](https://github.com/skbkontur/retail-ui/commit/32a6f94)), closes [#860](https://github.com/skbkontur/retail-ui/issues/860)
4132
+ - **Tooltip:** add shallow equal on shouldComponentUpdate ([647fd5b](https://github.com/skbkontur/retail-ui/commit/647fd5b)), closes [#899](https://github.com/skbkontur/retail-ui/issues/899)
4133
+ - **TopBar:** pass href instead of logoHref prop to Logotype ([04b2d54](https://github.com/skbkontur/retail-ui/commit/04b2d54)), closes [#923](https://github.com/skbkontur/retail-ui/issues/923)
4134
+
4135
+ ### Features
4136
+
4137
+ - **DatePicker:** поддержка праздничных дней ([#904](https://github.com/skbkontur/retail-ui/issues/904)) ([d1f4213](https://github.com/skbkontur/retail-ui/commit/d1f4213)), closes [#423](https://github.com/skbkontur/retail-ui/issues/423)
4138
+ - **Hint:** add `useWrapper` prop ([142f684](https://github.com/skbkontur/retail-ui/commit/142f684))
4139
+ - **Modal:** опциональное залипание шапки и футера ([#911](https://github.com/skbkontur/retail-ui/issues/911)) ([1e763cf](https://github.com/skbkontur/retail-ui/commit/1e763cf))
4140
+ - **Popup:** allow use react component as anchorElement ([7b0b373](https://github.com/skbkontur/retail-ui/commit/7b0b373))
4141
+ - **Tooltip:** add `useWrapper` prop ([71d803a](https://github.com/skbkontur/retail-ui/commit/71d803a)), closes [#721](https://github.com/skbkontur/retail-ui/issues/721)
4142
+
4143
+ <a name="0.29.0"></a>
4144
+
4145
+ # [0.29.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.28.0...retail-ui@0.29.0) (2018-11-13)
4146
+
4147
+ ### Bug Fixes
4148
+
4149
+ - **ComboBox:** update textValue even if empty (autocomplete mode) ([#875](https://github.com/skbkontur/retail-ui/issues/875)) ([6981973](https://github.com/skbkontur/retail-ui/commit/6981973))
4150
+
4151
+ ### Features
4152
+
4153
+ - **Button:** Новые стили для кнопок-стрелок ([#839](https://github.com/skbkontur/retail-ui/issues/839)) ([bcfe9c9](https://github.com/skbkontur/retail-ui/commit/bcfe9c9))
4154
+ - **ComboBox:** allow use hover state in renderItem ([eacebc3](https://github.com/skbkontur/retail-ui/commit/eacebc3))
4155
+ - **Fias:** новый компонент ФИАС, [#779](https://github.com/skbkontur/retail-ui/issues/779) ([74e7e04](https://github.com/skbkontur/retail-ui/commit/74e7e04))
4156
+ - **FxInput:** add public method blur ([b4e167d](https://github.com/skbkontur/retail-ui/commit/b4e167d)), closes [#888](https://github.com/skbkontur/retail-ui/issues/888)
4157
+
4158
+ ### BREAKING CHANGES
4159
+
4160
+ - **ComboBox:** second argument of renderItem not used and replaced by MenuItemState
4161
+
4162
+ <a name="0.28.0"></a>
4163
+
4164
+ # [0.28.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.27.0...retail-ui@0.28.0) (2018-11-08)
4165
+
4166
+ ### Bug Fixes
4167
+
4168
+ - **CurrencyInput:** починено поведение плэйсхолдера ([84d2486](https://github.com/skbkontur/retail-ui/commit/84d2486))
4169
+ - **FxInput:** mainInGroup works again ([9bfca93](https://github.com/skbkontur/retail-ui/commit/9bfca93))
4170
+ - **HBVS:** only root component can update styles ([e12d32f](https://github.com/skbkontur/retail-ui/commit/e12d32f))
4171
+ - **Hint:** remove inline-block style [#829](https://github.com/skbkontur/retail-ui/issues/829) ([c9fbdfb](https://github.com/skbkontur/retail-ui/commit/c9fbdfb))
4172
+ - **Popup:** make disableAnimations working again ([c85db13](https://github.com/skbkontur/retail-ui/commit/c85db13))
4173
+ - **SidePage:** work with react@15 ([9e811bd](https://github.com/skbkontur/retail-ui/commit/9e811bd))
4174
+ - **Textarea:** поправлен интерфейс и пропсов, исправлена пара багов ([715d162](https://github.com/skbkontur/retail-ui/commit/715d162))
4175
+ - **Tooltip:** click on svg in tooltip [#877](https://github.com/skbkontur/retail-ui/issues/877) ([3fa07e7](https://github.com/skbkontur/retail-ui/commit/3fa07e7))
4176
+
4177
+ ### Features
4178
+
4179
+ - **Checkbox:** новое состояние WIP ([b443d5d](https://github.com/skbkontur/retail-ui/commit/b443d5d))
4180
+ - **Hint:** add disableAnimations prop ([cd548a6](https://github.com/skbkontur/retail-ui/commit/cd548a6))
4181
+ - **Paging:** global keydown listener ([b10df5d](https://github.com/skbkontur/retail-ui/commit/b10df5d))
4182
+ - **Paging:** show navigation hints by condition ([232a5c2](https://github.com/skbkontur/retail-ui/commit/232a5c2))
4183
+ - **PopupMenu:** add disableAnimation prop in PopupMenu-based components ([6602986](https://github.com/skbkontur/retail-ui/commit/6602986))
4184
+
4185
+ <a name="0.27.0"></a>
4186
+
4187
+ # [0.27.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.26.1...retail-ui@0.27.0) (2018-10-29)
4188
+
4189
+ ### Bug Fixes
4190
+
4191
+ - **Button:** fix flat styles ([5ba5980](https://github.com/skbkontur/retail-ui/commit/5ba5980)), closes [#856](https://github.com/skbkontur/retail-ui/issues/856)
4192
+ - **ComboBox:** public refs input/menu/inputLikeText ([f28b418](https://github.com/skbkontur/retail-ui/commit/f28b418))
4193
+ - **FxInput:** fix warning from 'mainInGroup' prop ([2ad6e4e](https://github.com/skbkontur/retail-ui/commit/2ad6e4e))
4194
+ - **Input:** filter props for HTMLInputElement, fix [#831](https://github.com/skbkontur/retail-ui/issues/831) ([fa94219](https://github.com/skbkontur/retail-ui/commit/fa94219))
4195
+ - **Input:** filter props for HTMLInputElement, fix [#831](https://github.com/skbkontur/retail-ui/issues/831) ([b0f04af](https://github.com/skbkontur/retail-ui/commit/b0f04af))
4196
+ - **Input:** input icons inside modal header [#861](https://github.com/skbkontur/retail-ui/issues/861) ([b69f0ab](https://github.com/skbkontur/retail-ui/commit/b69f0ab))
4197
+ - **Input:** update typings ([34adf0a](https://github.com/skbkontur/retail-ui/commit/34adf0a)), closes [#845](https://github.com/skbkontur/retail-ui/issues/845)
4198
+ - **Link:** fix types, fix [#841](https://github.com/skbkontur/retail-ui/issues/841) ([4a1e2b8](https://github.com/skbkontur/retail-ui/commit/4a1e2b8))
4199
+ - **Modal:** fix after Sticky hotfix ([b354149](https://github.com/skbkontur/retail-ui/commit/b354149))
4200
+ - **Modal:** not adaptive ([96178bd](https://github.com/skbkontur/retail-ui/commit/96178bd)), closes [#847](https://github.com/skbkontur/retail-ui/issues/847)
4201
+ - **SidePage:** fix blockBackground=false ([4a78d94](https://github.com/skbkontur/retail-ui/commit/4a78d94))
4202
+ - **SidePage:** fix blockBackground=false ([15a1763](https://github.com/skbkontur/retail-ui/commit/15a1763))
4203
+ - **Sticky:** вернули старое поведение с бесконечной рекурсией ([c04f3f1](https://github.com/skbkontur/retail-ui/commit/c04f3f1))
4204
+ - **Sticky:** вернули старое поведение с бесконечной рекурсией ([7cf7ebc](https://github.com/skbkontur/retail-ui/commit/7cf7ebc))
4205
+ - **Sticky:** fix default value of allowChildWithMargins ([3e5856e](https://github.com/skbkontur/retail-ui/commit/3e5856e))
4206
+ - **Sticky:** fix default value of allowChildWithMargins ([0ff54c6](https://github.com/skbkontur/retail-ui/commit/0ff54c6))
4207
+
4208
+ ### Features
4209
+
4210
+ - **CustomComboBox:** добавил ref для InputLikeText ([c5cd653](https://github.com/skbkontur/retail-ui/commit/c5cd653))
4211
+ - **Tooltip:** новое значение `trigger` ([391f715](https://github.com/skbkontur/retail-ui/commit/391f715)), closes [#818](https://github.com/skbkontur/retail-ui/issues/818)
4212
+
4213
+ <a name="0.26.3"></a>
4214
+
4215
+ ## [0.26.3](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.26.1...retail-ui@0.26.3) (2018-10-25)
4216
+
4217
+ ### Bug Fixes
4218
+
4219
+ - **Modal:** Modal.Footer и Modal.Header ипользуют Sticky с `allowChildWithMargins === true` ([8fee4c1](https://github.com/skbkontur/retail-ui/commit/8fee4c1bd5133e5b7419cb8951c08b46605a3985))
4220
+
4221
+ <a name="0.26.2"></a>
4222
+
4223
+ ## [0.26.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.26.0...retail-ui@0.26.2) (2018-10-25)
4224
+
4225
+ ### Bug Fixes
4226
+
4227
+ - **Sticky:** fix default value of allowChildWithMargins ([fffbea0](https://github.com/skbkontur/retail-ui/commit/fffbea0))
4228
+ - **Sticky:** вернули старое поведение с бесконечной рекурсией ([ebbbeec](https://github.com/skbkontur/retail-ui/commit/ebbbeec))
4229
+
4230
+ <a name="0.26.1"></a>
4231
+
4232
+ ## [0.26.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.26.0...retail-ui@0.26.1) (2018-10-24)
4233
+
4234
+ **Note:** Version bump only for package retail-ui
4235
+
4236
+ <a name="0.26.0"></a>
4237
+
4238
+ # [0.26.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.25.0...retail-ui@0.26.0) (2018-10-23)
4239
+
4240
+ ### Bug Fixes
4241
+
4242
+ - **Button:** fix subpixel bug in chrome ([a757350](https://github.com/skbkontur/retail-ui/commit/a757350))
4243
+ - **FxInput:** fix warning from 'mainInGroup' prop ([d24390c](https://github.com/skbkontur/retail-ui/commit/d24390c))
4244
+ - **HBVS:** окончательно отремонтирован ([c8df8a5](https://github.com/skbkontur/retail-ui/commit/c8df8a5))
4245
+ - **Modal:** fix modalClickTrap height, close [#810](https://github.com/skbkontur/retail-ui/issues/810) ([01497b5](https://github.com/skbkontur/retail-ui/commit/01497b5))
4246
+
4247
+ ### Features
4248
+
4249
+ - **combobox:** accept onUnexpectedInput handler return value ([e6c1d37](https://github.com/skbkontur/retail-ui/commit/e6c1d37))
4250
+ - **Icon:** use svg icons ([0690828](https://github.com/skbkontur/retail-ui/commit/0690828))
4251
+
4252
+ <a name="0.25.0"></a>
4253
+
4254
+ # [0.25.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.24.1...retail-ui@0.25.0) (2018-10-15)
4255
+
4256
+ ### Bug Fixes
4257
+
4258
+ - **ComboBox:** onChange при потере фокуса ([c3353b0](https://github.com/skbkontur/retail-ui/commit/c3353b0)), closes [#680](https://github.com/skbkontur/retail-ui/issues/680)
4259
+ - **HBVS:** пересчет размеров окна в каждом didUpdate, Closed [#717](https://github.com/skbkontur/retail-ui/issues/717) ([a162a03](https://github.com/skbkontur/retail-ui/commit/a162a03))
4260
+ - **Input:** fix console.log warning in group ([2bd4287](https://github.com/skbkontur/retail-ui/commit/2bd4287))
4261
+ - **Input:** повыщенный z-index при фокусе ([cf7f423](https://github.com/skbkontur/retail-ui/commit/cf7f423))
4262
+ - **Kebab:** react warning of unitless number ([66c6f21](https://github.com/skbkontur/retail-ui/commit/66c6f21))
4263
+ - **Modal:** fix click-handler ([cf84fd9](https://github.com/skbkontur/retail-ui/commit/cf84fd9)), closes [#757](https://github.com/skbkontur/retail-ui/issues/757)
4264
+ - **Modal:** focusLock отключен в ie, fix [#784](https://github.com/skbkontur/retail-ui/issues/784) ([839c7fa](https://github.com/skbkontur/retail-ui/commit/839c7fa))
4265
+ - **Popup:** change min-width to fix [#799](https://github.com/skbkontur/retail-ui/issues/799) ([4fb60a6](https://github.com/skbkontur/retail-ui/commit/4fb60a6))
4266
+ - **ResizeDetector:** удален `removeEventListener` :green_apple: ([ab586f7](https://github.com/skbkontur/retail-ui/commit/ab586f7))
4267
+ - **Tabs:** fix setState after unmount in Indicator component ([7444784](https://github.com/skbkontur/retail-ui/commit/7444784)), closes [#735](https://github.com/skbkontur/retail-ui/issues/735)
4268
+
4269
+ ### Features
4270
+
4271
+ - **Calendar:** больше переменных в стилях ([212bd1f](https://github.com/skbkontur/retail-ui/commit/212bd1f)), closes [#755](https://github.com/skbkontur/retail-ui/issues/755)
4272
+ - **Group:** added Group tests and Stories ([a669d7f](https://github.com/skbkontur/retail-ui/commit/a669d7f))
4273
+ - **Input:** выделение значения ([1b68c7a](https://github.com/skbkontur/retail-ui/commit/1b68c7a))
4274
+ - **Textarea:** выделение значения ([8282b37](https://github.com/skbkontur/retail-ui/commit/8282b37))
4275
+
4276
+ <a name="0.24.1"></a>
4277
+
4278
+ ## [0.24.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.24.0...retail-ui@0.24.1) (2018-10-10)
4279
+
4280
+ ### Bug Fixes
4281
+
4282
+ - **ComboBox:** PureComponent заменен на shouldComponentUpdate ([38d34fc](https://github.com/skbkontur/retail-ui/commit/38d34fc))
4283
+ - **SidePage:** fix zIndex of footer, fixed [#714](https://github.com/skbkontur/retail-ui/issues/714) ([63a2b5d](https://github.com/skbkontur/retail-ui/commit/63a2b5d))
4284
+
4285
+ <a name="0.24.0"></a>
4286
+
4287
+ # [0.24.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.23.3...retail-ui@0.24.0) (2018-10-08)
4288
+
4289
+ ### Bug Fixes
4290
+
4291
+ - **Button:** fix type link in flat mode ([dc1d505](https://github.com/skbkontur/retail-ui/commit/dc1d505))
4292
+ - **ComboBox:** изменение значения после unexpectedInput ([c5379be](https://github.com/skbkontur/retail-ui/commit/c5379be)), closes [#730](https://github.com/skbkontur/retail-ui/issues/730)
4293
+ - **Hint:** pin color for ie11 ([7361e20](https://github.com/skbkontur/retail-ui/commit/7361e20))
4294
+ - **Input:** fix flat styles ([cbb4e55](https://github.com/skbkontur/retail-ui/commit/cbb4e55)), closes [#731](https://github.com/skbkontur/retail-ui/issues/731)
4295
+ - **Tooltip:** allow customize color ([26af1d5](https://github.com/skbkontur/retail-ui/commit/26af1d5))
4296
+
4297
+ ### Features
4298
+
4299
+ - **ComboBox:** add 'reset' method ([4ff05fa](https://github.com/skbkontur/retail-ui/commit/4ff05fa))
4300
+ - onOpen & onClose props for DropDown Menu ([#771](https://github.com/skbkontur/retail-ui/issues/771)) ([9ae4bf0](https://github.com/skbkontur/retail-ui/commit/9ae4bf0)), closes [#769](https://github.com/skbkontur/retail-ui/issues/769) [#733](https://github.com/skbkontur/retail-ui/issues/733)
4301
+
4302
+ <a name="0.23.3"></a>
4303
+
4304
+ ## [0.23.3](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.23.2...retail-ui@0.23.3) (2018-09-27)
4305
+
4306
+ **Note:** Version bump only for package retail-ui
4307
+
4308
+ <a name="0.23.2"></a>
4309
+
4310
+ ## [0.23.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.23.1...retail-ui@0.23.2) (2018-09-26)
4311
+
4312
+ ### Bug Fixes
4313
+
4314
+ - **Textarea:** fix % width ([d4dab33](https://github.com/skbkontur/retail-ui/commit/d4dab33))
4315
+
4316
+ <a name="0.23.1"></a>
4317
+
4318
+ ## [0.23.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.23.0...retail-ui@0.23.1) (2018-09-24)
4319
+
4320
+ ### Bug Fixes
4321
+
4322
+ - **Hint:** render method ([585d0b8](https://github.com/skbkontur/retail-ui/commit/585d0b8))
4323
+ - **Input:** fix sizes in flat theme :lipstick:, fixed [#732](https://github.com/skbkontur/retail-ui/issues/732) ([2e35605](https://github.com/skbkontur/retail-ui/commit/2e35605))
4324
+ - **Textarea:** pass width prop to wrapper, fixed [#724](https://github.com/skbkontur/retail-ui/issues/724) ([52611bd](https://github.com/skbkontur/retail-ui/commit/52611bd))
4325
+ - **Tooltip:** fix positioning with inline-block caption, fix [#721](https://github.com/skbkontur/retail-ui/issues/721) ([6ba920e](https://github.com/skbkontur/retail-ui/commit/6ba920e))
4326
+
4327
+ <a name="0.23.0"></a>
4328
+
4329
+ # [0.23.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.22.0...retail-ui@0.23.0) (2018-09-17)
4330
+
4331
+ ### Bug Fixes
4332
+
4333
+ - **Button:** removed z-index ([02ce734](https://github.com/skbkontur/retail-ui/commit/02ce734))
4334
+ - **ComboBox:** clear textValue ([c66342c](https://github.com/skbkontur/retail-ui/commit/c66342c))
4335
+ - **ComboBox:** don't focus if props.value changed with error ([1ce1235](https://github.com/skbkontur/retail-ui/commit/1ce1235))
4336
+ - **ComboBox:** test replace `is` to `exists` ([0c6247a](https://github.com/skbkontur/retail-ui/commit/0c6247a))
4337
+ - **CurrencyInput:** missing blur method ([60edcdc](https://github.com/skbkontur/retail-ui/commit/60edcdc))
4338
+ - **DatePicker:** fixed icon line-height, close [#493](https://github.com/skbkontur/retail-ui/issues/493) ([3c990e0](https://github.com/skbkontur/retail-ui/commit/3c990e0))
4339
+ - **HBVS:** восстановление скролла контейнера при unmount ([faebf8f](https://github.com/skbkontur/retail-ui/commit/faebf8f))
4340
+ - **Input:** remove `z-index` from styles ([1abcc3e](https://github.com/skbkontur/retail-ui/commit/1abcc3e))
4341
+ - **MenuItem:** fix bounds ([34f879f](https://github.com/skbkontur/retail-ui/commit/34f879f)), closes [#662](https://github.com/skbkontur/retail-ui/issues/662)
4342
+ - **Modal:** починено позиционирование футера ([aabdca6](https://github.com/skbkontur/retail-ui/commit/aabdca6)), closes [#683](https://github.com/skbkontur/retail-ui/issues/683) [#66](https://github.com/skbkontur/retail-ui/issues/66)
4343
+ - **OldComboBox:** use placeholder color from variables ([3ac585b](https://github.com/skbkontur/retail-ui/commit/3ac585b))
4344
+ - **retail-ui:** добавил fallback-анимацию для серого спиннера ([5bff386](https://github.com/skbkontur/retail-ui/commit/5bff386)), closes [#9b9b9](https://github.com/skbkontur/retail-ui/issues/9b9b9) [#671](https://github.com/skbkontur/retail-ui/issues/671)
4345
+ - **Textarea:** fix adapter ([08e5104](https://github.com/skbkontur/retail-ui/commit/08e5104))
4346
+ - **Toggle:** controlled/uncontrolled ([d0a7df1](https://github.com/skbkontur/retail-ui/commit/d0a7df1)), closes [#699](https://github.com/skbkontur/retail-ui/issues/699)
4347
+ - **Toggle:** удален console.log, fixed [#689](https://github.com/skbkontur/retail-ui/issues/689) ([7169baf](https://github.com/skbkontur/retail-ui/commit/7169baf))
4348
+ - **Tooltip:** порядок позиций по гайду ([af61858](https://github.com/skbkontur/retail-ui/commit/af61858)), closes [/guides.kontur.ru/controls/tooltip/#09](https://github.com//guides.kontur.ru/controls/tooltip//issues/09) [#178](https://github.com/skbkontur/retail-ui/issues/178)
4349
+ - **TopBar:** дропдауны на основе Popup ([c38f520](https://github.com/skbkontur/retail-ui/commit/c38f520)), closes [#655](https://github.com/skbkontur/retail-ui/issues/655)
4350
+
4351
+ ### Features
4352
+
4353
+ - **Modal:** `425px` теперь живет в `variables.less` ([21b7192](https://github.com/skbkontur/retail-ui/commit/21b7192))
4354
+ - **PopupMenu:** функция в caption ([7dbea4e](https://github.com/skbkontur/retail-ui/commit/7dbea4e))
4355
+ - **ResizeDetecter:** компонент для отслеживания ресайза элемента ([d9fc862](https://github.com/skbkontur/retail-ui/commit/d9fc862))
4356
+
4357
+ <a name="0.22.0"></a>
4358
+
4359
+ # [0.22.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.21.2...retail-ui@0.22.0) (2018-08-21)
4360
+
4361
+ ### Bug Fixes
4362
+
4363
+ - **Kebab:** восстановление фокуса на кнопке после закрытия ([b3a4002](https://github.com/skbkontur/retail-ui/commit/b3a4002))
4364
+
4365
+ ### Features
4366
+
4367
+ - **Button:** состояние error у button-link ([eb8d3ac](https://github.com/skbkontur/retail-ui/commit/eb8d3ac))
4368
+ - **Toggle:** переделан компонент ([1a93003](https://github.com/skbkontur/retail-ui/commit/1a93003))
4369
+
4370
+ <a name="0.21.2"></a>
4371
+
4372
+ ## [0.21.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.21.0...retail-ui@0.21.2) (2018-08-17)
4373
+
4374
+ ### Bug Fixes
4375
+
4376
+ - **retail-ui:** fix confused publishing ([4d3051b](https://github.com/skbkontur/retail-ui/commit/4d3051b))
4377
+
4378
+ <a name="0.21.0"></a>
4379
+
4380
+ # [0.21.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.20.2...retail-ui@0.21.0) (2018-08-16)
4381
+
4382
+ ### Bug Fixes
4383
+
4384
+ - **Combobox:** disabled в плоской теме вновь работает ([c083b34](https://github.com/skbkontur/retail-ui/commit/c083b34)), closes [#660](https://github.com/skbkontur/retail-ui/issues/660)
4385
+ - **Hint:** позиционирование с блочным элементом ([6430b6f](https://github.com/skbkontur/retail-ui/commit/6430b6f)), closes [#637](https://github.com/skbkontur/retail-ui/issues/637)
4386
+
4387
+ ### Features
4388
+
4389
+ - **retail-ui Calendar:** открывается ближайший доступный месяц ([a8e4858](https://github.com/skbkontur/retail-ui/commit/a8e4858)), closes [#658](https://github.com/skbkontur/retail-ui/issues/658)
4390
+
4391
+ <a name="0.20.2"></a>
4392
+
4393
+ ## [0.20.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.20.1...retail-ui@0.20.2) (2018-08-06)
4394
+
4395
+ ### Bug Fixes
4396
+
4397
+ - **datepicker:** disable values which are not between min/max date ([1a2a507](https://github.com/skbkontur/retail-ui/commit/1a2a507))
4398
+ - **datepicker:** select works correct with january ([e2f3eac](https://github.com/skbkontur/retail-ui/commit/e2f3eac))
4399
+ - **datepicker:** select works correct with january, added test ([682c35a](https://github.com/skbkontur/retail-ui/commit/682c35a))
4400
+ - **Input:** flat-стили по гайдам ([1f51a19](https://github.com/skbkontur/retail-ui/commit/1f51a19))
4401
+ - **Input:** стили по гайдам ([da6c464](https://github.com/skbkontur/retail-ui/commit/da6c464)), closes [#627](https://github.com/skbkontur/retail-ui/issues/627)
4402
+ - **tabs:** added default export ([aad57fd](https://github.com/skbkontur/retail-ui/commit/aad57fd))
4403
+ - **Textarea:** flat-стили ([829874d](https://github.com/skbkontur/retail-ui/commit/829874d))
4404
+ - **tooltip:** dont show tail if render returns null ([dc82b86](https://github.com/skbkontur/retail-ui/commit/dc82b86))
4405
+
4406
+ <a name="0.20.1"></a>
4407
+
4408
+ ## [0.20.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.20.0...retail-ui@0.20.1) (2018-07-31)
4409
+
4410
+ ### Bug Fixes
4411
+
4412
+ - **Modal:** фокус внутри Modal ([59e3d82](https://github.com/skbkontur/retail-ui/commit/59e3d82)), closes [#645](https://github.com/skbkontur/retail-ui/issues/645)
4413
+
4414
+ <a name="0.20.0"></a>
4415
+
4416
+ # [0.20.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.19.1...retail-ui@0.20.0) (2018-07-26)
4417
+
4418
+ ### Bug Fixes
4419
+
4420
+ - **Calendar:** Починен скролл около последнего доступного месяца ([aa0d6a7](https://github.com/skbkontur/retail-ui/commit/aa0d6a7)), closes [#619](https://github.com/skbkontur/retail-ui/issues/619)
4421
+ - **Dropdown:** починен интерфейс пропсов ([ec37a07](https://github.com/skbkontur/retail-ui/commit/ec37a07)), closes [#633](https://github.com/skbkontur/retail-ui/issues/633)
4422
+ - **Hint:** fix [#624](https://github.com/skbkontur/retail-ui/issues/624) ([64fa5c5](https://github.com/skbkontur/retail-ui/commit/64fa5c5))
4423
+ - **InternalMenu:** исправлены тайпинги ([dc6e9cc](https://github.com/skbkontur/retail-ui/commit/dc6e9cc))
4424
+ - **Loader:** position after window resize ([ed7884d](https://github.com/skbkontur/retail-ui/commit/ed7884d))
4425
+ - **logotype:** fixed widget button in safari ([eeecacd](https://github.com/skbkontur/retail-ui/commit/eeecacd))
4426
+ - **Menu:** исправлены тайпинги ([8e79032](https://github.com/skbkontur/retail-ui/commit/8e79032))
4427
+ - **Modal:** fix top padding if no Header ([3c8d696](https://github.com/skbkontur/retail-ui/commit/3c8d696))
4428
+ - **Popup:** fix \_updateLocation method ([b14740d](https://github.com/skbkontur/retail-ui/commit/b14740d))
4429
+ - **textarea:** fixes [#564](https://github.com/skbkontur/retail-ui/issues/564) ([cb0cf4f](https://github.com/skbkontur/retail-ui/commit/cb0cf4f))
4430
+ - **textarea:** fixes [#564](https://github.com/skbkontur/retail-ui/issues/564) ([b265343](https://github.com/skbkontur/retail-ui/commit/b265343))
4431
+
4432
+ ### Features
4433
+
4434
+ - **CurrencyInput:** добавлен публичный метод focus ([5454a60](https://github.com/skbkontur/retail-ui/commit/5454a60))
4435
+ - **FxInput:** возможность получить инстанс инпута через innerProp ([52b3072](https://github.com/skbkontur/retail-ui/commit/52b3072))
4436
+ - **FxInput:** публичный метод focus ([25ebb0d](https://github.com/skbkontur/retail-ui/commit/25ebb0d))
4437
+ - **input:** pass html attributes to input ([31311fe](https://github.com/skbkontur/retail-ui/commit/31311fe)), closes [#530](https://github.com/skbkontur/retail-ui/issues/530)
4438
+ - **input:** pass html attributes to input ([332d376](https://github.com/skbkontur/retail-ui/commit/332d376)), closes [#530](https://github.com/skbkontur/retail-ui/issues/530)
4439
+ - **MenuItem:** принимает Link из react-router-dom ([eab8056](https://github.com/skbkontur/retail-ui/commit/eab8056)), closes [#602](https://github.com/skbkontur/retail-ui/issues/602)
4440
+ - **Modal:** фокус внутри модалки ([201cb8e](https://github.com/skbkontur/retail-ui/commit/201cb8e))
4441
+ - **PopupMenu:** закрытие попапа ([97f399e](https://github.com/skbkontur/retail-ui/commit/97f399e))
4442
+
4443
+ ### Reverts
4444
+
4445
+ - refactor(autocomplete): ChangeEvent in onChange ([4a01ff4](https://github.com/skbkontur/retail-ui/commit/4a01ff4))
4446
+
4447
+ <a name="0.19.1"></a>
4448
+
4449
+ ## [0.19.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.19.0...retail-ui@0.19.1) (2018-07-19)
4450
+
4451
+ ### Bug Fixes
4452
+
4453
+ - **ComboBox:** fixed onUnexpectedInput return type ([8ed6f1c](https://github.com/skbkontur/retail-ui/commit/8ed6f1c))
4454
+ - **Modal:** fixed always enabled mobile styles ([741a719](https://github.com/skbkontur/retail-ui/commit/741a719))
4455
+ - **RadioGroup:** value is no longer accepts only primitive ([a283d47](https://github.com/skbkontur/retail-ui/commit/a283d47))
4456
+
4457
+ <a name="0.19.0"></a>
4458
+
4459
+ # [0.19.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.18.14...retail-ui@0.19.0) (2018-07-19)
4460
+
4461
+ ### Bug Fixes
4462
+
4463
+ - **adapters:** fixed all adapters ([9d8252b](https://github.com/skbkontur/retail-ui/commit/9d8252b))
4464
+ - **Button:** change Button border-radius ([bfa5db8](https://github.com/skbkontur/retail-ui/commit/bfa5db8)), closes [#546](https://github.com/skbkontur/retail-ui/issues/546)
4465
+ - **Calendar:** пофикшен скролл к максимальному месяцу ([326a2cc](https://github.com/skbkontur/retail-ui/commit/326a2cc))
4466
+ - **datepicker:** correct keyboard and mouse events in date select ([b8694fb](https://github.com/skbkontur/retail-ui/commit/b8694fb))
4467
+ - **datepicker:** removed add-event-listener, onmouseleave handler ([aaf620f](https://github.com/skbkontur/retail-ui/commit/aaf620f))
4468
+ - **Hint:** принудительный перенос длинных слов ([7d5e171](https://github.com/skbkontur/retail-ui/commit/7d5e171)), closes [#596](https://github.com/skbkontur/retail-ui/issues/596)
4469
+ - **scripts\_\_build:** fixed wrong import ([da2d951](https://github.com/skbkontur/retail-ui/commit/da2d951))
4470
+ - **scripts\_\_build:** исправлено неверное определение TS файлов ([efd0032](https://github.com/skbkontur/retail-ui/commit/efd0032))
4471
+ - **Tab:** исправлено попадание лишнего пропа в разметку ([4c03b09](https://github.com/skbkontur/retail-ui/commit/4c03b09)), closes [#605](https://github.com/skbkontur/retail-ui/issues/605)
4472
+
4473
+ ### Features
4474
+
4475
+ - **modal:** адаптивная модалка ([bf76868](https://github.com/skbkontur/retail-ui/commit/bf76868))
4476
+
4477
+ <a name="0.18.14"></a>
4478
+
4479
+ ## [0.18.14](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.18.13...retail-ui@0.18.14) (2018-07-15)
4480
+
4481
+ ### Bug Fixes
4482
+
4483
+ - **combobox:** no focus on placeholder click if flat ([579d765](https://github.com/skbkontur/retail-ui/commit/579d765)), closes [#552](https://github.com/skbkontur/retail-ui/issues/552)
4484
+ - loader behavior with long content ([a6a14cc](https://github.com/skbkontur/retail-ui/commit/a6a14cc))
4485
+ - **combobox:** call onBlur if menu is opened ([c5ebde4](https://github.com/skbkontur/retail-ui/commit/c5ebde4))
4486
+ - **date-picker:** fix [#595](https://github.com/skbkontur/retail-ui/issues/595) ([6880cd6](https://github.com/skbkontur/retail-ui/commit/6880cd6))
4487
+ - **date-picker-old:** returned missed ts-declaration files ([97c8235](https://github.com/skbkontur/retail-ui/commit/97c8235))
4488
+ - **datepicker-old:** first date changing shows correctly ([f6d2a10](https://github.com/skbkontur/retail-ui/commit/f6d2a10))
4489
+ - **input:** fixed placeholder polyfill in flat ([e65ad6c](https://github.com/skbkontur/retail-ui/commit/e65ad6c))
4490
+ - **link:** fixed props ts-type ([0996fc4](https://github.com/skbkontur/retail-ui/commit/0996fc4))
4491
+ - **loader:** added Nullable type reference ([20c1da3](https://github.com/skbkontur/retail-ui/commit/20c1da3))
4492
+ - **loader:** codestyle ([fe57238](https://github.com/skbkontur/retail-ui/commit/fe57238))
4493
+ - **loader:** component and suffix are no longer required props ([5b9f625](https://github.com/skbkontur/retail-ui/commit/5b9f625))
4494
+ - **loader:** fixed generating `import` types ([696ec64](https://github.com/skbkontur/retail-ui/commit/696ec64))
4495
+ - **loader:** horizontal scroll content ([03dfdc8](https://github.com/skbkontur/retail-ui/commit/03dfdc8))
4496
+ - **logotype:** component is no longer required prop ([520c2d2](https://github.com/skbkontur/retail-ui/commit/520c2d2))
4497
+ - **password-input:** fixed generating `import` types ([d05f88e](https://github.com/skbkontur/retail-ui/commit/d05f88e))
4498
+ - **select:** better definitions ([489f1cb](https://github.com/skbkontur/retail-ui/commit/489f1cb))
4499
+ - **tab:** support [@types](https://github.com/types)/react@15 definitions ([5b120bb](https://github.com/skbkontur/retail-ui/commit/5b120bb))
4500
+ - **top-bar:** better definitions ([e7fcb6e](https://github.com/skbkontur/retail-ui/commit/e7fcb6e))
4501
+
4502
+ <a name="0.18.13"></a>
4503
+
4504
+ ## [0.18.13](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.18.12...retail-ui@0.18.13) (2018-07-09)
4505
+
4506
+ ### Bug Fixes
4507
+
4508
+ - **ts-definitions:** replaced global types with local types ([bbda3c0](https://github.com/skbkontur/retail-ui/commit/bbda3c0))
4509
+
4510
+ <a name="0.18.12"></a>
4511
+
4512
+ ## 0.18.12 (2018-07-09)
4513
+
4514
+ ### Bug Fixes
4515
+
4516
+ - **lookup:** allow correctly work with recompose ([80ebb97](https://github.com/skbkontur/retail-ui/commit/80ebb97))
4517
+ - **modal:** fixed paddings and close button ([e55e763](https://github.com/skbkontur/retail-ui/commit/e55e763))
4518
+ - **popup:** fixed recursive updates for older react ([9309748](https://github.com/skbkontur/retail-ui/commit/9309748))
4519
+ - **сurrency-input:** починка ввода циферок на андроиде и под selenium ([d3f0286](https://github.com/skbkontur/retail-ui/commit/d3f0286))