@skbkontur/react-ui 0.0.0-50f666af0e → 0.0.0-52df310f7c

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 (3134) hide show
  1. package/CHANGELOG.md +3094 -0
  2. package/LICENSE +21 -0
  3. package/README.md +133 -57
  4. package/cjs/components/Autocomplete/Autocomplete.d.ts +37 -20
  5. package/cjs/components/Autocomplete/Autocomplete.js +197 -40
  6. package/cjs/components/Autocomplete/Autocomplete.js.map +1 -1
  7. package/cjs/components/Autocomplete/Autocomplete.md +21 -7
  8. package/cjs/components/Autocomplete/Autocomplete.styles.d.ts +4 -0
  9. package/cjs/components/Autocomplete/Autocomplete.styles.js +10 -0
  10. package/cjs/components/Autocomplete/Autocomplete.styles.js.map +1 -0
  11. package/cjs/components/Autocomplete/index.js +1 -1
  12. package/cjs/components/Autocomplete/index.js.map +1 -1
  13. package/cjs/components/Autocomplete/locale/index.d.ts +4 -0
  14. package/cjs/components/Autocomplete/locale/index.js +11 -0
  15. package/cjs/components/Autocomplete/locale/index.js.map +1 -0
  16. package/cjs/components/Autocomplete/locale/locales/en.d.ts +2 -0
  17. package/cjs/components/Autocomplete/locale/locales/en.js +6 -0
  18. package/cjs/components/Autocomplete/locale/locales/en.js.map +1 -0
  19. package/cjs/components/Autocomplete/locale/locales/ru.d.ts +2 -0
  20. package/cjs/components/Autocomplete/locale/locales/ru.js +6 -0
  21. package/cjs/components/Autocomplete/locale/locales/ru.js.map +1 -0
  22. package/cjs/components/Autocomplete/locale/types.d.ts +5 -0
  23. package/cjs/components/Autocomplete/locale/types.js +1 -0
  24. package/cjs/components/Button/Button.d.ts +90 -23
  25. package/cjs/components/Button/Button.js +167 -16
  26. package/cjs/components/Button/Button.js.map +1 -1
  27. package/cjs/components/Button/Button.md +104 -89
  28. package/cjs/components/Button/Button.mixins.d.ts +6 -6
  29. package/cjs/components/Button/Button.mixins.js +76 -134
  30. package/cjs/components/Button/Button.mixins.js.map +1 -1
  31. package/cjs/components/Button/Button.styles.d.ts +63 -30
  32. package/cjs/components/Button/Button.styles.js +400 -351
  33. package/cjs/components/Button/Button.styles.js.map +1 -1
  34. package/cjs/components/Button/index.js +1 -1
  35. package/cjs/components/Button/index.js.map +1 -1
  36. package/cjs/components/Center/Center.d.ts +17 -13
  37. package/cjs/components/Center/Center.js +39 -20
  38. package/cjs/components/Center/Center.js.map +1 -1
  39. package/cjs/components/Center/Center.md +26 -5
  40. package/cjs/components/Center/Center.styles.d.ts +1 -1
  41. package/cjs/components/Center/Center.styles.js +8 -11
  42. package/cjs/components/Center/Center.styles.js.map +1 -1
  43. package/cjs/components/Center/index.js +1 -1
  44. package/cjs/components/Center/index.js.map +1 -1
  45. package/cjs/components/Checkbox/Checkbox.d.ts +52 -20
  46. package/cjs/components/Checkbox/Checkbox.js +148 -47
  47. package/cjs/components/Checkbox/Checkbox.js.map +1 -1
  48. package/cjs/components/Checkbox/Checkbox.md +152 -63
  49. package/cjs/components/Checkbox/Checkbox.styles.d.ts +18 -11
  50. package/cjs/components/Checkbox/Checkbox.styles.js +107 -78
  51. package/cjs/components/Checkbox/Checkbox.styles.js.map +1 -1
  52. package/cjs/components/Checkbox/index.js +1 -1
  53. package/cjs/components/Checkbox/index.js.map +1 -1
  54. package/cjs/components/ComboBox/ComboBox.d.ts +51 -19
  55. package/cjs/components/ComboBox/ComboBox.js +152 -74
  56. package/cjs/components/ComboBox/ComboBox.js.map +1 -1
  57. package/cjs/components/ComboBox/ComboBox.md +528 -432
  58. package/cjs/components/ComboBox/index.js +1 -1
  59. package/cjs/components/ComboBox/index.js.map +1 -1
  60. package/cjs/components/CurrencyInput/CurrencyHelper.js +26 -19
  61. package/cjs/components/CurrencyInput/CurrencyHelper.js.map +1 -1
  62. package/cjs/components/CurrencyInput/CurrencyInput.d.ts +22 -15
  63. package/cjs/components/CurrencyInput/CurrencyInput.js +133 -35
  64. package/cjs/components/CurrencyInput/CurrencyInput.js.map +1 -1
  65. package/cjs/components/CurrencyInput/CurrencyInput.md +37 -20
  66. package/cjs/components/CurrencyInput/CurrencyInputHelper.js +7 -5
  67. package/cjs/components/CurrencyInput/CurrencyInputHelper.js.map +1 -1
  68. package/cjs/components/CurrencyInput/CurrencyInputKeyboardActions.d.ts +3 -1
  69. package/cjs/components/CurrencyInput/CurrencyInputKeyboardActions.js +15 -3
  70. package/cjs/components/CurrencyInput/CurrencyInputKeyboardActions.js.map +1 -1
  71. package/cjs/components/CurrencyInput/CursorHelper.js +20 -17
  72. package/cjs/components/CurrencyInput/CursorHelper.js.map +1 -1
  73. package/cjs/components/CurrencyInput/SelectionHelper.js.map +1 -1
  74. package/cjs/components/CurrencyInput/constants.d.ts +3 -0
  75. package/cjs/components/CurrencyInput/constants.js +6 -2
  76. package/cjs/components/CurrencyInput/constants.js.map +1 -1
  77. package/cjs/components/CurrencyInput/index.js +1 -1
  78. package/cjs/components/CurrencyInput/index.js.map +1 -1
  79. package/cjs/components/CurrencyLabel/CurrencyLabel.d.ts +11 -11
  80. package/cjs/components/CurrencyLabel/CurrencyLabel.js +28 -15
  81. package/cjs/components/CurrencyLabel/CurrencyLabel.js.map +1 -1
  82. package/cjs/components/CurrencyLabel/CurrencyLabel.md +29 -23
  83. package/cjs/components/CurrencyLabel/index.js +1 -1
  84. package/cjs/components/CurrencyLabel/index.js.map +1 -1
  85. package/cjs/components/DateInput/DateFragmentsView.d.ts +2 -2
  86. package/cjs/components/DateInput/DateFragmentsView.js +19 -4
  87. package/cjs/components/DateInput/DateFragmentsView.js.map +1 -1
  88. package/cjs/components/DateInput/DateFragmentsView.styles.d.ts +5 -4
  89. package/cjs/components/DateInput/DateFragmentsView.styles.js +7 -11
  90. package/cjs/components/DateInput/DateFragmentsView.styles.js.map +1 -1
  91. package/cjs/components/DateInput/DateInput.d.ts +21 -14
  92. package/cjs/components/DateInput/DateInput.js +55 -21
  93. package/cjs/components/DateInput/DateInput.js.map +1 -1
  94. package/cjs/components/DateInput/DateInput.md +106 -104
  95. package/cjs/components/DateInput/DateInput.styles.d.ts +9 -6
  96. package/cjs/components/DateInput/DateInput.styles.js +20 -8
  97. package/cjs/components/DateInput/DateInput.styles.js.map +1 -1
  98. package/cjs/components/DateInput/ViewDateInputValidateChecks.js +21 -21
  99. package/cjs/components/DateInput/ViewDateInputValidateChecks.js.map +1 -1
  100. package/cjs/components/DateInput/helpers/DateInputKeyboardActions.js +2 -3
  101. package/cjs/components/DateInput/helpers/DateInputKeyboardActions.js.map +1 -1
  102. package/cjs/components/DateInput/helpers/InternalDateMediator.d.ts +3 -3
  103. package/cjs/components/DateInput/helpers/InternalDateMediator.js +15 -8
  104. package/cjs/components/DateInput/helpers/InternalDateMediator.js.map +1 -1
  105. package/cjs/components/DateInput/helpers/SelectionHelpers.js +4 -4
  106. package/cjs/components/DateInput/helpers/SelectionHelpers.js.map +1 -1
  107. package/cjs/components/DateInput/helpers/inputNumber.d.ts +3 -3
  108. package/cjs/components/DateInput/helpers/inputNumber.js +45 -12
  109. package/cjs/components/DateInput/helpers/inputNumber.js.map +1 -1
  110. package/cjs/components/DateInput/index.js +1 -1
  111. package/cjs/components/DateInput/index.js.map +1 -1
  112. package/cjs/components/DatePicker/DatePicker.d.ts +41 -22
  113. package/cjs/components/DatePicker/DatePicker.js +112 -32
  114. package/cjs/components/DatePicker/DatePicker.js.map +1 -1
  115. package/cjs/components/DatePicker/DatePicker.md +325 -310
  116. package/cjs/components/DatePicker/DatePicker.styles.d.ts +1 -1
  117. package/cjs/components/DatePicker/DatePicker.styles.js +4 -5
  118. package/cjs/components/DatePicker/DatePicker.styles.js.map +1 -1
  119. package/cjs/components/DatePicker/DatePickerHelpers.js +2 -2
  120. package/cjs/components/DatePicker/DatePickerHelpers.js.map +1 -1
  121. package/cjs/components/DatePicker/Picker.js +16 -6
  122. package/cjs/components/DatePicker/Picker.js.map +1 -1
  123. package/cjs/components/DatePicker/Picker.styles.d.ts +4 -3
  124. package/cjs/components/DatePicker/Picker.styles.js +11 -12
  125. package/cjs/components/DatePicker/Picker.styles.js.map +1 -1
  126. package/cjs/components/DatePicker/index.js +1 -1
  127. package/cjs/components/DatePicker/index.js.map +1 -1
  128. package/cjs/components/DatePicker/locale/index.js +1 -1
  129. package/cjs/components/DatePicker/locale/index.js.map +1 -1
  130. package/cjs/components/DatePicker/locale/locales/en.js.map +1 -1
  131. package/cjs/components/DatePicker/locale/locales/ru.js.map +1 -1
  132. package/cjs/components/DatePicker/locale/types.js +1 -1
  133. package/cjs/components/Dropdown/Dropdown.d.ts +17 -4
  134. package/cjs/components/Dropdown/Dropdown.js +73 -31
  135. package/cjs/components/Dropdown/Dropdown.js.map +1 -1
  136. package/cjs/components/Dropdown/Dropdown.md +11 -12
  137. package/cjs/components/Dropdown/index.js +1 -1
  138. package/cjs/components/Dropdown/index.js.map +1 -1
  139. package/cjs/components/DropdownMenu/DropdownMenu.d.ts +31 -15
  140. package/cjs/components/DropdownMenu/DropdownMenu.js +57 -19
  141. package/cjs/components/DropdownMenu/DropdownMenu.js.map +1 -1
  142. package/cjs/components/DropdownMenu/DropdownMenu.md +221 -73
  143. package/cjs/components/DropdownMenu/index.js +1 -1
  144. package/cjs/components/DropdownMenu/index.js.map +1 -1
  145. package/cjs/components/FileUploader/FileUploader.d.ts +56 -0
  146. package/cjs/components/FileUploader/FileUploader.js +355 -0
  147. package/cjs/components/FileUploader/FileUploader.js.map +1 -0
  148. package/cjs/components/FileUploader/FileUploader.md +79 -0
  149. package/cjs/components/FileUploader/FileUploader.mixins.d.ts +1 -0
  150. package/cjs/components/FileUploader/FileUploader.mixins.js +10 -0
  151. package/cjs/components/FileUploader/FileUploader.mixins.js.map +1 -0
  152. package/cjs/components/FileUploader/FileUploader.styles.d.ts +33 -0
  153. package/cjs/components/FileUploader/FileUploader.styles.js +270 -0
  154. package/cjs/components/FileUploader/FileUploader.styles.js.map +1 -0
  155. package/cjs/components/FileUploader/index.d.ts +5 -0
  156. package/cjs/components/FileUploader/index.js +5 -0
  157. package/cjs/components/FileUploader/index.js.map +1 -0
  158. package/cjs/components/FileUploader/locale/index.d.ts +4 -0
  159. package/cjs/components/FileUploader/locale/index.js +11 -0
  160. package/cjs/components/FileUploader/locale/index.js.map +1 -0
  161. package/cjs/components/FileUploader/locale/locales/en.d.ts +2 -0
  162. package/cjs/components/FileUploader/locale/locales/en.js +7 -0
  163. package/cjs/components/FileUploader/locale/locales/en.js.map +1 -0
  164. package/cjs/components/FileUploader/locale/locales/ru.d.ts +2 -0
  165. package/cjs/components/FileUploader/locale/locales/ru.js +7 -0
  166. package/cjs/components/FileUploader/locale/locales/ru.js.map +1 -0
  167. package/cjs/components/FileUploader/locale/types.d.ts +6 -0
  168. package/cjs/components/FileUploader/locale/types.js +1 -0
  169. package/cjs/components/FxInput/FxInput.d.ts +14 -7
  170. package/cjs/components/FxInput/FxInput.js +49 -22
  171. package/cjs/components/FxInput/FxInput.js.map +1 -1
  172. package/cjs/components/FxInput/FxInput.md +29 -13
  173. package/cjs/components/FxInput/index.js +1 -1
  174. package/cjs/components/FxInput/index.js.map +1 -1
  175. package/cjs/components/Gapped/Gapped.d.ts +18 -12
  176. package/cjs/components/Gapped/Gapped.js +69 -34
  177. package/cjs/components/Gapped/Gapped.js.map +1 -1
  178. package/cjs/components/Gapped/Gapped.md +43 -43
  179. package/cjs/components/Gapped/index.js +1 -1
  180. package/cjs/components/Gapped/index.js.map +1 -1
  181. package/cjs/components/GlobalLoader/GlobalLoader.d.ts +106 -0
  182. package/cjs/components/GlobalLoader/GlobalLoader.js +275 -0
  183. package/cjs/components/GlobalLoader/GlobalLoader.js.map +1 -0
  184. package/cjs/components/GlobalLoader/GlobalLoader.md +98 -0
  185. package/cjs/components/GlobalLoader/GlobalLoaderView.d.ts +13 -0
  186. package/cjs/components/GlobalLoader/GlobalLoaderView.js +73 -0
  187. package/cjs/components/GlobalLoader/GlobalLoaderView.js.map +1 -0
  188. package/cjs/components/GlobalLoader/GlobalLoaderView.styles.d.ts +16 -0
  189. package/cjs/components/GlobalLoader/GlobalLoaderView.styles.js +190 -0
  190. package/cjs/components/GlobalLoader/GlobalLoaderView.styles.js.map +1 -0
  191. package/cjs/components/GlobalLoader/index.d.ts +1 -0
  192. package/cjs/components/GlobalLoader/index.js +1 -0
  193. package/cjs/components/GlobalLoader/index.js.map +1 -0
  194. package/cjs/components/GlobalLoader/useParams.d.ts +22 -0
  195. package/cjs/components/GlobalLoader/useParams.js +45 -0
  196. package/cjs/components/GlobalLoader/useParams.js.map +1 -0
  197. package/cjs/components/Group/Group.d.ts +7 -1
  198. package/cjs/components/Group/Group.js +90 -41
  199. package/cjs/components/Group/Group.js.map +1 -1
  200. package/cjs/components/Group/Group.md +18 -26
  201. package/cjs/components/Group/Group.styles.d.ts +1 -1
  202. package/cjs/components/Group/Group.styles.js +10 -12
  203. package/cjs/components/Group/Group.styles.js.map +1 -1
  204. package/cjs/components/Group/index.js +1 -1
  205. package/cjs/components/Group/index.js.map +1 -1
  206. package/cjs/components/Hint/Hint.d.ts +58 -14
  207. package/cjs/components/Hint/Hint.js +91 -13
  208. package/cjs/components/Hint/Hint.js.map +1 -1
  209. package/cjs/components/Hint/Hint.md +85 -3
  210. package/cjs/components/Hint/Hint.styles.d.ts +4 -3
  211. package/cjs/components/Hint/Hint.styles.js +14 -15
  212. package/cjs/components/Hint/Hint.styles.js.map +1 -1
  213. package/cjs/components/Hint/index.js +1 -1
  214. package/cjs/components/Hint/index.js.map +1 -1
  215. package/cjs/components/Input/Input.d.ts +32 -12
  216. package/cjs/components/Input/Input.js +124 -49
  217. package/cjs/components/Input/Input.js.map +1 -1
  218. package/cjs/components/Input/Input.md +29 -13
  219. package/cjs/components/Input/Input.styles.d.ts +38 -23
  220. package/cjs/components/Input/Input.styles.js +212 -105
  221. package/cjs/components/Input/Input.styles.js.map +1 -1
  222. package/cjs/components/Input/index.js +1 -1
  223. package/cjs/components/Input/index.js.map +1 -1
  224. package/cjs/components/Kebab/Kebab.d.ts +26 -30
  225. package/cjs/components/Kebab/Kebab.js +71 -65
  226. package/cjs/components/Kebab/Kebab.js.map +1 -1
  227. package/cjs/components/Kebab/Kebab.md +278 -45
  228. package/cjs/components/Kebab/Kebab.styles.d.ts +7 -5
  229. package/cjs/components/Kebab/Kebab.styles.js +25 -30
  230. package/cjs/components/Kebab/Kebab.styles.js.map +1 -1
  231. package/cjs/components/Kebab/__stories__/Kebab.items.js.map +1 -1
  232. package/cjs/components/Kebab/index.js +1 -1
  233. package/cjs/components/Kebab/index.js.map +1 -1
  234. package/cjs/components/Link/Link.d.ts +44 -21
  235. package/cjs/components/Link/Link.js +65 -34
  236. package/cjs/components/Link/Link.js.map +1 -1
  237. package/cjs/components/Link/Link.md +77 -11
  238. package/cjs/components/Link/Link.mixins.d.ts +1 -1
  239. package/cjs/components/Link/Link.mixins.js +5 -4
  240. package/cjs/components/Link/Link.mixins.js.map +1 -1
  241. package/cjs/components/Link/Link.styles.d.ts +13 -11
  242. package/cjs/components/Link/Link.styles.js +29 -32
  243. package/cjs/components/Link/Link.styles.js.map +1 -1
  244. package/cjs/components/Link/index.js +1 -1
  245. package/cjs/components/Link/index.js.map +1 -1
  246. package/cjs/components/Loader/Loader.d.ts +60 -20
  247. package/cjs/components/Loader/Loader.js +206 -36
  248. package/cjs/components/Loader/Loader.js.map +1 -1
  249. package/cjs/components/Loader/Loader.md +32 -25
  250. package/cjs/components/Loader/Loader.styles.d.ts +4 -4
  251. package/cjs/components/Loader/Loader.styles.js +13 -27
  252. package/cjs/components/Loader/Loader.styles.js.map +1 -1
  253. package/cjs/components/Loader/__stories__/LoaderAndButton.js +56 -0
  254. package/cjs/components/Loader/__stories__/LoaderAndButton.js.map +1 -0
  255. package/cjs/components/Loader/index.js +1 -1
  256. package/cjs/components/Loader/index.js.map +1 -1
  257. package/cjs/components/MenuHeader/MenuHeader.d.ts +12 -4
  258. package/cjs/components/MenuHeader/MenuHeader.js +25 -13
  259. package/cjs/components/MenuHeader/MenuHeader.js.map +1 -1
  260. package/cjs/components/MenuHeader/MenuHeader.md +23 -0
  261. package/cjs/components/MenuHeader/MenuHeader.styles.d.ts +4 -3
  262. package/cjs/components/MenuHeader/MenuHeader.styles.js +13 -11
  263. package/cjs/components/MenuHeader/MenuHeader.styles.js.map +1 -1
  264. package/cjs/components/MenuHeader/index.js +1 -1
  265. package/cjs/components/MenuHeader/index.js.map +1 -1
  266. package/cjs/components/MenuItem/MenuItem.d.ts +77 -13
  267. package/cjs/components/MenuItem/MenuItem.js +118 -23
  268. package/cjs/components/MenuItem/MenuItem.js.map +1 -1
  269. package/cjs/components/MenuItem/MenuItem.md +109 -7
  270. package/cjs/components/MenuItem/MenuItem.styles.d.ts +17 -10
  271. package/cjs/components/MenuItem/MenuItem.styles.js +67 -32
  272. package/cjs/components/MenuItem/MenuItem.styles.js.map +1 -1
  273. package/cjs/components/MenuItem/index.js +1 -1
  274. package/cjs/components/MenuItem/index.js.map +1 -1
  275. package/cjs/components/MenuSeparator/MenuSeparator.d.ts +9 -3
  276. package/cjs/components/MenuSeparator/MenuSeparator.js +30 -7
  277. package/cjs/components/MenuSeparator/MenuSeparator.js.map +1 -1
  278. package/cjs/components/MenuSeparator/MenuSeparator.md +14 -0
  279. package/cjs/components/MenuSeparator/MenuSeparator.styles.d.ts +4 -2
  280. package/cjs/components/MenuSeparator/MenuSeparator.styles.js +10 -6
  281. package/cjs/components/MenuSeparator/MenuSeparator.styles.js.map +1 -1
  282. package/cjs/components/MenuSeparator/index.js +1 -1
  283. package/cjs/components/MenuSeparator/index.js.map +1 -1
  284. package/cjs/components/Modal/Modal.d.ts +20 -8
  285. package/cjs/components/Modal/Modal.js +69 -31
  286. package/cjs/components/Modal/Modal.js.map +1 -1
  287. package/cjs/components/Modal/Modal.md +38 -37
  288. package/cjs/components/Modal/Modal.styles.d.ts +36 -18
  289. package/cjs/components/Modal/Modal.styles.js +173 -52
  290. package/cjs/components/Modal/Modal.styles.js.map +1 -1
  291. package/cjs/components/Modal/ModalBody.d.ts +13 -1
  292. package/cjs/components/Modal/ModalBody.js +64 -20
  293. package/cjs/components/Modal/ModalBody.js.map +1 -1
  294. package/cjs/components/Modal/ModalClose.d.ts +1 -2
  295. package/cjs/components/Modal/ModalClose.js +42 -11
  296. package/cjs/components/Modal/ModalClose.js.map +1 -1
  297. package/cjs/components/Modal/ModalContext.d.ts +5 -1
  298. package/cjs/components/Modal/ModalContext.js +8 -1
  299. package/cjs/components/Modal/ModalContext.js.map +1 -1
  300. package/cjs/components/Modal/ModalFooter.d.ts +19 -1
  301. package/cjs/components/Modal/ModalFooter.js +70 -32
  302. package/cjs/components/Modal/ModalFooter.js.map +1 -1
  303. package/cjs/components/Modal/ModalHeader.d.ts +6 -2
  304. package/cjs/components/Modal/ModalHeader.js +50 -30
  305. package/cjs/components/Modal/ModalHeader.js.map +1 -1
  306. package/cjs/components/Modal/index.js +4 -4
  307. package/cjs/components/Modal/index.js.map +1 -1
  308. package/cjs/components/Paging/NavigationHelper.d.ts +1 -1
  309. package/cjs/components/Paging/NavigationHelper.js +3 -2
  310. package/cjs/components/Paging/NavigationHelper.js.map +1 -1
  311. package/cjs/components/Paging/Paging.d.ts +27 -11
  312. package/cjs/components/Paging/Paging.js +106 -66
  313. package/cjs/components/Paging/Paging.js.map +1 -1
  314. package/cjs/components/Paging/Paging.md +56 -43
  315. package/cjs/components/Paging/Paging.styles.d.ts +16 -11
  316. package/cjs/components/Paging/Paging.styles.js +63 -41
  317. package/cjs/components/Paging/Paging.styles.js.map +1 -1
  318. package/cjs/components/Paging/PagingDefaultComponent.d.ts +9 -0
  319. package/cjs/components/Paging/PagingDefaultComponent.js +21 -0
  320. package/cjs/components/Paging/PagingDefaultComponent.js.map +1 -0
  321. package/cjs/components/Paging/PagingHelper.js.map +1 -1
  322. package/cjs/components/Paging/index.js +1 -1
  323. package/cjs/components/Paging/index.js.map +1 -1
  324. package/cjs/components/Paging/locale/index.js +1 -1
  325. package/cjs/components/Paging/locale/index.js.map +1 -1
  326. package/cjs/components/Paging/locale/locales/en.js.map +1 -1
  327. package/cjs/components/Paging/locale/locales/ru.js.map +1 -1
  328. package/cjs/components/Paging/locale/types.js +1 -1
  329. package/cjs/components/PasswordInput/PasswordInput.d.ts +20 -8
  330. package/cjs/components/PasswordInput/PasswordInput.js +111 -34
  331. package/cjs/components/PasswordInput/PasswordInput.js.map +1 -1
  332. package/cjs/components/PasswordInput/PasswordInput.md +9 -9
  333. package/cjs/components/PasswordInput/PasswordInput.styles.d.ts +6 -2
  334. package/cjs/components/PasswordInput/PasswordInput.styles.js +31 -12
  335. package/cjs/components/PasswordInput/PasswordInput.styles.js.map +1 -1
  336. package/cjs/components/PasswordInput/PasswordInputIcon.d.ts +3 -0
  337. package/cjs/components/PasswordInput/PasswordInputIcon.js +15 -0
  338. package/cjs/components/PasswordInput/PasswordInputIcon.js.map +1 -0
  339. package/cjs/components/PasswordInput/index.js +1 -1
  340. package/cjs/components/PasswordInput/index.js.map +1 -1
  341. package/cjs/components/Radio/Radio.d.ts +53 -28
  342. package/cjs/components/Radio/Radio.js +111 -36
  343. package/cjs/components/Radio/Radio.js.map +1 -1
  344. package/cjs/components/Radio/Radio.md +38 -14
  345. package/cjs/components/Radio/Radio.styles.d.ts +18 -11
  346. package/cjs/components/Radio/Radio.styles.js +95 -55
  347. package/cjs/components/Radio/Radio.styles.js.map +1 -1
  348. package/cjs/components/Radio/index.js +1 -1
  349. package/cjs/components/Radio/index.js.map +1 -1
  350. package/cjs/components/RadioGroup/Prevent.js +1 -1
  351. package/cjs/components/RadioGroup/Prevent.js.map +1 -1
  352. package/cjs/components/RadioGroup/RadioGroup.d.ts +73 -98
  353. package/cjs/components/RadioGroup/RadioGroup.js +74 -90
  354. package/cjs/components/RadioGroup/RadioGroup.js.map +1 -1
  355. package/cjs/components/RadioGroup/RadioGroup.md +43 -43
  356. package/cjs/components/RadioGroup/RadioGroup.styles.d.ts +3 -2
  357. package/cjs/components/RadioGroup/RadioGroup.styles.js +11 -12
  358. package/cjs/components/RadioGroup/RadioGroup.styles.js.map +1 -1
  359. package/cjs/components/RadioGroup/RadioGroupContext.d.ts +10 -0
  360. package/cjs/components/RadioGroup/RadioGroupContext.js +21 -0
  361. package/cjs/components/RadioGroup/RadioGroupContext.js.map +1 -0
  362. package/cjs/components/RadioGroup/index.js +1 -1
  363. package/cjs/components/RadioGroup/index.js.map +1 -1
  364. package/cjs/components/ResponsiveLayout/ResponsiveLayout.d.ts +12 -0
  365. package/cjs/components/ResponsiveLayout/ResponsiveLayout.js +33 -0
  366. package/cjs/components/ResponsiveLayout/ResponsiveLayout.js.map +1 -0
  367. package/cjs/components/ResponsiveLayout/ResponsiveLayout.md +74 -0
  368. package/cjs/components/ResponsiveLayout/ResponsiveLayoutEvents.d.ts +11 -0
  369. package/cjs/components/ResponsiveLayout/ResponsiveLayoutEvents.js +103 -0
  370. package/cjs/components/ResponsiveLayout/ResponsiveLayoutEvents.js.map +1 -0
  371. package/cjs/components/ResponsiveLayout/decorator.d.ts +33 -0
  372. package/cjs/components/ResponsiveLayout/decorator.js +44 -0
  373. package/cjs/components/ResponsiveLayout/decorator.js.map +1 -0
  374. package/cjs/components/ResponsiveLayout/index.d.ts +3 -0
  375. package/cjs/components/ResponsiveLayout/index.js +3 -0
  376. package/cjs/components/ResponsiveLayout/index.js.map +1 -0
  377. package/cjs/components/ResponsiveLayout/types.d.ts +11 -0
  378. package/cjs/components/ResponsiveLayout/types.js +1 -0
  379. package/cjs/components/ResponsiveLayout/useResponsiveLayout.d.ts +2 -0
  380. package/cjs/components/ResponsiveLayout/useResponsiveLayout.js +77 -0
  381. package/cjs/components/ResponsiveLayout/useResponsiveLayout.js.map +1 -0
  382. package/cjs/components/ScrollContainer/ScrollBar.d.ts +47 -0
  383. package/cjs/components/ScrollContainer/ScrollBar.js +303 -0
  384. package/cjs/components/ScrollContainer/ScrollBar.js.map +1 -0
  385. package/cjs/components/ScrollContainer/ScrollContainer.constants.d.ts +23 -0
  386. package/cjs/components/ScrollContainer/ScrollContainer.constants.js +34 -0
  387. package/cjs/components/ScrollContainer/ScrollContainer.constants.js.map +1 -0
  388. package/cjs/components/ScrollContainer/ScrollContainer.d.ts +73 -26
  389. package/cjs/components/ScrollContainer/ScrollContainer.helpers.d.ts +10 -0
  390. package/cjs/components/ScrollContainer/ScrollContainer.helpers.js +66 -0
  391. package/cjs/components/ScrollContainer/ScrollContainer.helpers.js.map +1 -0
  392. package/cjs/components/ScrollContainer/ScrollContainer.js +150 -157
  393. package/cjs/components/ScrollContainer/ScrollContainer.js.map +1 -1
  394. package/cjs/components/ScrollContainer/ScrollContainer.md +195 -60
  395. package/cjs/components/ScrollContainer/ScrollContainer.styles.d.ts +23 -4
  396. package/cjs/components/ScrollContainer/ScrollContainer.styles.js +98 -12
  397. package/cjs/components/ScrollContainer/ScrollContainer.styles.js.map +1 -1
  398. package/cjs/components/ScrollContainer/index.js +1 -1
  399. package/cjs/components/ScrollContainer/index.js.map +1 -1
  400. package/cjs/components/Select/Item.d.ts +4 -2
  401. package/cjs/components/Select/Item.js +4 -1
  402. package/cjs/components/Select/Item.js.map +1 -1
  403. package/cjs/components/Select/Select.d.ts +38 -44
  404. package/cjs/components/Select/Select.js +166 -30
  405. package/cjs/components/Select/Select.js.map +1 -1
  406. package/cjs/components/Select/Select.md +81 -23
  407. package/cjs/components/Select/Select.styles.d.ts +13 -7
  408. package/cjs/components/Select/Select.styles.js +50 -43
  409. package/cjs/components/Select/Select.styles.js.map +1 -1
  410. package/cjs/components/Select/index.js +1 -1
  411. package/cjs/components/Select/index.js.map +1 -1
  412. package/cjs/components/Select/locale/index.js +1 -1
  413. package/cjs/components/Select/locale/index.js.map +1 -1
  414. package/cjs/components/Select/locale/locales/en.js +1 -1
  415. package/cjs/components/Select/locale/locales/en.js.map +1 -1
  416. package/cjs/components/Select/locale/locales/ru.js +1 -1
  417. package/cjs/components/Select/locale/locales/ru.js.map +1 -1
  418. package/cjs/components/Select/locale/types.js +1 -1
  419. package/cjs/components/Select/selectTheme.d.ts +3 -0
  420. package/cjs/components/Select/selectTheme.js +43 -0
  421. package/cjs/components/Select/selectTheme.js.map +1 -0
  422. package/cjs/components/SidePage/SidePage.d.ts +34 -3
  423. package/cjs/components/SidePage/SidePage.js +122 -33
  424. package/cjs/components/SidePage/SidePage.js.map +1 -1
  425. package/cjs/components/SidePage/SidePage.md +48 -48
  426. package/cjs/components/SidePage/SidePage.styles.d.ts +38 -18
  427. package/cjs/components/SidePage/SidePage.styles.js +214 -59
  428. package/cjs/components/SidePage/SidePage.styles.js.map +1 -1
  429. package/cjs/components/SidePage/SidePageBody.d.ts +7 -1
  430. package/cjs/components/SidePage/SidePageBody.js +40 -11
  431. package/cjs/components/SidePage/SidePageBody.js.map +1 -1
  432. package/cjs/components/SidePage/SidePageContainer.d.ts +10 -1
  433. package/cjs/components/SidePage/SidePageContainer.js +59 -12
  434. package/cjs/components/SidePage/SidePageContainer.js.map +1 -1
  435. package/cjs/components/SidePage/SidePageContext.d.ts +8 -0
  436. package/cjs/components/SidePage/SidePageContext.js +14 -2
  437. package/cjs/components/SidePage/SidePageContext.js.map +1 -1
  438. package/cjs/components/SidePage/SidePageFooter.d.ts +24 -7
  439. package/cjs/components/SidePage/SidePageFooter.js +78 -21
  440. package/cjs/components/SidePage/SidePageFooter.js.map +1 -1
  441. package/cjs/components/SidePage/SidePageHeader.d.ts +21 -5
  442. package/cjs/components/SidePage/SidePageHeader.js +130 -39
  443. package/cjs/components/SidePage/SidePageHeader.js.map +1 -1
  444. package/cjs/components/SidePage/index.js +5 -5
  445. package/cjs/components/SidePage/index.js.map +1 -1
  446. package/cjs/components/Spinner/Spinner.d.ts +30 -18
  447. package/cjs/components/Spinner/Spinner.js +50 -31
  448. package/cjs/components/Spinner/Spinner.js.map +1 -1
  449. package/cjs/components/Spinner/Spinner.md +35 -34
  450. package/cjs/components/Spinner/Spinner.styles.d.ts +10 -8
  451. package/cjs/components/Spinner/Spinner.styles.js +49 -38
  452. package/cjs/components/Spinner/Spinner.styles.js.map +1 -1
  453. package/cjs/components/Spinner/SpinnerFallbackAnimation.d.ts +25 -0
  454. package/cjs/components/Spinner/SpinnerFallbackAnimation.js +190 -0
  455. package/cjs/components/Spinner/SpinnerFallbackAnimation.js.map +1 -0
  456. package/cjs/components/Spinner/index.js +1 -1
  457. package/cjs/components/Spinner/index.js.map +1 -1
  458. package/cjs/components/Spinner/locale/index.js +1 -1
  459. package/cjs/components/Spinner/locale/index.js.map +1 -1
  460. package/cjs/components/Spinner/locale/locales/en.js.map +1 -1
  461. package/cjs/components/Spinner/locale/locales/ru.js.map +1 -1
  462. package/cjs/components/Spinner/locale/types.js +1 -1
  463. package/cjs/components/Sticky/Sticky.d.ts +21 -6
  464. package/cjs/components/Sticky/Sticky.js +51 -22
  465. package/cjs/components/Sticky/Sticky.js.map +1 -1
  466. package/cjs/components/Sticky/Sticky.md +27 -27
  467. package/cjs/components/Sticky/Sticky.styles.d.ts +2 -1
  468. package/cjs/components/Sticky/Sticky.styles.js +13 -10
  469. package/cjs/components/Sticky/Sticky.styles.js.map +1 -1
  470. package/cjs/components/Sticky/index.js +1 -1
  471. package/cjs/components/Sticky/index.js.map +1 -1
  472. package/cjs/components/Switcher/Switcher.d.ts +25 -7
  473. package/cjs/components/Switcher/Switcher.js +107 -43
  474. package/cjs/components/Switcher/Switcher.js.map +1 -1
  475. package/cjs/components/Switcher/Switcher.md +107 -10
  476. package/cjs/components/Switcher/Switcher.styles.d.ts +8 -3
  477. package/cjs/components/Switcher/Switcher.styles.js +40 -11
  478. package/cjs/components/Switcher/Switcher.styles.js.map +1 -1
  479. package/cjs/components/Switcher/helpers.d.ts +1 -0
  480. package/cjs/components/Switcher/helpers.js +1 -0
  481. package/cjs/components/Switcher/helpers.js.map +1 -0
  482. package/cjs/components/Switcher/index.js +1 -1
  483. package/cjs/components/Switcher/index.js.map +1 -1
  484. package/cjs/components/Switcher/switcherTheme.d.ts +2 -0
  485. package/cjs/components/Switcher/switcherTheme.js +31 -0
  486. package/cjs/components/Switcher/switcherTheme.js.map +1 -0
  487. package/cjs/components/Tabs/Indicator.d.ts +3 -3
  488. package/cjs/components/Tabs/Indicator.js +25 -22
  489. package/cjs/components/Tabs/Indicator.js.map +1 -1
  490. package/cjs/components/Tabs/Indicator.styles.d.ts +7 -6
  491. package/cjs/components/Tabs/Indicator.styles.js +10 -13
  492. package/cjs/components/Tabs/Indicator.styles.js.map +1 -1
  493. package/cjs/components/Tabs/Tab.d.ts +22 -26
  494. package/cjs/components/Tabs/Tab.js +37 -40
  495. package/cjs/components/Tabs/Tab.js.map +1 -1
  496. package/cjs/components/Tabs/Tab.styles.d.ts +26 -10
  497. package/cjs/components/Tabs/Tab.styles.js +88 -42
  498. package/cjs/components/Tabs/Tab.styles.js.map +1 -1
  499. package/cjs/components/Tabs/Tabs.d.ts +22 -18
  500. package/cjs/components/Tabs/Tabs.js +58 -24
  501. package/cjs/components/Tabs/Tabs.js.map +1 -1
  502. package/cjs/components/Tabs/Tabs.md +36 -28
  503. package/cjs/components/Tabs/Tabs.styles.d.ts +3 -2
  504. package/cjs/components/Tabs/Tabs.styles.js +7 -9
  505. package/cjs/components/Tabs/Tabs.styles.js.map +1 -1
  506. package/cjs/components/Tabs/TabsContext.d.ts +8 -8
  507. package/cjs/components/Tabs/TabsContext.js +4 -2
  508. package/cjs/components/Tabs/TabsContext.js.map +1 -1
  509. package/cjs/components/Tabs/index.js +2 -2
  510. package/cjs/components/Tabs/index.js.map +1 -1
  511. package/cjs/components/Textarea/Textarea.d.ts +68 -16
  512. package/cjs/components/Textarea/Textarea.js +219 -55
  513. package/cjs/components/Textarea/Textarea.js.map +1 -1
  514. package/cjs/components/Textarea/Textarea.md +44 -9
  515. package/cjs/components/Textarea/Textarea.styles.d.ts +12 -5
  516. package/cjs/components/Textarea/Textarea.styles.js +80 -34
  517. package/cjs/components/Textarea/Textarea.styles.js.map +1 -1
  518. package/cjs/components/Textarea/TextareaCounter.d.ts +12 -0
  519. package/cjs/components/Textarea/TextareaCounter.js +76 -0
  520. package/cjs/components/Textarea/TextareaCounter.js.map +1 -0
  521. package/cjs/components/Textarea/TextareaHelpers.d.ts +8 -1
  522. package/cjs/components/Textarea/TextareaHelpers.js +9 -5
  523. package/cjs/components/Textarea/TextareaHelpers.js.map +1 -1
  524. package/cjs/components/Textarea/index.js +1 -1
  525. package/cjs/components/Textarea/index.js.map +1 -1
  526. package/cjs/components/Toast/Toast.d.ts +27 -12
  527. package/cjs/components/Toast/Toast.js +63 -28
  528. package/cjs/components/Toast/Toast.js.map +1 -1
  529. package/cjs/components/Toast/Toast.md +170 -41
  530. package/cjs/components/Toast/Toast.styles.d.ts +1 -1
  531. package/cjs/components/Toast/Toast.styles.js +7 -10
  532. package/cjs/components/Toast/Toast.styles.js.map +1 -1
  533. package/cjs/components/Toast/ToastStatic.d.ts +3 -2
  534. package/cjs/components/Toast/ToastStatic.js +11 -10
  535. package/cjs/components/Toast/ToastStatic.js.map +1 -1
  536. package/cjs/components/Toast/ToastView.d.ts +3 -1
  537. package/cjs/components/Toast/ToastView.js +38 -33
  538. package/cjs/components/Toast/ToastView.js.map +1 -1
  539. package/cjs/components/Toast/ToastView.styles.d.ts +7 -6
  540. package/cjs/components/Toast/ToastView.styles.js +37 -27
  541. package/cjs/components/Toast/ToastView.styles.js.map +1 -1
  542. package/cjs/components/Toast/index.js +1 -1
  543. package/cjs/components/Toast/index.js.map +1 -1
  544. package/cjs/components/Toggle/Toggle.d.ts +68 -6
  545. package/cjs/components/Toggle/Toggle.js +131 -12
  546. package/cjs/components/Toggle/Toggle.js.map +1 -1
  547. package/cjs/components/Toggle/Toggle.md +94 -9
  548. package/cjs/components/Toggle/Toggle.styles.d.ts +28 -10
  549. package/cjs/components/Toggle/Toggle.styles.js +140 -59
  550. package/cjs/components/Toggle/Toggle.styles.js.map +1 -1
  551. package/cjs/components/Toggle/index.js +1 -1
  552. package/cjs/components/Toggle/index.js.map +1 -1
  553. package/cjs/components/Token/Token.d.ts +21 -4
  554. package/cjs/components/Token/Token.js +51 -8
  555. package/cjs/components/Token/Token.js.map +1 -1
  556. package/cjs/components/Token/Token.md +112 -112
  557. package/cjs/components/Token/Token.styles.d.ts +27 -23
  558. package/cjs/components/Token/Token.styles.js +66 -60
  559. package/cjs/components/Token/Token.styles.js.map +1 -1
  560. package/cjs/components/Token/index.js +1 -1
  561. package/cjs/components/Token/index.js.map +1 -1
  562. package/cjs/components/TokenInput/TextWidthHelper.d.ts +8 -0
  563. package/cjs/components/TokenInput/TextWidthHelper.js +16 -7
  564. package/cjs/components/TokenInput/TextWidthHelper.js.map +1 -1
  565. package/cjs/components/TokenInput/TokenInput.d.ts +112 -17
  566. package/cjs/components/TokenInput/TokenInput.js +526 -104
  567. package/cjs/components/TokenInput/TokenInput.js.map +1 -1
  568. package/cjs/components/TokenInput/TokenInput.md +105 -83
  569. package/cjs/components/TokenInput/TokenInput.styles.d.ts +14 -8
  570. package/cjs/components/TokenInput/TokenInput.styles.js +106 -28
  571. package/cjs/components/TokenInput/TokenInput.styles.js.map +1 -1
  572. package/cjs/components/TokenInput/TokenInputMenu.d.ts +9 -2
  573. package/cjs/components/TokenInput/TokenInputMenu.js +49 -3
  574. package/cjs/components/TokenInput/TokenInputMenu.js.map +1 -1
  575. package/cjs/components/TokenInput/TokenInputReducer.d.ts +5 -0
  576. package/cjs/components/TokenInput/TokenInputReducer.js +22 -3
  577. package/cjs/components/TokenInput/TokenInputReducer.js.map +1 -1
  578. package/cjs/components/TokenInput/index.js +1 -1
  579. package/cjs/components/TokenInput/index.js.map +1 -1
  580. package/cjs/components/TokenInput/locale/index.js +1 -1
  581. package/cjs/components/TokenInput/locale/index.js.map +1 -1
  582. package/cjs/components/TokenInput/locale/locales/en.js +1 -1
  583. package/cjs/components/TokenInput/locale/locales/en.js.map +1 -1
  584. package/cjs/components/TokenInput/locale/locales/ru.js +1 -1
  585. package/cjs/components/TokenInput/locale/locales/ru.js.map +1 -1
  586. package/cjs/components/TokenInput/locale/types.js +1 -1
  587. package/cjs/components/Tooltip/Tooltip.d.ts +53 -40
  588. package/cjs/components/Tooltip/Tooltip.js +128 -31
  589. package/cjs/components/Tooltip/Tooltip.js.map +1 -1
  590. package/cjs/components/Tooltip/Tooltip.md +293 -212
  591. package/cjs/components/Tooltip/Tooltip.styles.d.ts +4 -3
  592. package/cjs/components/Tooltip/Tooltip.styles.js +11 -11
  593. package/cjs/components/Tooltip/Tooltip.styles.js.map +1 -1
  594. package/cjs/components/Tooltip/index.js +1 -1
  595. package/cjs/components/Tooltip/index.js.map +1 -1
  596. package/cjs/components/TooltipMenu/TooltipMenu.d.ts +42 -17
  597. package/cjs/components/TooltipMenu/TooltipMenu.js +78 -18
  598. package/cjs/components/TooltipMenu/TooltipMenu.js.map +1 -1
  599. package/cjs/components/TooltipMenu/TooltipMenu.md +210 -115
  600. package/cjs/components/TooltipMenu/index.js +1 -1
  601. package/cjs/components/TooltipMenu/index.js.map +1 -1
  602. package/cjs/hooks/useDrop.d.ts +11 -0
  603. package/cjs/hooks/useDrop.js +77 -0
  604. package/cjs/hooks/useDrop.js.map +1 -0
  605. package/cjs/hooks/useEffectWithoutInitCall.d.ts +2 -0
  606. package/cjs/hooks/useEffectWithoutInitCall.js +13 -0
  607. package/cjs/hooks/useEffectWithoutInitCall.js.map +1 -0
  608. package/cjs/hooks/useMemoObject.d.ts +2 -0
  609. package/cjs/hooks/useMemoObject.js +7 -0
  610. package/cjs/hooks/useMemoObject.js.map +1 -0
  611. package/cjs/index.d.ts +11 -7
  612. package/cjs/index.js +54 -52
  613. package/cjs/index.js.map +1 -1
  614. package/cjs/internal/BGRuler.d.ts +13 -15
  615. package/cjs/internal/BGRuler.js +18 -8
  616. package/cjs/internal/BGRuler.js.map +1 -1
  617. package/cjs/internal/Calendar/Calendar.d.ts +16 -13
  618. package/cjs/internal/Calendar/Calendar.js +97 -38
  619. package/cjs/internal/Calendar/Calendar.js.map +1 -1
  620. package/cjs/internal/Calendar/Calendar.styles.d.ts +3 -2
  621. package/cjs/internal/Calendar/Calendar.styles.js +9 -10
  622. package/cjs/internal/Calendar/Calendar.styles.js.map +1 -1
  623. package/cjs/internal/Calendar/CalendarDateShape.js +1 -1
  624. package/cjs/internal/Calendar/CalendarDateShape.js.map +1 -1
  625. package/cjs/internal/Calendar/CalendarScrollEvents.js.map +1 -1
  626. package/cjs/internal/Calendar/CalendarUtils.d.ts +5 -4
  627. package/cjs/internal/Calendar/CalendarUtils.js +33 -26
  628. package/cjs/internal/Calendar/CalendarUtils.js.map +1 -1
  629. package/cjs/internal/Calendar/DayCellView.d.ts +0 -1
  630. package/cjs/internal/Calendar/DayCellView.js +13 -24
  631. package/cjs/internal/Calendar/DayCellView.js.map +1 -1
  632. package/cjs/internal/Calendar/DayCellView.styles.d.ts +6 -5
  633. package/cjs/internal/Calendar/DayCellView.styles.js +14 -11
  634. package/cjs/internal/Calendar/DayCellView.styles.js.map +1 -1
  635. package/cjs/internal/Calendar/DayCellViewModel.js +1 -1
  636. package/cjs/internal/Calendar/DayCellViewModel.js.map +1 -1
  637. package/cjs/internal/Calendar/Month.d.ts +2 -0
  638. package/cjs/internal/Calendar/Month.js +49 -15
  639. package/cjs/internal/Calendar/Month.js.map +1 -1
  640. package/cjs/internal/Calendar/MonthView.js +22 -19
  641. package/cjs/internal/Calendar/MonthView.js.map +1 -1
  642. package/cjs/internal/Calendar/MonthView.styles.d.ts +9 -6
  643. package/cjs/internal/Calendar/MonthView.styles.js +28 -16
  644. package/cjs/internal/Calendar/MonthView.styles.js.map +1 -1
  645. package/cjs/internal/Calendar/MonthViewModel.d.ts +3 -2
  646. package/cjs/internal/Calendar/MonthViewModel.js +51 -32
  647. package/cjs/internal/Calendar/MonthViewModel.js.map +1 -1
  648. package/cjs/internal/Calendar/config.d.ts +2 -24
  649. package/cjs/internal/Calendar/config.js +33 -24
  650. package/cjs/internal/Calendar/config.js.map +1 -1
  651. package/cjs/internal/Calendar/index.js +2 -2
  652. package/cjs/internal/Calendar/index.js.map +1 -1
  653. package/cjs/internal/CommonWrapper/CommonWrapper.d.ts +33 -0
  654. package/cjs/internal/CommonWrapper/CommonWrapper.js +112 -0
  655. package/cjs/internal/CommonWrapper/CommonWrapper.js.map +1 -0
  656. package/cjs/internal/CommonWrapper/index.d.ts +1 -0
  657. package/cjs/internal/CommonWrapper/index.js +1 -0
  658. package/cjs/internal/CommonWrapper/index.js.map +1 -0
  659. package/cjs/internal/ComponentCombinator.d.ts +6 -8
  660. package/cjs/internal/ComponentCombinator.js +6 -2
  661. package/cjs/internal/ComponentCombinator.js.map +1 -1
  662. package/cjs/internal/ComponentTable.d.ts +9 -8
  663. package/cjs/internal/ComponentTable.js +33 -21
  664. package/cjs/internal/ComponentTable.js.map +1 -1
  665. package/cjs/internal/CustomComboBox/ComboBoxMenu.d.ts +15 -6
  666. package/cjs/internal/CustomComboBox/ComboBoxMenu.js +67 -12
  667. package/cjs/internal/CustomComboBox/ComboBoxMenu.js.map +1 -1
  668. package/cjs/internal/CustomComboBox/ComboBoxView.d.ts +36 -16
  669. package/cjs/internal/CustomComboBox/ComboBoxView.js +129 -17
  670. package/cjs/internal/CustomComboBox/ComboBoxView.js.map +1 -1
  671. package/cjs/internal/CustomComboBox/CustomComboBox.d.ts +22 -4
  672. package/cjs/internal/CustomComboBox/CustomComboBox.js +69 -22
  673. package/cjs/internal/CustomComboBox/CustomComboBox.js.map +1 -1
  674. package/cjs/internal/CustomComboBox/CustomComboBox.styles.d.ts +2 -2
  675. package/cjs/internal/CustomComboBox/CustomComboBox.styles.js +8 -10
  676. package/cjs/internal/CustomComboBox/CustomComboBox.styles.js.map +1 -1
  677. package/cjs/internal/CustomComboBox/CustomComboBoxReducer.d.ts +16 -16
  678. package/cjs/internal/CustomComboBox/CustomComboBoxReducer.js +65 -64
  679. package/cjs/internal/CustomComboBox/CustomComboBoxReducer.js.map +1 -1
  680. package/cjs/internal/CustomComboBox/CustomComboBoxTypes.js.map +1 -1
  681. package/cjs/internal/CustomComboBox/index.js +2 -2
  682. package/cjs/internal/CustomComboBox/index.js.map +1 -1
  683. package/cjs/internal/CustomComboBox/locale/index.js +1 -1
  684. package/cjs/internal/CustomComboBox/locale/index.js.map +1 -1
  685. package/cjs/internal/CustomComboBox/locale/locales/en.js.map +1 -1
  686. package/cjs/internal/CustomComboBox/locale/locales/ru.js.map +1 -1
  687. package/cjs/internal/CustomComboBox/locale/types.js +1 -1
  688. package/cjs/internal/DataTids/DATATIDS.md +12 -0
  689. package/cjs/internal/DataTids/DataTids.d.ts +12 -0
  690. package/cjs/internal/DataTids/DataTids.js +50 -0
  691. package/cjs/internal/DataTids/DataTids.js.map +1 -0
  692. package/cjs/internal/DataTids/DataTids.styles.d.ts +7 -0
  693. package/cjs/internal/DataTids/DataTids.styles.js +41 -0
  694. package/cjs/internal/DataTids/DataTids.styles.js.map +1 -0
  695. package/cjs/internal/DataTids/componentsDataTids.d.ts +5 -0
  696. package/cjs/internal/DataTids/componentsDataTids.js +16 -0
  697. package/cjs/internal/DataTids/componentsDataTids.js.map +1 -0
  698. package/cjs/internal/DateSelect/DateSelect.d.ts +13 -8
  699. package/cjs/internal/DateSelect/DateSelect.js +91 -30
  700. package/cjs/internal/DateSelect/DateSelect.js.map +1 -1
  701. package/cjs/internal/DateSelect/DateSelect.styles.d.ts +12 -11
  702. package/cjs/internal/DateSelect/DateSelect.styles.js +35 -40
  703. package/cjs/internal/DateSelect/DateSelect.styles.js.map +1 -1
  704. package/cjs/internal/DateSelect/index.js +1 -1
  705. package/cjs/internal/DateSelect/index.js.map +1 -1
  706. package/cjs/internal/DropdownContainer/DropdownContainer.d.ts +12 -13
  707. package/cjs/internal/DropdownContainer/DropdownContainer.js +52 -39
  708. package/cjs/internal/DropdownContainer/DropdownContainer.js.map +1 -1
  709. package/cjs/internal/DropdownContainer/DropdownContainer.styles.d.ts +3 -0
  710. package/cjs/internal/DropdownContainer/DropdownContainer.styles.js +9 -0
  711. package/cjs/internal/DropdownContainer/DropdownContainer.styles.js.map +1 -0
  712. package/cjs/internal/DropdownContainer/getManualPosition.d.ts +19 -0
  713. package/cjs/internal/DropdownContainer/getManualPosition.js +41 -0
  714. package/cjs/internal/DropdownContainer/getManualPosition.js.map +1 -0
  715. package/cjs/internal/DropdownContainer/index.js +1 -1
  716. package/cjs/internal/DropdownContainer/index.js.map +1 -1
  717. package/cjs/internal/FileUploaderControl/FileUploaderControlContext.d.ts +14 -0
  718. package/cjs/internal/FileUploaderControl/FileUploaderControlContext.js +18 -0
  719. package/cjs/internal/FileUploaderControl/FileUploaderControlContext.js.map +1 -0
  720. package/cjs/internal/FileUploaderControl/FileUploaderControlProvider.d.ts +14 -0
  721. package/cjs/internal/FileUploaderControl/FileUploaderControlProvider.js +111 -0
  722. package/cjs/internal/FileUploaderControl/FileUploaderControlProvider.js.map +1 -0
  723. package/cjs/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.d.ts +22 -0
  724. package/cjs/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.js +234 -0
  725. package/cjs/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.js.map +1 -0
  726. package/cjs/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.styles.d.ts +18 -0
  727. package/cjs/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.styles.js +110 -0
  728. package/cjs/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.styles.js.map +1 -0
  729. package/cjs/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.d.ts +15 -0
  730. package/cjs/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.js +46 -0
  731. package/cjs/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.js.map +1 -0
  732. package/cjs/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.styles.d.ts +8 -0
  733. package/cjs/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.styles.js +40 -0
  734. package/cjs/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.styles.js.map +1 -0
  735. package/cjs/internal/FileUploaderControl/FileUploaderFileValidationResult.d.ts +7 -0
  736. package/cjs/internal/FileUploaderControl/FileUploaderFileValidationResult.js +16 -0
  737. package/cjs/internal/FileUploaderControl/FileUploaderFileValidationResult.js.map +1 -0
  738. package/cjs/internal/FileUploaderControl/fileUtils.d.ts +14 -0
  739. package/cjs/internal/FileUploaderControl/fileUtils.js +26 -0
  740. package/cjs/internal/FileUploaderControl/fileUtils.js.map +1 -0
  741. package/cjs/internal/FileUploaderControl/hooks/useControlLocale.d.ts +1 -0
  742. package/cjs/internal/FileUploaderControl/hooks/useControlLocale.js +4 -0
  743. package/cjs/internal/FileUploaderControl/hooks/useControlLocale.js.map +1 -0
  744. package/cjs/internal/FileUploaderControl/hooks/useFileUploaderSize.d.ts +2 -0
  745. package/cjs/internal/FileUploaderControl/hooks/useFileUploaderSize.js +18 -0
  746. package/cjs/internal/FileUploaderControl/hooks/useFileUploaderSize.js.map +1 -0
  747. package/cjs/internal/FileUploaderControl/hooks/useUpload.d.ts +3 -0
  748. package/cjs/internal/FileUploaderControl/hooks/useUpload.js +51 -0
  749. package/cjs/internal/FileUploaderControl/hooks/useUpload.js.map +1 -0
  750. package/cjs/internal/FileUploaderControl/withFileUploaderControlProvider.d.ts +3 -0
  751. package/cjs/internal/FileUploaderControl/withFileUploaderControlProvider.js +23 -0
  752. package/cjs/internal/FileUploaderControl/withFileUploaderControlProvider.js.map +1 -0
  753. package/cjs/internal/FocusTrap/FocusTrap.d.ts +4 -2
  754. package/cjs/internal/FocusTrap/FocusTrap.js +17 -9
  755. package/cjs/internal/FocusTrap/FocusTrap.js.map +1 -1
  756. package/cjs/internal/FocusTrap/index.js +1 -1
  757. package/cjs/internal/FocusTrap/index.js.map +1 -1
  758. package/cjs/internal/HideBodyVerticalScroll/HideBodyVerticalScroll.d.ts +1 -3
  759. package/cjs/internal/HideBodyVerticalScroll/HideBodyVerticalScroll.js +34 -74
  760. package/cjs/internal/HideBodyVerticalScroll/HideBodyVerticalScroll.js.map +1 -1
  761. package/cjs/internal/HideBodyVerticalScroll/index.js +1 -1
  762. package/cjs/internal/HideBodyVerticalScroll/index.js.map +1 -1
  763. package/cjs/internal/IgnoreLayerClick/IgnoreLayerClick.d.ts +1 -1
  764. package/cjs/internal/IgnoreLayerClick/IgnoreLayerClick.js +13 -5
  765. package/cjs/internal/IgnoreLayerClick/IgnoreLayerClick.js.map +1 -1
  766. package/cjs/internal/IgnoreLayerClick/index.js +1 -1
  767. package/cjs/internal/IgnoreLayerClick/index.js.map +1 -1
  768. package/cjs/internal/InputLikeText/HiddenInput.js +10 -10
  769. package/cjs/internal/InputLikeText/HiddenInput.js.map +1 -1
  770. package/cjs/internal/InputLikeText/InputLikeText.d.ts +15 -5
  771. package/cjs/internal/InputLikeText/InputLikeText.js +167 -79
  772. package/cjs/internal/InputLikeText/InputLikeText.js.map +1 -1
  773. package/cjs/internal/InputLikeText/InputLikeText.styles.d.ts +3 -3
  774. package/cjs/internal/InputLikeText/InputLikeText.styles.js +10 -12
  775. package/cjs/internal/InputLikeText/InputLikeText.styles.js.map +1 -1
  776. package/cjs/internal/InputLikeText/index.js +1 -1
  777. package/cjs/internal/InputLikeText/index.js.map +1 -1
  778. package/cjs/internal/InternalMenu/InternalMenu.d.ts +15 -13
  779. package/cjs/internal/InternalMenu/InternalMenu.js +83 -47
  780. package/cjs/internal/InternalMenu/InternalMenu.js.map +1 -1
  781. package/cjs/internal/InternalMenu/InternalMenu.styles.d.ts +9 -7
  782. package/cjs/internal/InternalMenu/InternalMenu.styles.js +22 -28
  783. package/cjs/internal/InternalMenu/InternalMenu.styles.js.map +1 -1
  784. package/cjs/internal/InternalMenu/addIconPaddingIfPartOfMenu.d.ts +2 -0
  785. package/cjs/internal/InternalMenu/addIconPaddingIfPartOfMenu.js +16 -0
  786. package/cjs/internal/InternalMenu/addIconPaddingIfPartOfMenu.js.map +1 -0
  787. package/cjs/internal/InternalMenu/index.js +1 -1
  788. package/cjs/internal/InternalMenu/index.js.map +1 -1
  789. package/cjs/internal/InternalMenu/isActiveElement.js.map +1 -1
  790. package/cjs/internal/MaskCharLowLine/MaskCharLowLine.d.ts +9 -0
  791. package/cjs/internal/MaskCharLowLine/MaskCharLowLine.js +14 -0
  792. package/cjs/internal/MaskCharLowLine/MaskCharLowLine.js.map +1 -0
  793. package/cjs/internal/MaskCharLowLine/MaskCharLowLine.styles.d.ts +3 -0
  794. package/cjs/internal/MaskCharLowLine/MaskCharLowLine.styles.js +18 -0
  795. package/cjs/internal/MaskCharLowLine/MaskCharLowLine.styles.js.map +1 -0
  796. package/cjs/internal/MaskCharLowLine/index.d.ts +1 -0
  797. package/cjs/internal/MaskCharLowLine/index.js +1 -0
  798. package/cjs/internal/MaskCharLowLine/index.js.map +1 -0
  799. package/cjs/internal/MaskedInput/MaskedInput.d.ts +9 -2
  800. package/cjs/internal/MaskedInput/MaskedInput.js +55 -12
  801. package/cjs/internal/MaskedInput/MaskedInput.js.map +1 -1
  802. package/cjs/internal/MaskedInput/MaskedInput.styles.d.ts +4 -2
  803. package/cjs/internal/MaskedInput/MaskedInput.styles.js +8 -21
  804. package/cjs/internal/MaskedInput/MaskedInput.styles.js.map +1 -1
  805. package/cjs/internal/MaskedInput/index.js +1 -1
  806. package/cjs/internal/MaskedInput/index.js.map +1 -1
  807. package/cjs/internal/Menu/Menu.d.ts +15 -6
  808. package/cjs/internal/Menu/Menu.js +103 -38
  809. package/cjs/internal/Menu/Menu.js.map +1 -1
  810. package/cjs/internal/Menu/Menu.styles.d.ts +10 -3
  811. package/cjs/internal/Menu/Menu.styles.js +48 -9
  812. package/cjs/internal/Menu/Menu.styles.js.map +1 -1
  813. package/cjs/internal/Menu/index.js +1 -1
  814. package/cjs/internal/Menu/index.js.map +1 -1
  815. package/cjs/internal/Menu/isActiveElement.js.map +1 -1
  816. package/cjs/internal/MenuMessage/MenuMessage.d.ts +10 -0
  817. package/cjs/internal/MenuMessage/MenuMessage.js +43 -0
  818. package/cjs/internal/MenuMessage/MenuMessage.js.map +1 -0
  819. package/cjs/internal/MenuMessage/MenuMessage.styles.d.ts +5 -0
  820. package/cjs/internal/MenuMessage/MenuMessage.styles.js +33 -0
  821. package/cjs/internal/MenuMessage/MenuMessage.styles.js.map +1 -0
  822. package/cjs/internal/MenuMessage/index.d.ts +1 -0
  823. package/cjs/internal/MenuMessage/index.js +1 -0
  824. package/cjs/internal/MenuMessage/index.js.map +1 -0
  825. package/cjs/internal/MobilePopup/MobilePopup.d.ts +39 -0
  826. package/cjs/internal/MobilePopup/MobilePopup.js +94 -0
  827. package/cjs/internal/MobilePopup/MobilePopup.js.map +1 -0
  828. package/cjs/internal/MobilePopup/MobilePopup.styles.d.ts +10 -0
  829. package/cjs/internal/MobilePopup/MobilePopup.styles.js +73 -0
  830. package/cjs/internal/MobilePopup/MobilePopup.styles.js.map +1 -0
  831. package/cjs/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.d.ts +14 -0
  832. package/cjs/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.js +58 -0
  833. package/cjs/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.js.map +1 -0
  834. package/cjs/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.styles.d.ts +8 -0
  835. package/cjs/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.styles.js +41 -0
  836. package/cjs/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.styles.js.map +1 -0
  837. package/cjs/internal/MobilePopup/MobilePopupHeader/index.d.ts +1 -0
  838. package/cjs/internal/MobilePopup/MobilePopupHeader/index.js +1 -0
  839. package/cjs/internal/MobilePopup/MobilePopupHeader/index.js.map +1 -0
  840. package/cjs/internal/MobilePopup/index.d.ts +1 -0
  841. package/cjs/internal/MobilePopup/index.js +1 -0
  842. package/cjs/internal/MobilePopup/index.js.map +1 -0
  843. package/cjs/internal/NativeDateInput/NativeDateInput.d.ts +23 -0
  844. package/cjs/internal/NativeDateInput/NativeDateInput.js +65 -0
  845. package/cjs/internal/NativeDateInput/NativeDateInput.js.map +1 -0
  846. package/cjs/internal/NativeDateInput/NativeDateInput.styles.d.ts +3 -0
  847. package/cjs/internal/NativeDateInput/NativeDateInput.styles.js +19 -0
  848. package/cjs/internal/NativeDateInput/NativeDateInput.styles.js.map +1 -0
  849. package/cjs/internal/NativeDateInput/index.d.ts +1 -0
  850. package/cjs/internal/NativeDateInput/index.js +1 -0
  851. package/cjs/internal/NativeDateInput/index.js.map +1 -0
  852. package/cjs/internal/NativeDateInput/utils.d.ts +7 -0
  853. package/cjs/internal/NativeDateInput/utils.js +49 -0
  854. package/cjs/internal/NativeDateInput/utils.js.map +1 -0
  855. package/cjs/internal/PerformanceMetrics/PerformanceMetrics.js +10 -10
  856. package/cjs/internal/PerformanceMetrics/PerformanceMetrics.js.map +1 -1
  857. package/cjs/internal/Popup/Popup.d.ts +56 -30
  858. package/cjs/internal/Popup/Popup.js +241 -89
  859. package/cjs/internal/Popup/Popup.js.map +1 -1
  860. package/cjs/internal/Popup/Popup.styles.d.ts +7 -6
  861. package/cjs/internal/Popup/Popup.styles.js +19 -19
  862. package/cjs/internal/Popup/Popup.styles.js.map +1 -1
  863. package/cjs/internal/Popup/PopupHelper.d.ts +3 -3
  864. package/cjs/internal/Popup/PopupHelper.js +5 -2
  865. package/cjs/internal/Popup/PopupHelper.js.map +1 -1
  866. package/cjs/internal/Popup/PopupPin.d.ts +1 -1
  867. package/cjs/internal/Popup/PopupPin.js +21 -20
  868. package/cjs/internal/Popup/PopupPin.js.map +1 -1
  869. package/cjs/internal/Popup/PopupPin.styles.d.ts +1 -1
  870. package/cjs/internal/Popup/PopupPin.styles.js +4 -7
  871. package/cjs/internal/Popup/PopupPin.styles.js.map +1 -1
  872. package/cjs/internal/Popup/index.js +1 -1
  873. package/cjs/internal/Popup/index.js.map +1 -1
  874. package/cjs/internal/Popup/types.d.ts +2 -0
  875. package/cjs/internal/Popup/types.js +1 -0
  876. package/cjs/internal/PopupMenu/PopupMenu.d.ts +24 -15
  877. package/cjs/internal/PopupMenu/PopupMenu.js +63 -12
  878. package/cjs/internal/PopupMenu/PopupMenu.js.map +1 -1
  879. package/cjs/internal/PopupMenu/PopupMenu.styles.d.ts +1 -1
  880. package/cjs/internal/PopupMenu/PopupMenu.styles.js +6 -7
  881. package/cjs/internal/PopupMenu/PopupMenu.styles.js.map +1 -1
  882. package/cjs/internal/PopupMenu/index.js +1 -1
  883. package/cjs/internal/PopupMenu/index.js.map +1 -1
  884. package/cjs/internal/PopupMenu/validatePositions.d.ts +2 -2
  885. package/cjs/internal/PopupMenu/validatePositions.js +8 -10
  886. package/cjs/internal/PopupMenu/validatePositions.js.map +1 -1
  887. package/cjs/internal/RenderContainer/RenderContainer.d.ts +1 -1
  888. package/cjs/internal/RenderContainer/RenderContainer.js +17 -9
  889. package/cjs/internal/RenderContainer/RenderContainer.js.map +1 -1
  890. package/cjs/internal/RenderContainer/RenderContainerTypes.d.ts +6 -1
  891. package/cjs/internal/RenderContainer/RenderContainerTypes.js +1 -1
  892. package/cjs/internal/RenderContainer/RenderInnerContainer.d.ts +10 -2
  893. package/cjs/internal/RenderContainer/RenderInnerContainer.js +49 -15
  894. package/cjs/internal/RenderContainer/RenderInnerContainer.js.map +1 -1
  895. package/cjs/internal/RenderContainer/index.js +1 -1
  896. package/cjs/internal/RenderContainer/index.js.map +1 -1
  897. package/cjs/internal/RenderLayer/RenderLayer.d.ts +11 -6
  898. package/cjs/internal/RenderLayer/RenderLayer.js +32 -7
  899. package/cjs/internal/RenderLayer/RenderLayer.js.map +1 -1
  900. package/cjs/internal/RenderLayer/index.js +1 -1
  901. package/cjs/internal/RenderLayer/index.js.map +1 -1
  902. package/cjs/internal/ResizeDetector/ResizeDetector.d.ts +1 -0
  903. package/cjs/internal/ResizeDetector/ResizeDetector.js +6 -1
  904. package/cjs/internal/ResizeDetector/ResizeDetector.js.map +1 -1
  905. package/cjs/internal/ResizeDetector/ResizeDetector.styles.d.ts +2 -1
  906. package/cjs/internal/ResizeDetector/ResizeDetector.styles.js +12 -7
  907. package/cjs/internal/ResizeDetector/ResizeDetector.styles.js.map +1 -1
  908. package/cjs/internal/ResizeDetector/index.js +1 -1
  909. package/cjs/internal/ResizeDetector/index.js.map +1 -1
  910. package/cjs/internal/TextWidthHelper/TextWidthHelper.d.ts +15 -0
  911. package/cjs/internal/TextWidthHelper/TextWidthHelper.js +36 -0
  912. package/cjs/internal/TextWidthHelper/TextWidthHelper.js.map +1 -0
  913. package/cjs/internal/TextWidthHelper/TextWidthHelper.styles.d.ts +4 -0
  914. package/cjs/internal/TextWidthHelper/TextWidthHelper.styles.js +23 -0
  915. package/cjs/internal/TextWidthHelper/TextWidthHelper.styles.js.map +1 -0
  916. package/cjs/internal/ThemePlayground/AnotherInputsPlayground.d.ts +11 -6
  917. package/cjs/internal/ThemePlayground/AnotherInputsPlayground.js +8 -1
  918. package/cjs/internal/ThemePlayground/AnotherInputsPlayground.js.map +1 -1
  919. package/cjs/internal/ThemePlayground/CheckboxPlayground.d.ts +1 -4
  920. package/cjs/internal/ThemePlayground/CheckboxPlayground.js +10 -6
  921. package/cjs/internal/ThemePlayground/CheckboxPlayground.js.map +1 -1
  922. package/cjs/internal/ThemePlayground/ComponentsGroup.d.ts +1 -1
  923. package/cjs/internal/ThemePlayground/ComponentsGroup.js +8 -8
  924. package/cjs/internal/ThemePlayground/ComponentsGroup.js.map +1 -1
  925. package/cjs/internal/ThemePlayground/CurrencyInputPlayground.d.ts +7 -6
  926. package/cjs/internal/ThemePlayground/CurrencyInputPlayground.js +3 -4
  927. package/cjs/internal/ThemePlayground/CurrencyInputPlayground.js.map +1 -1
  928. package/cjs/internal/ThemePlayground/FxInputPlayground.d.ts +6 -4
  929. package/cjs/internal/ThemePlayground/FxInputPlayground.js +5 -5
  930. package/cjs/internal/ThemePlayground/FxInputPlayground.js.map +1 -1
  931. package/cjs/internal/ThemePlayground/HintPlayground.d.ts +1 -1
  932. package/cjs/internal/ThemePlayground/HintPlayground.js +1 -1
  933. package/cjs/internal/ThemePlayground/HintPlayground.js.map +1 -1
  934. package/cjs/internal/ThemePlayground/PagingPlayground.d.ts +6 -6
  935. package/cjs/internal/ThemePlayground/PagingPlayground.js +5 -2
  936. package/cjs/internal/ThemePlayground/PagingPlayground.js.map +1 -1
  937. package/cjs/internal/ThemePlayground/Playground.d.ts +4 -2
  938. package/cjs/internal/ThemePlayground/Playground.js +80 -62
  939. package/cjs/internal/ThemePlayground/Playground.js.map +1 -1
  940. package/cjs/internal/ThemePlayground/Playground.md +7 -7
  941. package/cjs/internal/ThemePlayground/Playground.styles.d.ts +13 -10
  942. package/cjs/internal/ThemePlayground/Playground.styles.js +42 -26
  943. package/cjs/internal/ThemePlayground/Playground.styles.js.map +1 -1
  944. package/cjs/internal/ThemePlayground/RadioPlayground.d.ts +1 -4
  945. package/cjs/internal/ThemePlayground/RadioPlayground.js +9 -6
  946. package/cjs/internal/ThemePlayground/RadioPlayground.js.map +1 -1
  947. package/cjs/internal/ThemePlayground/SelectPlayground.d.ts +9 -6
  948. package/cjs/internal/ThemePlayground/SelectPlayground.js +7 -1
  949. package/cjs/internal/ThemePlayground/SelectPlayground.js.map +1 -1
  950. package/cjs/internal/ThemePlayground/ShowcaseGroup.d.ts +0 -1
  951. package/cjs/internal/ThemePlayground/ShowcaseGroup.js +16 -8
  952. package/cjs/internal/ThemePlayground/ShowcaseGroup.js.map +1 -1
  953. package/cjs/internal/ThemePlayground/SizesGroup.d.ts +4 -0
  954. package/cjs/internal/ThemePlayground/SizesGroup.js +22 -0
  955. package/cjs/internal/ThemePlayground/SizesGroup.js.map +1 -0
  956. package/cjs/internal/ThemePlayground/SwitcherPlayground.d.ts +9 -8
  957. package/cjs/internal/ThemePlayground/SwitcherPlayground.js +7 -2
  958. package/cjs/internal/ThemePlayground/SwitcherPlayground.js.map +1 -1
  959. package/cjs/internal/ThemePlayground/ThemeContextPlayground.d.ts +8 -2
  960. package/cjs/internal/ThemePlayground/ThemeContextPlayground.js +54 -35
  961. package/cjs/internal/ThemePlayground/ThemeContextPlayground.js.map +1 -1
  962. package/cjs/internal/ThemePlayground/ThemeEditor.d.ts +1 -4
  963. package/cjs/internal/ThemePlayground/ThemeEditor.js +43 -23
  964. package/cjs/internal/ThemePlayground/ThemeEditor.js.map +1 -1
  965. package/cjs/internal/ThemePlayground/TogglePlayground.d.ts +2 -7
  966. package/cjs/internal/ThemePlayground/TogglePlayground.js +11 -17
  967. package/cjs/internal/ThemePlayground/TogglePlayground.js.map +1 -1
  968. package/cjs/internal/ThemePlayground/TokenInputPlayground.d.ts +6 -4
  969. package/cjs/internal/ThemePlayground/TokenInputPlayground.js +6 -5
  970. package/cjs/internal/ThemePlayground/TokenInputPlayground.js.map +1 -1
  971. package/cjs/internal/ThemePlayground/VariableValue.d.ts +8 -6
  972. package/cjs/internal/ThemePlayground/VariableValue.js +53 -28
  973. package/cjs/internal/ThemePlayground/VariableValue.js.map +1 -1
  974. package/cjs/internal/ThemePlayground/constants.d.ts +7 -2
  975. package/cjs/internal/ThemePlayground/constants.js +17 -3
  976. package/cjs/internal/ThemePlayground/constants.js.map +1 -1
  977. package/cjs/internal/ThemePlayground/darkTheme.d.ts +71 -311
  978. package/cjs/internal/ThemePlayground/darkTheme.js +109 -86
  979. package/cjs/internal/ThemePlayground/darkTheme.js.map +1 -1
  980. package/cjs/internal/ThemePlayground/helpers.d.ts +1 -1
  981. package/cjs/internal/ThemePlayground/helpers.js +5 -3
  982. package/cjs/internal/ThemePlayground/helpers.js.map +1 -1
  983. package/cjs/internal/ThemeShowcase/ThemeShowcase.d.ts +1 -1
  984. package/cjs/internal/ThemeShowcase/ThemeShowcase.js +123 -94
  985. package/cjs/internal/ThemeShowcase/ThemeShowcase.js.map +1 -1
  986. package/cjs/internal/ThemeShowcase/ThemeShowcase.md +13 -13
  987. package/cjs/internal/ThemeShowcase/ThemeShowcase.styles.d.ts +10 -3
  988. package/cjs/internal/ThemeShowcase/ThemeShowcase.styles.js +55 -30
  989. package/cjs/internal/ThemeShowcase/ThemeShowcase.styles.js.map +1 -1
  990. package/cjs/internal/ThemeShowcase/VariablesCollector.d.ts +1 -1
  991. package/cjs/internal/ThemeShowcase/VariablesCollector.js +69 -60
  992. package/cjs/internal/ThemeShowcase/VariablesCollector.js.map +1 -1
  993. package/cjs/internal/ZIndex/ZIndex.d.ts +24 -12
  994. package/cjs/internal/ZIndex/ZIndex.js +100 -44
  995. package/cjs/internal/ZIndex/ZIndex.js.map +1 -1
  996. package/cjs/internal/ZIndex/ZIndexStorage.d.ts +6 -6
  997. package/cjs/internal/ZIndex/ZIndexStorage.js +24 -15
  998. package/cjs/internal/ZIndex/ZIndexStorage.js.map +1 -1
  999. package/cjs/internal/ZIndex/index.js +1 -1
  1000. package/cjs/internal/ZIndex/index.js.map +1 -1
  1001. package/cjs/internal/icons/16px/icon.styles.d.ts +1 -1
  1002. package/cjs/internal/icons/16px/icon.styles.js +5 -8
  1003. package/cjs/internal/icons/16px/icon.styles.js.map +1 -1
  1004. package/cjs/internal/icons/16px/index.d.ts +20 -14
  1005. package/cjs/internal/icons/16px/index.js +193 -62
  1006. package/cjs/internal/icons/16px/index.js.map +1 -1
  1007. package/cjs/internal/icons/20px/Icon.d.ts +11 -14
  1008. package/cjs/internal/icons/20px/Icon.js +15 -24
  1009. package/cjs/internal/icons/20px/Icon.js.map +1 -1
  1010. package/cjs/internal/icons/20px/icon.styles.d.ts +2 -1
  1011. package/cjs/internal/icons/20px/icon.styles.js +8 -18
  1012. package/cjs/internal/icons/20px/icon.styles.js.map +1 -1
  1013. package/cjs/internal/icons/20px/index.d.ts +1 -0
  1014. package/cjs/internal/icons/20px/index.js +2 -1
  1015. package/cjs/internal/icons/20px/index.js.map +1 -1
  1016. package/cjs/internal/icons/20px/svg.d.ts +14 -0
  1017. package/cjs/internal/icons/20px/svg.js +128 -0
  1018. package/cjs/internal/icons/20px/svg.js.map +1 -0
  1019. package/cjs/internal/icons/CloudIcon.d.ts +0 -1
  1020. package/cjs/internal/icons/CloudIcon.js +2 -2
  1021. package/cjs/internal/icons/CloudIcon.js.map +1 -1
  1022. package/cjs/internal/icons/CrossIcon.d.ts +0 -1
  1023. package/cjs/internal/icons/CrossIcon.js +10 -2
  1024. package/cjs/internal/icons/CrossIcon.js.map +1 -1
  1025. package/cjs/internal/icons/SpinnerIcon.d.ts +6 -2
  1026. package/cjs/internal/icons/SpinnerIcon.js +72 -8
  1027. package/cjs/internal/icons/SpinnerIcon.js.map +1 -1
  1028. package/cjs/internal/icons/SpinnerIcon.styles.d.ts +3 -1
  1029. package/cjs/internal/icons/SpinnerIcon.styles.js +19 -6
  1030. package/cjs/internal/icons/SpinnerIcon.styles.js.map +1 -1
  1031. package/cjs/internal/themes/DarkTheme.d.ts +138 -0
  1032. package/cjs/internal/themes/DarkTheme.js +236 -0
  1033. package/cjs/internal/themes/DarkTheme.js.map +1 -0
  1034. package/cjs/internal/themes/DefaultTheme.d.ts +722 -202
  1035. package/cjs/internal/themes/DefaultTheme.js +1428 -225
  1036. package/cjs/internal/themes/DefaultTheme.js.map +1 -1
  1037. package/cjs/internal/themes/NotFlat.d.ts +133 -0
  1038. package/cjs/internal/themes/NotFlat.js +229 -0
  1039. package/cjs/internal/themes/NotFlat.js.map +1 -0
  1040. package/cjs/internal/themes/OldColors.d.ts +116 -0
  1041. package/cjs/internal/themes/OldColors.js +167 -0
  1042. package/cjs/internal/themes/OldColors.js.map +1 -0
  1043. package/cjs/internal/themes/Theme2022.d.ts +67 -0
  1044. package/cjs/internal/themes/Theme2022.js +101 -0
  1045. package/cjs/internal/themes/Theme2022.js.map +1 -0
  1046. package/cjs/internal/themes/Theme2022Dark.d.ts +5 -0
  1047. package/cjs/internal/themes/Theme2022Dark.js +9 -0
  1048. package/cjs/internal/themes/Theme2022Dark.js.map +1 -0
  1049. package/cjs/lib/ConditionalHandler.d.ts +3 -2
  1050. package/cjs/lib/ConditionalHandler.js +8 -6
  1051. package/cjs/lib/ConditionalHandler.js.map +1 -1
  1052. package/cjs/lib/InstanceWithAnchorElement.d.ts +5 -0
  1053. package/cjs/lib/InstanceWithAnchorElement.js +9 -0
  1054. package/cjs/lib/InstanceWithAnchorElement.js.map +1 -0
  1055. package/cjs/lib/LayoutEvents.js +4 -4
  1056. package/cjs/lib/LayoutEvents.js.map +1 -1
  1057. package/cjs/lib/ModalStack.d.ts +6 -1
  1058. package/cjs/lib/ModalStack.js +65 -6
  1059. package/cjs/lib/ModalStack.js.map +1 -1
  1060. package/cjs/lib/SSRSafe.d.ts +5 -0
  1061. package/cjs/lib/SSRSafe.js +44 -4
  1062. package/cjs/lib/SSRSafe.js.map +1 -1
  1063. package/cjs/lib/Supports.js.map +1 -1
  1064. package/cjs/lib/Upgrades.d.ts +2 -0
  1065. package/cjs/lib/Upgrades.js +19 -0
  1066. package/cjs/lib/Upgrades.js.map +1 -1
  1067. package/cjs/lib/animation/index.d.ts +1 -1
  1068. package/cjs/lib/animation/index.js +7 -6
  1069. package/cjs/lib/animation/index.js.map +1 -1
  1070. package/cjs/lib/animation/presets.js.map +1 -1
  1071. package/cjs/lib/animation/stepper.js +2 -2
  1072. package/cjs/lib/animation/stepper.js.map +1 -1
  1073. package/cjs/lib/callChildRef/callChildRef.d.ts +3 -0
  1074. package/cjs/lib/callChildRef/callChildRef.js +19 -0
  1075. package/cjs/lib/callChildRef/callChildRef.js.map +1 -0
  1076. package/cjs/lib/client.d.ts +16 -0
  1077. package/cjs/lib/client.js +23 -0
  1078. package/cjs/lib/client.js.map +1 -0
  1079. package/cjs/lib/createPropsGetter.d.ts +2 -1
  1080. package/cjs/lib/createPropsGetter.js +3 -0
  1081. package/cjs/lib/createPropsGetter.js.map +1 -1
  1082. package/cjs/lib/currentEnvironment.js +33 -3
  1083. package/cjs/lib/currentEnvironment.js.map +1 -1
  1084. package/cjs/lib/date/InternalDate.js +37 -25
  1085. package/cjs/lib/date/InternalDate.js.map +1 -1
  1086. package/cjs/lib/date/InternalDateCalculator.d.ts +1 -1
  1087. package/cjs/lib/date/InternalDateCalculator.js +17 -3
  1088. package/cjs/lib/date/InternalDateCalculator.js.map +1 -1
  1089. package/cjs/lib/date/InternalDateGetter.d.ts +1 -1
  1090. package/cjs/lib/date/InternalDateGetter.js +29 -9
  1091. package/cjs/lib/date/InternalDateGetter.js.map +1 -1
  1092. package/cjs/lib/date/InternalDateSetter.js.map +1 -1
  1093. package/cjs/lib/date/InternalDateTransformer.d.ts +6 -6
  1094. package/cjs/lib/date/InternalDateTransformer.js +15 -6
  1095. package/cjs/lib/date/InternalDateTransformer.js.map +1 -1
  1096. package/cjs/lib/date/InternalDateValidator.d.ts +1 -1
  1097. package/cjs/lib/date/InternalDateValidator.js +64 -19
  1098. package/cjs/lib/date/InternalDateValidator.js.map +1 -1
  1099. package/cjs/lib/date/constants.js +1 -1
  1100. package/cjs/lib/date/constants.js.map +1 -1
  1101. package/cjs/lib/date/localeSets.js.map +1 -1
  1102. package/cjs/lib/date/types.d.ts +4 -0
  1103. package/cjs/lib/date/types.js +1 -1
  1104. package/cjs/lib/date/types.js.map +1 -1
  1105. package/cjs/lib/dom/getDOMRect.d.ts +11 -0
  1106. package/cjs/lib/dom/getDOMRect.js +36 -0
  1107. package/cjs/lib/dom/getDOMRect.js.map +1 -0
  1108. package/cjs/lib/dom/getScrollWidth.js +6 -5
  1109. package/cjs/lib/dom/getScrollWidth.js.map +1 -1
  1110. package/cjs/lib/dom/tabbableHelpers.d.ts +16 -0
  1111. package/cjs/lib/dom/tabbableHelpers.js +31 -0
  1112. package/cjs/lib/dom/tabbableHelpers.js.map +1 -0
  1113. package/cjs/lib/events/MouseDrag.js +40 -32
  1114. package/cjs/lib/events/MouseDrag.js.map +1 -1
  1115. package/cjs/lib/events/fixClickFocusIE.js +4 -4
  1116. package/cjs/lib/events/fixClickFocusIE.js.map +1 -1
  1117. package/cjs/lib/events/fixFirefoxModifiedClickOnLabel.d.ts +2 -0
  1118. package/cjs/lib/events/fixFirefoxModifiedClickOnLabel.js +20 -0
  1119. package/cjs/lib/events/fixFirefoxModifiedClickOnLabel.js.map +1 -0
  1120. package/cjs/lib/events/keyListener.d.ts +7 -0
  1121. package/cjs/lib/events/keyListener.js +22 -0
  1122. package/cjs/lib/events/keyListener.js.map +1 -0
  1123. package/cjs/lib/events/keyboard/KeyboardEventCodes.js.map +1 -1
  1124. package/cjs/lib/events/keyboard/KeyboardMapKeys.d.ts +2 -2
  1125. package/cjs/lib/events/keyboard/KeyboardMapKeys.js +8 -4
  1126. package/cjs/lib/events/keyboard/KeyboardMapKeys.js.map +1 -1
  1127. package/cjs/lib/events/keyboard/extractCode.js +7 -5
  1128. package/cjs/lib/events/keyboard/extractCode.js.map +1 -1
  1129. package/cjs/lib/events/keyboard/identifiers.d.ts +1 -0
  1130. package/cjs/lib/events/keyboard/identifiers.js +20 -10
  1131. package/cjs/lib/events/keyboard/identifiers.js.map +1 -1
  1132. package/cjs/lib/events/stopPropagation.js.map +1 -1
  1133. package/cjs/lib/events/tabListener.d.ts +1 -6
  1134. package/cjs/lib/events/tabListener.js +2 -11
  1135. package/cjs/lib/events/tabListener.js.map +1 -1
  1136. package/cjs/lib/extractKeyboardAction.d.ts +1 -1
  1137. package/cjs/lib/extractKeyboardAction.js +1 -1
  1138. package/cjs/lib/extractKeyboardAction.js.map +1 -1
  1139. package/cjs/lib/filterProps.js +0 -1
  1140. package/cjs/lib/filterProps.js.map +1 -1
  1141. package/cjs/lib/forwardRefAndName.d.ts +5 -0
  1142. package/cjs/lib/forwardRefAndName.js +23 -0
  1143. package/cjs/lib/forwardRefAndName.js.map +1 -0
  1144. package/cjs/lib/getDisplayName.d.ts +3 -0
  1145. package/cjs/lib/getDisplayName.js +9 -0
  1146. package/cjs/lib/getDisplayName.js.map +1 -0
  1147. package/cjs/lib/listenFocusOutside.d.ts +5 -1
  1148. package/cjs/lib/listenFocusOutside.js +18 -18
  1149. package/cjs/lib/listenFocusOutside.js.map +1 -1
  1150. package/cjs/lib/locale/LOCALECONTEXT.md +222 -246
  1151. package/cjs/lib/locale/LocaleContext.js +5 -2
  1152. package/cjs/lib/locale/LocaleContext.js.map +1 -1
  1153. package/cjs/lib/locale/LocaleHelper.js +1 -1
  1154. package/cjs/lib/locale/LocaleHelper.js.map +1 -1
  1155. package/cjs/lib/locale/constants.js.map +1 -1
  1156. package/cjs/lib/locale/decorators.d.ts +4 -3
  1157. package/cjs/lib/locale/decorators.js +13 -8
  1158. package/cjs/lib/locale/decorators.js.map +1 -1
  1159. package/cjs/lib/locale/index.js +2 -2
  1160. package/cjs/lib/locale/index.js.map +1 -1
  1161. package/cjs/lib/locale/types.d.ts +3 -6
  1162. package/cjs/lib/locale/types.js +0 -3
  1163. package/cjs/lib/locale/types.js.map +1 -1
  1164. package/cjs/lib/locale/useLocaleForControl.d.ts +3 -0
  1165. package/cjs/lib/locale/useLocaleForControl.js +14 -0
  1166. package/cjs/lib/locale/useLocaleForControl.js.map +1 -0
  1167. package/cjs/lib/memo.d.ts +3 -1
  1168. package/cjs/lib/memo.js +3 -3
  1169. package/cjs/lib/memo.js.map +1 -1
  1170. package/cjs/lib/needsPolyfillPlaceholder.d.ts +6 -0
  1171. package/cjs/lib/needsPolyfillPlaceholder.js +19 -0
  1172. package/cjs/lib/needsPolyfillPlaceholder.js.map +1 -0
  1173. package/cjs/lib/net/fetch.js +2 -2
  1174. package/cjs/lib/net/fetch.js.map +1 -1
  1175. package/cjs/lib/reactGetTextContent.js +1 -2
  1176. package/cjs/lib/reactGetTextContent.js.map +1 -1
  1177. package/cjs/lib/rootNode/getRootNode.d.ts +12 -0
  1178. package/cjs/lib/rootNode/getRootNode.js +84 -0
  1179. package/cjs/lib/rootNode/getRootNode.js.map +1 -0
  1180. package/cjs/lib/rootNode/index.d.ts +2 -0
  1181. package/cjs/lib/rootNode/index.js +2 -0
  1182. package/cjs/lib/rootNode/index.js.map +1 -0
  1183. package/cjs/lib/rootNode/rootNodeDecorator.d.ts +52 -0
  1184. package/cjs/lib/rootNode/rootNodeDecorator.js +68 -0
  1185. package/cjs/lib/rootNode/rootNodeDecorator.js.map +1 -0
  1186. package/cjs/lib/stringUtils.d.ts +1 -0
  1187. package/cjs/lib/stringUtils.js +15 -0
  1188. package/cjs/lib/stringUtils.js.map +1 -0
  1189. package/cjs/lib/styles/ColorFactory.js +22 -18
  1190. package/cjs/lib/styles/ColorFactory.js.map +1 -1
  1191. package/cjs/lib/styles/ColorFunctions.js +3 -3
  1192. package/cjs/lib/styles/ColorFunctions.js.map +1 -1
  1193. package/cjs/lib/styles/ColorHelpers.d.ts +1 -0
  1194. package/cjs/lib/styles/ColorHelpers.js +33 -10
  1195. package/cjs/lib/styles/ColorHelpers.js.map +1 -1
  1196. package/cjs/lib/styles/ColorKeywords.js.map +1 -1
  1197. package/cjs/lib/styles/ColorObject.d.ts +1 -0
  1198. package/cjs/lib/styles/ColorObject.js +9 -3
  1199. package/cjs/lib/styles/ColorObject.js.map +1 -1
  1200. package/cjs/lib/styles/DimensionFunctions.js.map +1 -1
  1201. package/cjs/lib/styles/HoldSelectionColor.d.ts +1 -0
  1202. package/cjs/lib/styles/HoldSelectionColor.js +9 -0
  1203. package/cjs/lib/styles/HoldSelectionColor.js.map +1 -0
  1204. package/cjs/lib/styles/Mixins.js +3 -3
  1205. package/cjs/lib/styles/Mixins.js.map +1 -1
  1206. package/cjs/lib/styles/getLabGrotesqueBaselineCompensation.d.ts +1 -0
  1207. package/cjs/lib/styles/getLabGrotesqueBaselineCompensation.js +9 -0
  1208. package/cjs/lib/styles/getLabGrotesqueBaselineCompensation.js.map +1 -0
  1209. package/cjs/lib/taskWithDelayAndMinimalDuration.d.ts +21 -0
  1210. package/cjs/lib/taskWithDelayAndMinimalDuration.js +82 -0
  1211. package/cjs/lib/taskWithDelayAndMinimalDuration.js.map +1 -0
  1212. package/cjs/lib/theming/AnimationKeyframes.d.ts +5 -6
  1213. package/cjs/lib/theming/AnimationKeyframes.js +8 -22
  1214. package/cjs/lib/theming/AnimationKeyframes.js.map +1 -1
  1215. package/cjs/lib/theming/Emotion.d.ts +11 -10
  1216. package/cjs/lib/theming/Emotion.js +20 -20
  1217. package/cjs/lib/theming/Emotion.js.map +1 -1
  1218. package/cjs/lib/theming/Theme.d.ts +1 -2
  1219. package/cjs/lib/theming/Theme.js +1 -1
  1220. package/cjs/lib/theming/ThemeContext.d.ts +1 -1
  1221. package/cjs/lib/theming/ThemeContext.js +3 -1
  1222. package/cjs/lib/theming/ThemeContext.js.map +1 -1
  1223. package/cjs/lib/theming/ThemeContext.md +285 -237
  1224. package/cjs/lib/theming/ThemeFactory.d.ts +3 -3
  1225. package/cjs/lib/theming/ThemeFactory.js +30 -19
  1226. package/cjs/lib/theming/ThemeFactory.js.map +1 -1
  1227. package/cjs/lib/theming/ThemeHelpers.d.ts +15 -0
  1228. package/cjs/lib/theming/ThemeHelpers.js +64 -0
  1229. package/cjs/lib/theming/ThemeHelpers.js.map +1 -0
  1230. package/cjs/lib/theming/themes/DarkTheme.d.ts +1 -0
  1231. package/cjs/lib/theming/themes/DarkTheme.js +5 -0
  1232. package/cjs/lib/theming/themes/DarkTheme.js.map +1 -0
  1233. package/cjs/lib/theming/themes/DefaultTheme.d.ts +1 -1
  1234. package/cjs/lib/theming/themes/DefaultTheme.js +3 -2
  1235. package/cjs/lib/theming/themes/DefaultTheme.js.map +1 -1
  1236. package/cjs/lib/theming/themes/DefaultTheme8pxOld.d.ts +1 -0
  1237. package/cjs/lib/theming/themes/DefaultTheme8pxOld.js +8 -0
  1238. package/cjs/lib/theming/themes/DefaultTheme8pxOld.js.map +1 -0
  1239. package/cjs/lib/theming/themes/DefaultThemeMobile.d.ts +3 -0
  1240. package/cjs/lib/theming/themes/DefaultThemeMobile.js +9 -0
  1241. package/cjs/lib/theming/themes/DefaultThemeMobile.js.map +1 -0
  1242. package/cjs/lib/theming/themes/FlatTheme8pxOld.d.ts +1 -0
  1243. package/cjs/lib/theming/themes/FlatTheme8pxOld.js +5 -0
  1244. package/cjs/lib/theming/themes/FlatTheme8pxOld.js.map +1 -0
  1245. package/cjs/lib/theming/themes/Theme2022.d.ts +1 -0
  1246. package/cjs/lib/theming/themes/Theme2022.js +6 -0
  1247. package/cjs/lib/theming/themes/Theme2022.js.map +1 -0
  1248. package/cjs/lib/theming/themes/Theme2022Dark.d.ts +1 -0
  1249. package/cjs/lib/theming/themes/Theme2022Dark.js +10 -0
  1250. package/cjs/lib/theming/themes/Theme2022Dark.js.map +1 -0
  1251. package/cjs/lib/theming/useTheme.d.ts +1 -0
  1252. package/cjs/lib/theming/useTheme.js +7 -0
  1253. package/cjs/lib/theming/useTheme.js.map +1 -0
  1254. package/cjs/lib/uidUtils.d.ts +1 -0
  1255. package/cjs/lib/uidUtils.js +5 -0
  1256. package/cjs/lib/uidUtils.js.map +1 -0
  1257. package/cjs/lib/utils.d.ts +67 -12
  1258. package/cjs/lib/utils.js +156 -31
  1259. package/cjs/lib/utils.js.map +1 -1
  1260. package/cjs/lib/withClassWrapper.d.ts +71 -0
  1261. package/cjs/lib/withClassWrapper.js +56 -0
  1262. package/cjs/lib/withClassWrapper.js.map +1 -0
  1263. package/cjs/typings/console.d.ts +3 -3
  1264. package/cjs/typings/event-types.d.ts +4 -4
  1265. package/cjs/typings/fonts.d.ts +12 -12
  1266. package/cjs/typings/global.d.ts +6 -6
  1267. package/cjs/typings/html.d.ts +123 -0
  1268. package/cjs/typings/images.d.ts +1 -1
  1269. package/cjs/typings/normalize-wheel.d.ts +5 -5
  1270. package/cjs/typings/stories.d.ts +7 -0
  1271. package/cjs/typings/stylis-plugin-extra-scope.d.ts +3 -3
  1272. package/cjs/typings/utility-types.d.ts +14 -14
  1273. package/components/Autocomplete/Autocomplete/Autocomplete.js +225 -95
  1274. package/components/Autocomplete/Autocomplete/Autocomplete.js.map +1 -1
  1275. package/components/Autocomplete/Autocomplete.d.ts +37 -20
  1276. package/components/Autocomplete/Autocomplete.md +21 -7
  1277. package/components/Autocomplete/Autocomplete.styles/Autocomplete.styles.js +10 -0
  1278. package/components/Autocomplete/Autocomplete.styles/Autocomplete.styles.js.map +1 -0
  1279. package/components/Autocomplete/Autocomplete.styles/package.json +6 -0
  1280. package/components/Autocomplete/Autocomplete.styles.d.ts +4 -0
  1281. package/components/Autocomplete/index/index.js.map +1 -1
  1282. package/components/Autocomplete/locale/index/index.js +8 -0
  1283. package/components/Autocomplete/locale/index/index.js.map +1 -0
  1284. package/components/Autocomplete/locale/index/package.json +6 -0
  1285. package/components/Autocomplete/locale/index.d.ts +4 -0
  1286. package/components/Autocomplete/locale/locales/en/en.js +5 -0
  1287. package/components/Autocomplete/locale/locales/en/en.js.map +1 -0
  1288. package/components/Autocomplete/locale/locales/en/package.json +6 -0
  1289. package/components/Autocomplete/locale/locales/en.d.ts +2 -0
  1290. package/components/Autocomplete/locale/locales/ru/package.json +6 -0
  1291. package/components/Autocomplete/locale/locales/ru/ru.js +5 -0
  1292. package/components/Autocomplete/locale/locales/ru/ru.js.map +1 -0
  1293. package/components/Autocomplete/locale/locales/ru.d.ts +2 -0
  1294. package/components/Autocomplete/locale/package.json +6 -0
  1295. package/components/Autocomplete/locale/types/package.json +6 -0
  1296. package/components/Autocomplete/locale/types/types.js +1 -0
  1297. package/components/Autocomplete/locale/types.d.ts +5 -0
  1298. package/components/Button/Button/Button.js +176 -93
  1299. package/components/Button/Button/Button.js.map +1 -1
  1300. package/components/Button/Button.d.ts +90 -23
  1301. package/components/Button/Button.md +104 -89
  1302. package/components/Button/Button.mixins/Button.mixins.js +21 -75
  1303. package/components/Button/Button.mixins/Button.mixins.js.map +1 -1
  1304. package/components/Button/Button.mixins.d.ts +6 -6
  1305. package/components/Button/Button.styles/Button.styles.js +139 -454
  1306. package/components/Button/Button.styles/Button.styles.js.map +1 -1
  1307. package/components/Button/Button.styles.d.ts +63 -30
  1308. package/components/Button/index/index.js.map +1 -1
  1309. package/components/Center/Center/Center.js +49 -29
  1310. package/components/Center/Center/Center.js.map +1 -1
  1311. package/components/Center/Center.d.ts +17 -13
  1312. package/components/Center/Center.md +26 -5
  1313. package/components/Center/Center.styles/Center.styles.js +8 -57
  1314. package/components/Center/Center.styles/Center.styles.js.map +1 -1
  1315. package/components/Center/Center.styles.d.ts +1 -1
  1316. package/components/Center/index/index.js.map +1 -1
  1317. package/components/Checkbox/Checkbox/Checkbox.js +168 -108
  1318. package/components/Checkbox/Checkbox/Checkbox.js.map +1 -1
  1319. package/components/Checkbox/Checkbox.d.ts +52 -20
  1320. package/components/Checkbox/Checkbox.md +152 -63
  1321. package/components/Checkbox/Checkbox.styles/Checkbox.styles.js +44 -176
  1322. package/components/Checkbox/Checkbox.styles/Checkbox.styles.js.map +1 -1
  1323. package/components/Checkbox/Checkbox.styles.d.ts +18 -11
  1324. package/components/Checkbox/index/index.js.map +1 -1
  1325. package/components/ComboBox/ComboBox/ComboBox.js +48 -41
  1326. package/components/ComboBox/ComboBox/ComboBox.js.map +1 -1
  1327. package/components/ComboBox/ComboBox.d.ts +51 -19
  1328. package/components/ComboBox/ComboBox.md +528 -432
  1329. package/components/ComboBox/index/index.js.map +1 -1
  1330. package/components/CurrencyInput/CurrencyHelper/CurrencyHelper.js +18 -18
  1331. package/components/CurrencyInput/CurrencyHelper/CurrencyHelper.js.map +1 -1
  1332. package/components/CurrencyInput/CurrencyInput/CurrencyInput.js +175 -84
  1333. package/components/CurrencyInput/CurrencyInput/CurrencyInput.js.map +1 -1
  1334. package/components/CurrencyInput/CurrencyInput.d.ts +22 -15
  1335. package/components/CurrencyInput/CurrencyInput.md +37 -20
  1336. package/components/CurrencyInput/CurrencyInputHelper/CurrencyInputHelper.js +8 -4
  1337. package/components/CurrencyInput/CurrencyInputHelper/CurrencyInputHelper.js.map +1 -1
  1338. package/components/CurrencyInput/CurrencyInputKeyboardActions/CurrencyInputKeyboardActions.js +4 -2
  1339. package/components/CurrencyInput/CurrencyInputKeyboardActions/CurrencyInputKeyboardActions.js.map +1 -1
  1340. package/components/CurrencyInput/CurrencyInputKeyboardActions.d.ts +3 -1
  1341. package/components/CurrencyInput/CursorHelper/CursorHelper.js +61 -27
  1342. package/components/CurrencyInput/CursorHelper/CursorHelper.js.map +1 -1
  1343. package/components/CurrencyInput/SelectionHelper/SelectionHelper.js.map +1 -1
  1344. package/components/CurrencyInput/constants/constants.js +4 -1
  1345. package/components/CurrencyInput/constants/constants.js.map +1 -1
  1346. package/components/CurrencyInput/constants.d.ts +3 -0
  1347. package/components/CurrencyInput/index/index.js.map +1 -1
  1348. package/components/CurrencyLabel/CurrencyLabel/CurrencyLabel.js +29 -14
  1349. package/components/CurrencyLabel/CurrencyLabel/CurrencyLabel.js.map +1 -1
  1350. package/components/CurrencyLabel/CurrencyLabel.d.ts +11 -11
  1351. package/components/CurrencyLabel/CurrencyLabel.md +29 -23
  1352. package/components/CurrencyLabel/index/index.js.map +1 -1
  1353. package/components/DateInput/DateFragmentsView/DateFragmentsView.js +29 -18
  1354. package/components/DateInput/DateFragmentsView/DateFragmentsView.js.map +1 -1
  1355. package/components/DateInput/DateFragmentsView.d.ts +2 -2
  1356. package/components/DateInput/DateFragmentsView.styles/DateFragmentsView.styles.js +7 -46
  1357. package/components/DateInput/DateFragmentsView.styles/DateFragmentsView.styles.js.map +1 -1
  1358. package/components/DateInput/DateFragmentsView.styles.d.ts +5 -4
  1359. package/components/DateInput/DateInput/DateInput.js +57 -25
  1360. package/components/DateInput/DateInput/DateInput.js.map +1 -1
  1361. package/components/DateInput/DateInput.d.ts +21 -14
  1362. package/components/DateInput/DateInput.md +106 -104
  1363. package/components/DateInput/DateInput.styles/DateInput.styles.js +13 -55
  1364. package/components/DateInput/DateInput.styles/DateInput.styles.js.map +1 -1
  1365. package/components/DateInput/DateInput.styles.d.ts +9 -6
  1366. package/components/DateInput/ViewDateInputValidateChecks/ViewDateInputValidateChecks.js +11 -13
  1367. package/components/DateInput/ViewDateInputValidateChecks/ViewDateInputValidateChecks.js.map +1 -1
  1368. package/components/DateInput/helpers/DateInputKeyboardActions/DateInputKeyboardActions.js +0 -1
  1369. package/components/DateInput/helpers/DateInputKeyboardActions/DateInputKeyboardActions.js.map +1 -1
  1370. package/components/DateInput/helpers/InternalDateMediator/InternalDateMediator.js +17 -13
  1371. package/components/DateInput/helpers/InternalDateMediator/InternalDateMediator.js.map +1 -1
  1372. package/components/DateInput/helpers/InternalDateMediator.d.ts +3 -3
  1373. package/components/DateInput/helpers/SelectionHelpers/SelectionHelpers.js +3 -3
  1374. package/components/DateInput/helpers/SelectionHelpers/SelectionHelpers.js.map +1 -1
  1375. package/components/DateInput/helpers/inputNumber/inputNumber.js +53 -16
  1376. package/components/DateInput/helpers/inputNumber/inputNumber.js.map +1 -1
  1377. package/components/DateInput/helpers/inputNumber.d.ts +3 -3
  1378. package/components/DateInput/index/index.js.map +1 -1
  1379. package/components/DatePicker/DatePicker/DatePicker.js +150 -104
  1380. package/components/DatePicker/DatePicker/DatePicker.js.map +1 -1
  1381. package/components/DatePicker/DatePicker.d.ts +41 -22
  1382. package/components/DatePicker/DatePicker.md +325 -310
  1383. package/components/DatePicker/DatePicker.styles/DatePicker.styles.js +4 -13
  1384. package/components/DatePicker/DatePicker.styles/DatePicker.styles.js.map +1 -1
  1385. package/components/DatePicker/DatePicker.styles.d.ts +1 -1
  1386. package/components/DatePicker/DatePickerHelpers/DatePickerHelpers.js.map +1 -1
  1387. package/components/DatePicker/Picker/Picker.js +17 -15
  1388. package/components/DatePicker/Picker/Picker.js.map +1 -1
  1389. package/components/DatePicker/Picker.styles/Picker.styles.js +5 -24
  1390. package/components/DatePicker/Picker.styles/Picker.styles.js.map +1 -1
  1391. package/components/DatePicker/Picker.styles.d.ts +4 -3
  1392. package/components/DatePicker/index/index.js.map +1 -1
  1393. package/components/DatePicker/locale/index/index.js.map +1 -1
  1394. package/components/DatePicker/locale/locales/en/en.js.map +1 -1
  1395. package/components/DatePicker/locale/locales/ru/ru.js.map +1 -1
  1396. package/components/DatePicker/locale/types/types.js +1 -0
  1397. package/components/Dropdown/Dropdown/Dropdown.js +88 -61
  1398. package/components/Dropdown/Dropdown/Dropdown.js.map +1 -1
  1399. package/components/Dropdown/Dropdown.d.ts +17 -4
  1400. package/components/Dropdown/Dropdown.md +11 -12
  1401. package/components/Dropdown/index/index.js.map +1 -1
  1402. package/components/DropdownMenu/DropdownMenu/DropdownMenu.js +45 -34
  1403. package/components/DropdownMenu/DropdownMenu/DropdownMenu.js.map +1 -1
  1404. package/components/DropdownMenu/DropdownMenu.d.ts +31 -15
  1405. package/components/DropdownMenu/DropdownMenu.md +221 -73
  1406. package/components/DropdownMenu/index/index.js.map +1 -1
  1407. package/components/FileUploader/FileUploader/FileUploader.js +319 -0
  1408. package/components/FileUploader/FileUploader/FileUploader.js.map +1 -0
  1409. package/components/FileUploader/FileUploader/package.json +6 -0
  1410. package/components/FileUploader/FileUploader.d.ts +56 -0
  1411. package/components/FileUploader/FileUploader.md +79 -0
  1412. package/components/FileUploader/FileUploader.mixins/FileUploader.mixins.js +8 -0
  1413. package/components/FileUploader/FileUploader.mixins/FileUploader.mixins.js.map +1 -0
  1414. package/components/FileUploader/FileUploader.mixins/package.json +6 -0
  1415. package/components/FileUploader/FileUploader.mixins.d.ts +1 -0
  1416. package/components/FileUploader/FileUploader.styles/FileUploader.styles.js +99 -0
  1417. package/components/FileUploader/FileUploader.styles/FileUploader.styles.js.map +1 -0
  1418. package/components/FileUploader/FileUploader.styles/package.json +6 -0
  1419. package/components/FileUploader/FileUploader.styles.d.ts +33 -0
  1420. package/components/FileUploader/index/index.js +3 -0
  1421. package/components/FileUploader/index/index.js.map +1 -0
  1422. package/components/FileUploader/index/package.json +6 -0
  1423. package/components/FileUploader/index.d.ts +5 -0
  1424. package/components/FileUploader/locale/index/index.js +8 -0
  1425. package/components/FileUploader/locale/index/index.js.map +1 -0
  1426. package/components/FileUploader/locale/index/package.json +6 -0
  1427. package/components/FileUploader/locale/index.d.ts +4 -0
  1428. package/components/FileUploader/locale/locales/en/en.js +6 -0
  1429. package/components/FileUploader/locale/locales/en/en.js.map +1 -0
  1430. package/components/FileUploader/locale/locales/en/package.json +6 -0
  1431. package/components/FileUploader/locale/locales/en.d.ts +2 -0
  1432. package/components/FileUploader/locale/locales/ru/package.json +6 -0
  1433. package/components/FileUploader/locale/locales/ru/ru.js +6 -0
  1434. package/components/FileUploader/locale/locales/ru/ru.js.map +1 -0
  1435. package/components/FileUploader/locale/locales/ru.d.ts +2 -0
  1436. package/components/FileUploader/locale/package.json +6 -0
  1437. package/components/FileUploader/locale/types/package.json +6 -0
  1438. package/components/FileUploader/locale/types/types.js +1 -0
  1439. package/components/FileUploader/locale/types.d.ts +6 -0
  1440. package/components/FileUploader/package.json +6 -0
  1441. package/components/FxInput/FxInput/FxInput.js +64 -50
  1442. package/components/FxInput/FxInput/FxInput.js.map +1 -1
  1443. package/components/FxInput/FxInput.d.ts +14 -7
  1444. package/components/FxInput/FxInput.md +29 -13
  1445. package/components/FxInput/index/index.js.map +1 -1
  1446. package/components/Gapped/Gapped/Gapped.js +71 -50
  1447. package/components/Gapped/Gapped/Gapped.js.map +1 -1
  1448. package/components/Gapped/Gapped.d.ts +18 -12
  1449. package/components/Gapped/Gapped.md +43 -43
  1450. package/components/Gapped/index/index.js.map +1 -1
  1451. package/components/GlobalLoader/GlobalLoader/GlobalLoader.js +242 -0
  1452. package/components/GlobalLoader/GlobalLoader/GlobalLoader.js.map +1 -0
  1453. package/components/GlobalLoader/GlobalLoader/package.json +6 -0
  1454. package/components/GlobalLoader/GlobalLoader.d.ts +106 -0
  1455. package/components/GlobalLoader/GlobalLoader.md +98 -0
  1456. package/components/GlobalLoader/GlobalLoaderView/GlobalLoaderView.js +73 -0
  1457. package/components/GlobalLoader/GlobalLoaderView/GlobalLoaderView.js.map +1 -0
  1458. package/components/GlobalLoader/GlobalLoaderView/package.json +6 -0
  1459. package/components/GlobalLoader/GlobalLoaderView.d.ts +13 -0
  1460. package/components/GlobalLoader/GlobalLoaderView.styles/GlobalLoaderView.styles.js +53 -0
  1461. package/components/GlobalLoader/GlobalLoaderView.styles/GlobalLoaderView.styles.js.map +1 -0
  1462. package/components/GlobalLoader/GlobalLoaderView.styles/package.json +6 -0
  1463. package/components/GlobalLoader/GlobalLoaderView.styles.d.ts +16 -0
  1464. package/components/GlobalLoader/index/index.js +1 -0
  1465. package/components/GlobalLoader/index/index.js.map +1 -0
  1466. package/components/GlobalLoader/index/package.json +6 -0
  1467. package/components/GlobalLoader/index.d.ts +1 -0
  1468. package/components/GlobalLoader/package.json +6 -0
  1469. package/components/GlobalLoader/useParams/package.json +6 -0
  1470. package/components/GlobalLoader/useParams/useParams.js +51 -0
  1471. package/components/GlobalLoader/useParams/useParams.js.map +1 -0
  1472. package/components/GlobalLoader/useParams.d.ts +22 -0
  1473. package/components/Group/Group/Group.js +87 -47
  1474. package/components/Group/Group/Group.js.map +1 -1
  1475. package/components/Group/Group.d.ts +7 -1
  1476. package/components/Group/Group.md +18 -26
  1477. package/components/Group/Group.styles/Group.styles.js +9 -68
  1478. package/components/Group/Group.styles/Group.styles.js.map +1 -1
  1479. package/components/Group/Group.styles.d.ts +1 -1
  1480. package/components/Group/index/index.js.map +1 -1
  1481. package/components/Hint/Hint/Hint.js +93 -38
  1482. package/components/Hint/Hint/Hint.js.map +1 -1
  1483. package/components/Hint/Hint.d.ts +58 -14
  1484. package/components/Hint/Hint.md +85 -3
  1485. package/components/Hint/Hint.styles/Hint.styles.js +7 -26
  1486. package/components/Hint/Hint.styles/Hint.styles.js.map +1 -1
  1487. package/components/Hint/Hint.styles.d.ts +4 -3
  1488. package/components/Hint/index/index.js.map +1 -1
  1489. package/components/Input/Input/Input.js +214 -167
  1490. package/components/Input/Input/Input.js.map +1 -1
  1491. package/components/Input/Input.d.ts +32 -12
  1492. package/components/Input/Input.md +29 -13
  1493. package/components/Input/Input.styles/Input.styles.js +80 -302
  1494. package/components/Input/Input.styles/Input.styles.js.map +1 -1
  1495. package/components/Input/Input.styles.d.ts +38 -23
  1496. package/components/Input/index/index.js.map +1 -1
  1497. package/components/Kebab/Kebab/Kebab.js +66 -78
  1498. package/components/Kebab/Kebab/Kebab.js.map +1 -1
  1499. package/components/Kebab/Kebab.d.ts +26 -30
  1500. package/components/Kebab/Kebab.md +278 -45
  1501. package/components/Kebab/Kebab.styles/Kebab.styles.js +17 -93
  1502. package/components/Kebab/Kebab.styles/Kebab.styles.js.map +1 -1
  1503. package/components/Kebab/Kebab.styles.d.ts +7 -5
  1504. package/components/Kebab/__stories__/Kebab.items/Kebab.items.js.map +1 -1
  1505. package/components/Kebab/index/index.js.map +1 -1
  1506. package/components/Link/Link/Link.js +90 -85
  1507. package/components/Link/Link/Link.js.map +1 -1
  1508. package/components/Link/Link.d.ts +44 -21
  1509. package/components/Link/Link.md +77 -11
  1510. package/components/Link/Link.mixins/Link.mixins.js +3 -3
  1511. package/components/Link/Link.mixins/Link.mixins.js.map +1 -1
  1512. package/components/Link/Link.mixins.d.ts +1 -1
  1513. package/components/Link/Link.styles/Link.styles.js +20 -126
  1514. package/components/Link/Link.styles/Link.styles.js.map +1 -1
  1515. package/components/Link/Link.styles.d.ts +13 -11
  1516. package/components/Link/index/index.js.map +1 -1
  1517. package/components/Loader/Loader/Loader.js +241 -94
  1518. package/components/Loader/Loader/Loader.js.map +1 -1
  1519. package/components/Loader/Loader.d.ts +60 -20
  1520. package/components/Loader/Loader.md +32 -25
  1521. package/components/Loader/Loader.styles/Loader.styles.js +9 -71
  1522. package/components/Loader/Loader.styles/Loader.styles.js.map +1 -1
  1523. package/components/Loader/Loader.styles.d.ts +4 -4
  1524. package/components/Loader/__stories__/LoaderAndButton/LoaderAndButton.js +47 -0
  1525. package/components/Loader/__stories__/LoaderAndButton/LoaderAndButton.js.map +1 -0
  1526. package/components/Loader/__stories__/LoaderAndButton/package.json +6 -0
  1527. package/components/Loader/index/index.js.map +1 -1
  1528. package/components/MenuHeader/MenuHeader/MenuHeader.js +23 -11
  1529. package/components/MenuHeader/MenuHeader/MenuHeader.js.map +1 -1
  1530. package/components/MenuHeader/MenuHeader.d.ts +12 -4
  1531. package/components/MenuHeader/MenuHeader.md +23 -0
  1532. package/components/MenuHeader/MenuHeader.styles/MenuHeader.styles.js +8 -25
  1533. package/components/MenuHeader/MenuHeader.styles/MenuHeader.styles.js.map +1 -1
  1534. package/components/MenuHeader/MenuHeader.styles.d.ts +4 -3
  1535. package/components/MenuHeader/index/index.js.map +1 -1
  1536. package/components/MenuItem/MenuItem/MenuItem.js +115 -74
  1537. package/components/MenuItem/MenuItem/MenuItem.js.map +1 -1
  1538. package/components/MenuItem/MenuItem.d.ts +77 -13
  1539. package/components/MenuItem/MenuItem.md +109 -7
  1540. package/components/MenuItem/MenuItem.styles/MenuItem.styles.js +46 -116
  1541. package/components/MenuItem/MenuItem.styles/MenuItem.styles.js.map +1 -1
  1542. package/components/MenuItem/MenuItem.styles.d.ts +17 -10
  1543. package/components/MenuItem/index/index.js.map +1 -1
  1544. package/components/MenuSeparator/MenuSeparator/MenuSeparator.js +22 -8
  1545. package/components/MenuSeparator/MenuSeparator/MenuSeparator.js.map +1 -1
  1546. package/components/MenuSeparator/MenuSeparator.d.ts +9 -3
  1547. package/components/MenuSeparator/MenuSeparator.md +14 -0
  1548. package/components/MenuSeparator/MenuSeparator.styles/MenuSeparator.styles.js +7 -13
  1549. package/components/MenuSeparator/MenuSeparator.styles/MenuSeparator.styles.js.map +1 -1
  1550. package/components/MenuSeparator/MenuSeparator.styles.d.ts +4 -2
  1551. package/components/MenuSeparator/index/index.js.map +1 -1
  1552. package/components/Modal/Modal/Modal.js +119 -86
  1553. package/components/Modal/Modal/Modal.js.map +1 -1
  1554. package/components/Modal/Modal.d.ts +20 -8
  1555. package/components/Modal/Modal.md +38 -37
  1556. package/components/Modal/Modal.styles/Modal.styles.js +94 -233
  1557. package/components/Modal/Modal.styles/Modal.styles.js.map +1 -1
  1558. package/components/Modal/Modal.styles.d.ts +36 -18
  1559. package/components/Modal/ModalBody/ModalBody.js +53 -23
  1560. package/components/Modal/ModalBody/ModalBody.js.map +1 -1
  1561. package/components/Modal/ModalBody.d.ts +13 -1
  1562. package/components/Modal/ModalClose/ModalClose.js +43 -11
  1563. package/components/Modal/ModalClose/ModalClose.js.map +1 -1
  1564. package/components/Modal/ModalClose.d.ts +1 -2
  1565. package/components/Modal/ModalContext/ModalContext.js +2 -1
  1566. package/components/Modal/ModalContext/ModalContext.js.map +1 -1
  1567. package/components/Modal/ModalContext.d.ts +5 -1
  1568. package/components/Modal/ModalFooter/ModalFooter.js +48 -39
  1569. package/components/Modal/ModalFooter/ModalFooter.js.map +1 -1
  1570. package/components/Modal/ModalFooter.d.ts +19 -1
  1571. package/components/Modal/ModalHeader/ModalHeader.js +48 -44
  1572. package/components/Modal/ModalHeader/ModalHeader.js.map +1 -1
  1573. package/components/Modal/ModalHeader.d.ts +6 -2
  1574. package/components/Modal/index/index.js.map +1 -1
  1575. package/components/Paging/NavigationHelper/NavigationHelper.js.map +1 -1
  1576. package/components/Paging/NavigationHelper.d.ts +1 -1
  1577. package/components/Paging/Paging/Paging.js +110 -91
  1578. package/components/Paging/Paging/Paging.js.map +1 -1
  1579. package/components/Paging/Paging.d.ts +27 -11
  1580. package/components/Paging/Paging.md +56 -43
  1581. package/components/Paging/Paging.styles/Paging.styles.js +34 -151
  1582. package/components/Paging/Paging.styles/Paging.styles.js.map +1 -1
  1583. package/components/Paging/Paging.styles.d.ts +16 -11
  1584. package/components/Paging/PagingDefaultComponent/PagingDefaultComponent.js +19 -0
  1585. package/components/Paging/PagingDefaultComponent/PagingDefaultComponent.js.map +1 -0
  1586. package/components/Paging/PagingDefaultComponent/package.json +6 -0
  1587. package/components/Paging/PagingDefaultComponent.d.ts +9 -0
  1588. package/components/Paging/PagingHelper/PagingHelper.js.map +1 -1
  1589. package/components/Paging/index/index.js.map +1 -1
  1590. package/components/Paging/locale/index/index.js.map +1 -1
  1591. package/components/Paging/locale/locales/en/en.js.map +1 -1
  1592. package/components/Paging/locale/locales/ru/ru.js.map +1 -1
  1593. package/components/Paging/locale/types/types.js +1 -0
  1594. package/components/PasswordInput/PasswordInput/PasswordInput.js +109 -56
  1595. package/components/PasswordInput/PasswordInput/PasswordInput.js.map +1 -1
  1596. package/components/PasswordInput/PasswordInput.d.ts +20 -8
  1597. package/components/PasswordInput/PasswordInput.md +9 -9
  1598. package/components/PasswordInput/PasswordInput.styles/PasswordInput.styles.js +17 -47
  1599. package/components/PasswordInput/PasswordInput.styles/PasswordInput.styles.js.map +1 -1
  1600. package/components/PasswordInput/PasswordInput.styles.d.ts +6 -2
  1601. package/components/PasswordInput/PasswordInputIcon/PasswordInputIcon.js +15 -0
  1602. package/components/PasswordInput/PasswordInputIcon/PasswordInputIcon.js.map +1 -0
  1603. package/components/PasswordInput/PasswordInputIcon/package.json +6 -0
  1604. package/components/PasswordInput/PasswordInputIcon.d.ts +3 -0
  1605. package/components/PasswordInput/index/index.js.map +1 -1
  1606. package/components/Radio/Radio/Radio.js +137 -94
  1607. package/components/Radio/Radio/Radio.js.map +1 -1
  1608. package/components/Radio/Radio.d.ts +53 -28
  1609. package/components/Radio/Radio.md +38 -14
  1610. package/components/Radio/Radio.styles/Radio.styles.js +47 -141
  1611. package/components/Radio/Radio.styles/Radio.styles.js.map +1 -1
  1612. package/components/Radio/Radio.styles.d.ts +18 -11
  1613. package/components/Radio/index/index.js.map +1 -1
  1614. package/components/RadioGroup/Prevent/Prevent.js +2 -4
  1615. package/components/RadioGroup/Prevent/Prevent.js.map +1 -1
  1616. package/components/RadioGroup/RadioGroup/RadioGroup.js +119 -142
  1617. package/components/RadioGroup/RadioGroup/RadioGroup.js.map +1 -1
  1618. package/components/RadioGroup/RadioGroup.d.ts +73 -98
  1619. package/components/RadioGroup/RadioGroup.md +43 -43
  1620. package/components/RadioGroup/RadioGroup.styles/RadioGroup.styles.js +8 -47
  1621. package/components/RadioGroup/RadioGroup.styles/RadioGroup.styles.js.map +1 -1
  1622. package/components/RadioGroup/RadioGroup.styles.d.ts +3 -2
  1623. package/components/RadioGroup/RadioGroupContext/RadioGroupContext.js +12 -0
  1624. package/components/RadioGroup/RadioGroupContext/RadioGroupContext.js.map +1 -0
  1625. package/components/RadioGroup/RadioGroupContext/package.json +6 -0
  1626. package/components/RadioGroup/RadioGroupContext.d.ts +10 -0
  1627. package/components/RadioGroup/index/index.js.map +1 -1
  1628. package/components/ResponsiveLayout/ResponsiveLayout/ResponsiveLayout.js +21 -0
  1629. package/components/ResponsiveLayout/ResponsiveLayout/ResponsiveLayout.js.map +1 -0
  1630. package/components/ResponsiveLayout/ResponsiveLayout/package.json +6 -0
  1631. package/components/ResponsiveLayout/ResponsiveLayout.d.ts +12 -0
  1632. package/components/ResponsiveLayout/ResponsiveLayout.md +74 -0
  1633. package/components/ResponsiveLayout/ResponsiveLayoutEvents/ResponsiveLayoutEvents.js +99 -0
  1634. package/components/ResponsiveLayout/ResponsiveLayoutEvents/ResponsiveLayoutEvents.js.map +1 -0
  1635. package/components/ResponsiveLayout/ResponsiveLayoutEvents/package.json +6 -0
  1636. package/components/ResponsiveLayout/ResponsiveLayoutEvents.d.ts +11 -0
  1637. package/components/ResponsiveLayout/decorator/decorator.js +61 -0
  1638. package/components/ResponsiveLayout/decorator/decorator.js.map +1 -0
  1639. package/components/ResponsiveLayout/decorator/package.json +6 -0
  1640. package/components/ResponsiveLayout/decorator.d.ts +33 -0
  1641. package/components/ResponsiveLayout/index/index.js +3 -0
  1642. package/components/ResponsiveLayout/index/index.js.map +1 -0
  1643. package/components/ResponsiveLayout/index/package.json +6 -0
  1644. package/components/ResponsiveLayout/index.d.ts +3 -0
  1645. package/components/ResponsiveLayout/package.json +6 -0
  1646. package/components/ResponsiveLayout/types/package.json +6 -0
  1647. package/components/ResponsiveLayout/types/types.js +1 -0
  1648. package/components/ResponsiveLayout/types.d.ts +11 -0
  1649. package/components/ResponsiveLayout/useResponsiveLayout/package.json +6 -0
  1650. package/components/ResponsiveLayout/useResponsiveLayout/useResponsiveLayout.js +80 -0
  1651. package/components/ResponsiveLayout/useResponsiveLayout/useResponsiveLayout.js.map +1 -0
  1652. package/components/ResponsiveLayout/useResponsiveLayout.d.ts +2 -0
  1653. package/components/ScrollContainer/ScrollBar/ScrollBar.js +312 -0
  1654. package/components/ScrollContainer/ScrollBar/ScrollBar.js.map +1 -0
  1655. package/components/ScrollContainer/ScrollBar/package.json +6 -0
  1656. package/components/ScrollContainer/ScrollBar.d.ts +47 -0
  1657. package/components/ScrollContainer/ScrollContainer/ScrollContainer.js +180 -245
  1658. package/components/ScrollContainer/ScrollContainer/ScrollContainer.js.map +1 -1
  1659. package/components/ScrollContainer/ScrollContainer.constants/ScrollContainer.constants.js +32 -0
  1660. package/components/ScrollContainer/ScrollContainer.constants/ScrollContainer.constants.js.map +1 -0
  1661. package/components/ScrollContainer/ScrollContainer.constants/package.json +6 -0
  1662. package/components/ScrollContainer/ScrollContainer.constants.d.ts +23 -0
  1663. package/components/ScrollContainer/ScrollContainer.d.ts +73 -26
  1664. package/components/ScrollContainer/ScrollContainer.helpers/ScrollContainer.helpers.js +58 -0
  1665. package/components/ScrollContainer/ScrollContainer.helpers/ScrollContainer.helpers.js.map +1 -0
  1666. package/components/ScrollContainer/ScrollContainer.helpers/package.json +6 -0
  1667. package/components/ScrollContainer/ScrollContainer.helpers.d.ts +10 -0
  1668. package/components/ScrollContainer/ScrollContainer.md +195 -60
  1669. package/components/ScrollContainer/ScrollContainer.styles/ScrollContainer.styles.js +53 -62
  1670. package/components/ScrollContainer/ScrollContainer.styles/ScrollContainer.styles.js.map +1 -1
  1671. package/components/ScrollContainer/ScrollContainer.styles.d.ts +23 -4
  1672. package/components/ScrollContainer/index/index.js.map +1 -1
  1673. package/components/Select/Item/Item.js +2 -4
  1674. package/components/Select/Item/Item.js.map +1 -1
  1675. package/components/Select/Item.d.ts +4 -2
  1676. package/components/Select/Select/Select.js +298 -178
  1677. package/components/Select/Select/Select.js.map +1 -1
  1678. package/components/Select/Select.d.ts +38 -44
  1679. package/components/Select/Select.md +81 -23
  1680. package/components/Select/Select.styles/Select.styles.js +35 -119
  1681. package/components/Select/Select.styles/Select.styles.js.map +1 -1
  1682. package/components/Select/Select.styles.d.ts +13 -7
  1683. package/components/Select/index/index.js.map +1 -1
  1684. package/components/Select/locale/index/index.js.map +1 -1
  1685. package/components/Select/locale/locales/en/en.js +1 -1
  1686. package/components/Select/locale/locales/en/en.js.map +1 -1
  1687. package/components/Select/locale/locales/ru/ru.js +1 -1
  1688. package/components/Select/locale/locales/ru/ru.js.map +1 -1
  1689. package/components/Select/locale/types/types.js +1 -0
  1690. package/components/Select/selectTheme/package.json +6 -0
  1691. package/components/Select/selectTheme/selectTheme.js +30 -0
  1692. package/components/Select/selectTheme/selectTheme.js.map +1 -0
  1693. package/components/Select/selectTheme.d.ts +3 -0
  1694. package/components/SidePage/SidePage/SidePage.js +171 -97
  1695. package/components/SidePage/SidePage/SidePage.js.map +1 -1
  1696. package/components/SidePage/SidePage.d.ts +34 -3
  1697. package/components/SidePage/SidePage.md +48 -48
  1698. package/components/SidePage/SidePage.styles/SidePage.styles.js +102 -301
  1699. package/components/SidePage/SidePage.styles/SidePage.styles.js.map +1 -1
  1700. package/components/SidePage/SidePage.styles.d.ts +38 -18
  1701. package/components/SidePage/SidePageBody/SidePageBody.js +33 -16
  1702. package/components/SidePage/SidePageBody/SidePageBody.js.map +1 -1
  1703. package/components/SidePage/SidePageBody.d.ts +7 -1
  1704. package/components/SidePage/SidePageContainer/SidePageContainer.js +46 -15
  1705. package/components/SidePage/SidePageContainer/SidePageContainer.js.map +1 -1
  1706. package/components/SidePage/SidePageContainer.d.ts +10 -1
  1707. package/components/SidePage/SidePageContext/SidePageContext.js +6 -2
  1708. package/components/SidePage/SidePageContext/SidePageContext.js.map +1 -1
  1709. package/components/SidePage/SidePageContext.d.ts +8 -0
  1710. package/components/SidePage/SidePageFooter/SidePageFooter.js +73 -35
  1711. package/components/SidePage/SidePageFooter/SidePageFooter.js.map +1 -1
  1712. package/components/SidePage/SidePageFooter.d.ts +24 -7
  1713. package/components/SidePage/SidePageHeader/SidePageHeader.js +120 -52
  1714. package/components/SidePage/SidePageHeader/SidePageHeader.js.map +1 -1
  1715. package/components/SidePage/SidePageHeader.d.ts +21 -5
  1716. package/components/SidePage/index/index.js.map +1 -1
  1717. package/components/Spinner/Spinner/Spinner.js +63 -60
  1718. package/components/Spinner/Spinner/Spinner.js.map +1 -1
  1719. package/components/Spinner/Spinner.d.ts +30 -18
  1720. package/components/Spinner/Spinner.md +35 -34
  1721. package/components/Spinner/Spinner.styles/Spinner.styles.js +22 -107
  1722. package/components/Spinner/Spinner.styles/Spinner.styles.js.map +1 -1
  1723. package/components/Spinner/Spinner.styles.d.ts +10 -8
  1724. package/components/Spinner/SpinnerFallbackAnimation/SpinnerFallbackAnimation.js +173 -0
  1725. package/components/Spinner/SpinnerFallbackAnimation/SpinnerFallbackAnimation.js.map +1 -0
  1726. package/components/Spinner/SpinnerFallbackAnimation/package.json +6 -0
  1727. package/components/Spinner/SpinnerFallbackAnimation.d.ts +25 -0
  1728. package/components/Spinner/index/index.js.map +1 -1
  1729. package/components/Spinner/locale/index/index.js.map +1 -1
  1730. package/components/Spinner/locale/locales/en/en.js.map +1 -1
  1731. package/components/Spinner/locale/locales/ru/ru.js.map +1 -1
  1732. package/components/Spinner/locale/types/types.js +1 -0
  1733. package/components/Sticky/Sticky/Sticky.js +55 -42
  1734. package/components/Sticky/Sticky/Sticky.js.map +1 -1
  1735. package/components/Sticky/Sticky.d.ts +21 -6
  1736. package/components/Sticky/Sticky.md +27 -27
  1737. package/components/Sticky/Sticky.styles/Sticky.styles.js +10 -46
  1738. package/components/Sticky/Sticky.styles/Sticky.styles.js.map +1 -1
  1739. package/components/Sticky/Sticky.styles.d.ts +2 -1
  1740. package/components/Sticky/index/index.js.map +1 -1
  1741. package/components/Switcher/Switcher/Switcher.js +127 -60
  1742. package/components/Switcher/Switcher/Switcher.js.map +1 -1
  1743. package/components/Switcher/Switcher.d.ts +25 -7
  1744. package/components/Switcher/Switcher.md +107 -10
  1745. package/components/Switcher/Switcher.styles/Switcher.styles.js +22 -47
  1746. package/components/Switcher/Switcher.styles/Switcher.styles.js.map +1 -1
  1747. package/components/Switcher/Switcher.styles.d.ts +8 -3
  1748. package/components/Switcher/helpers/helpers.js +3 -0
  1749. package/components/Switcher/helpers/helpers.js.map +1 -0
  1750. package/components/Switcher/helpers/package.json +6 -0
  1751. package/components/Switcher/helpers.d.ts +1 -0
  1752. package/components/Switcher/index/index.js.map +1 -1
  1753. package/components/Switcher/switcherTheme/package.json +6 -0
  1754. package/components/Switcher/switcherTheme/switcherTheme.js +23 -0
  1755. package/components/Switcher/switcherTheme/switcherTheme.js.map +1 -0
  1756. package/components/Switcher/switcherTheme.d.ts +2 -0
  1757. package/components/Tabs/Indicator/Indicator.js +30 -31
  1758. package/components/Tabs/Indicator/Indicator.js.map +1 -1
  1759. package/components/Tabs/Indicator.d.ts +3 -3
  1760. package/components/Tabs/Indicator.styles/Indicator.styles.js +8 -57
  1761. package/components/Tabs/Indicator.styles/Indicator.styles.js.map +1 -1
  1762. package/components/Tabs/Indicator.styles.d.ts +7 -6
  1763. package/components/Tabs/Tab/Tab.js +66 -79
  1764. package/components/Tabs/Tab/Tab.js.map +1 -1
  1765. package/components/Tabs/Tab.d.ts +22 -26
  1766. package/components/Tabs/Tab.styles/Tab.styles.js +49 -104
  1767. package/components/Tabs/Tab.styles/Tab.styles.js.map +1 -1
  1768. package/components/Tabs/Tab.styles.d.ts +26 -10
  1769. package/components/Tabs/Tabs/Tabs.js +59 -54
  1770. package/components/Tabs/Tabs/Tabs.js.map +1 -1
  1771. package/components/Tabs/Tabs.d.ts +22 -18
  1772. package/components/Tabs/Tabs.md +36 -28
  1773. package/components/Tabs/Tabs.styles/Tabs.styles.js +6 -25
  1774. package/components/Tabs/Tabs.styles/Tabs.styles.js.map +1 -1
  1775. package/components/Tabs/Tabs.styles.d.ts +3 -2
  1776. package/components/Tabs/TabsContext/TabsContext.js +2 -1
  1777. package/components/Tabs/TabsContext/TabsContext.js.map +1 -1
  1778. package/components/Tabs/TabsContext.d.ts +8 -8
  1779. package/components/Tabs/index/index.js.map +1 -1
  1780. package/components/Textarea/Textarea/Textarea.js +250 -120
  1781. package/components/Textarea/Textarea/Textarea.js.map +1 -1
  1782. package/components/Textarea/Textarea.d.ts +68 -16
  1783. package/components/Textarea/Textarea.md +44 -9
  1784. package/components/Textarea/Textarea.styles/Textarea.styles.js +28 -69
  1785. package/components/Textarea/Textarea.styles/Textarea.styles.js.map +1 -1
  1786. package/components/Textarea/Textarea.styles.d.ts +12 -5
  1787. package/components/Textarea/TextareaCounter/TextareaCounter.js +82 -0
  1788. package/components/Textarea/TextareaCounter/TextareaCounter.js.map +1 -0
  1789. package/components/Textarea/TextareaCounter/package.json +6 -0
  1790. package/components/Textarea/TextareaCounter.d.ts +12 -0
  1791. package/components/Textarea/TextareaHelpers/TextareaHelpers.js +12 -5
  1792. package/components/Textarea/TextareaHelpers/TextareaHelpers.js.map +1 -1
  1793. package/components/Textarea/TextareaHelpers.d.ts +8 -1
  1794. package/components/Textarea/index/index.js.map +1 -1
  1795. package/components/Toast/Toast/Toast.js +74 -44
  1796. package/components/Toast/Toast/Toast.js.map +1 -1
  1797. package/components/Toast/Toast.d.ts +27 -12
  1798. package/components/Toast/Toast.md +170 -41
  1799. package/components/Toast/Toast.styles/Toast.styles.js +7 -46
  1800. package/components/Toast/Toast.styles/Toast.styles.js.map +1 -1
  1801. package/components/Toast/Toast.styles.d.ts +1 -1
  1802. package/components/Toast/ToastStatic/ToastStatic.js +8 -9
  1803. package/components/Toast/ToastStatic/ToastStatic.js.map +1 -1
  1804. package/components/Toast/ToastStatic.d.ts +3 -2
  1805. package/components/Toast/ToastView/ToastView.js +48 -42
  1806. package/components/Toast/ToastView/ToastView.js.map +1 -1
  1807. package/components/Toast/ToastView.d.ts +3 -1
  1808. package/components/Toast/ToastView.styles/ToastView.styles.js +31 -58
  1809. package/components/Toast/ToastView.styles/ToastView.styles.js.map +1 -1
  1810. package/components/Toast/ToastView.styles.d.ts +7 -6
  1811. package/components/Toast/index/index.js.map +1 -1
  1812. package/components/Toggle/Toggle/Toggle.js +87 -42
  1813. package/components/Toggle/Toggle/Toggle.js.map +1 -1
  1814. package/components/Toggle/Toggle.d.ts +68 -6
  1815. package/components/Toggle/Toggle.md +94 -9
  1816. package/components/Toggle/Toggle.styles/Toggle.styles.js +60 -118
  1817. package/components/Toggle/Toggle.styles/Toggle.styles.js.map +1 -1
  1818. package/components/Toggle/Toggle.styles.d.ts +28 -10
  1819. package/components/Toggle/index/index.js.map +1 -1
  1820. package/components/Token/Token/Token.js +50 -24
  1821. package/components/Token/Token/Token.js.map +1 -1
  1822. package/components/Token/Token.d.ts +21 -4
  1823. package/components/Token/Token.md +112 -112
  1824. package/components/Token/Token.styles/Token.styles.js +43 -132
  1825. package/components/Token/Token.styles/Token.styles.js.map +1 -1
  1826. package/components/Token/Token.styles.d.ts +27 -23
  1827. package/components/Token/index/index.js.map +1 -1
  1828. package/components/TokenInput/TextWidthHelper/TextWidthHelper.js +21 -14
  1829. package/components/TokenInput/TextWidthHelper/TextWidthHelper.js.map +1 -1
  1830. package/components/TokenInput/TextWidthHelper.d.ts +8 -0
  1831. package/components/TokenInput/TokenInput/TokenInput.js +577 -176
  1832. package/components/TokenInput/TokenInput/TokenInput.js.map +1 -1
  1833. package/components/TokenInput/TokenInput.d.ts +112 -17
  1834. package/components/TokenInput/TokenInput.md +105 -83
  1835. package/components/TokenInput/TokenInput.styles/TokenInput.styles.js +33 -79
  1836. package/components/TokenInput/TokenInput.styles/TokenInput.styles.js.map +1 -1
  1837. package/components/TokenInput/TokenInput.styles.d.ts +14 -8
  1838. package/components/TokenInput/TokenInputMenu/TokenInputMenu.js +39 -11
  1839. package/components/TokenInput/TokenInputMenu/TokenInputMenu.js.map +1 -1
  1840. package/components/TokenInput/TokenInputMenu.d.ts +9 -2
  1841. package/components/TokenInput/TokenInputReducer/TokenInputReducer.js +41 -1
  1842. package/components/TokenInput/TokenInputReducer/TokenInputReducer.js.map +1 -1
  1843. package/components/TokenInput/TokenInputReducer.d.ts +5 -0
  1844. package/components/TokenInput/index/index.js.map +1 -1
  1845. package/components/TokenInput/locale/index/index.js.map +1 -1
  1846. package/components/TokenInput/locale/locales/en/en.js +1 -1
  1847. package/components/TokenInput/locale/locales/en/en.js.map +1 -1
  1848. package/components/TokenInput/locale/locales/ru/ru.js +1 -1
  1849. package/components/TokenInput/locale/locales/ru/ru.js.map +1 -1
  1850. package/components/TokenInput/locale/types/types.js +1 -0
  1851. package/components/Tooltip/Tooltip/Tooltip.js +153 -63
  1852. package/components/Tooltip/Tooltip/Tooltip.js.map +1 -1
  1853. package/components/Tooltip/Tooltip.d.ts +53 -40
  1854. package/components/Tooltip/Tooltip.md +293 -212
  1855. package/components/Tooltip/Tooltip.styles/Tooltip.styles.js +6 -25
  1856. package/components/Tooltip/Tooltip.styles/Tooltip.styles.js.map +1 -1
  1857. package/components/Tooltip/Tooltip.styles.d.ts +4 -3
  1858. package/components/Tooltip/index/index.js.map +1 -1
  1859. package/components/TooltipMenu/TooltipMenu/TooltipMenu.js +52 -23
  1860. package/components/TooltipMenu/TooltipMenu/TooltipMenu.js.map +1 -1
  1861. package/components/TooltipMenu/TooltipMenu.d.ts +42 -17
  1862. package/components/TooltipMenu/TooltipMenu.md +210 -115
  1863. package/components/TooltipMenu/index/index.js.map +1 -1
  1864. package/hooks/useDrop/package.json +6 -0
  1865. package/hooks/useDrop/useDrop.js +61 -0
  1866. package/hooks/useDrop/useDrop.js.map +1 -0
  1867. package/hooks/useDrop.d.ts +11 -0
  1868. package/hooks/useEffectWithoutInitCall/package.json +6 -0
  1869. package/hooks/useEffectWithoutInitCall/useEffectWithoutInitCall.js +11 -0
  1870. package/hooks/useEffectWithoutInitCall/useEffectWithoutInitCall.js.map +1 -0
  1871. package/hooks/useEffectWithoutInitCall.d.ts +2 -0
  1872. package/hooks/useMemoObject/package.json +6 -0
  1873. package/hooks/useMemoObject/useMemoObject.js +6 -0
  1874. package/hooks/useMemoObject/useMemoObject.js.map +1 -0
  1875. package/hooks/useMemoObject.d.ts +2 -0
  1876. package/index.d.ts +11 -7
  1877. package/index.js +11 -7
  1878. package/index.js.map +1 -1
  1879. package/internal/BGRuler/BGRuler.js +27 -23
  1880. package/internal/BGRuler/BGRuler.js.map +1 -1
  1881. package/internal/BGRuler.d.ts +13 -15
  1882. package/internal/Calendar/Calendar/Calendar.js +113 -66
  1883. package/internal/Calendar/Calendar/Calendar.js.map +1 -1
  1884. package/internal/Calendar/Calendar.d.ts +16 -13
  1885. package/internal/Calendar/Calendar.styles/Calendar.styles.js +6 -24
  1886. package/internal/Calendar/Calendar.styles/Calendar.styles.js.map +1 -1
  1887. package/internal/Calendar/Calendar.styles.d.ts +3 -2
  1888. package/internal/Calendar/CalendarDateShape/CalendarDateShape.js.map +1 -1
  1889. package/internal/Calendar/CalendarScrollEvents/CalendarScrollEvents.js.map +1 -1
  1890. package/internal/Calendar/CalendarUtils/CalendarUtils.js +13 -13
  1891. package/internal/Calendar/CalendarUtils/CalendarUtils.js.map +1 -1
  1892. package/internal/Calendar/CalendarUtils.d.ts +5 -4
  1893. package/internal/Calendar/DayCellView/DayCellView.js +5 -14
  1894. package/internal/Calendar/DayCellView/DayCellView.js.map +1 -1
  1895. package/internal/Calendar/DayCellView.d.ts +0 -1
  1896. package/internal/Calendar/DayCellView.styles/DayCellView.styles.js +7 -46
  1897. package/internal/Calendar/DayCellView.styles/DayCellView.styles.js.map +1 -1
  1898. package/internal/Calendar/DayCellView.styles.d.ts +6 -5
  1899. package/internal/Calendar/DayCellViewModel/DayCellViewModel.js +1 -7
  1900. package/internal/Calendar/DayCellViewModel/DayCellViewModel.js.map +1 -1
  1901. package/internal/Calendar/Month/Month.js +48 -21
  1902. package/internal/Calendar/Month/Month.js.map +1 -1
  1903. package/internal/Calendar/Month.d.ts +2 -0
  1904. package/internal/Calendar/MonthView/MonthView.js +28 -24
  1905. package/internal/Calendar/MonthView/MonthView.js.map +1 -1
  1906. package/internal/Calendar/MonthView.styles/MonthView.styles.js +18 -60
  1907. package/internal/Calendar/MonthView.styles/MonthView.styles.js.map +1 -1
  1908. package/internal/Calendar/MonthView.styles.d.ts +9 -6
  1909. package/internal/Calendar/MonthViewModel/MonthViewModel.js +53 -33
  1910. package/internal/Calendar/MonthViewModel/MonthViewModel.js.map +1 -1
  1911. package/internal/Calendar/MonthViewModel.d.ts +3 -2
  1912. package/internal/Calendar/config/config.js +15 -27
  1913. package/internal/Calendar/config/config.js.map +1 -1
  1914. package/internal/Calendar/config.d.ts +2 -24
  1915. package/internal/Calendar/index/index.js.map +1 -1
  1916. package/internal/CommonWrapper/CommonWrapper/CommonWrapper.js +106 -0
  1917. package/internal/CommonWrapper/CommonWrapper/CommonWrapper.js.map +1 -0
  1918. package/internal/CommonWrapper/CommonWrapper/package.json +6 -0
  1919. package/internal/CommonWrapper/CommonWrapper.d.ts +33 -0
  1920. package/internal/CommonWrapper/index/index.js +1 -0
  1921. package/internal/CommonWrapper/index/index.js.map +1 -0
  1922. package/internal/CommonWrapper/index/package.json +6 -0
  1923. package/internal/CommonWrapper/index.d.ts +1 -0
  1924. package/internal/CommonWrapper/package.json +6 -0
  1925. package/internal/ComponentCombinator/ComponentCombinator.js +17 -13
  1926. package/internal/ComponentCombinator/ComponentCombinator.js.map +1 -1
  1927. package/internal/ComponentCombinator.d.ts +6 -8
  1928. package/internal/ComponentTable/ComponentTable.js +30 -20
  1929. package/internal/ComponentTable/ComponentTable.js.map +1 -1
  1930. package/internal/ComponentTable.d.ts +9 -8
  1931. package/internal/CustomComboBox/ComboBoxMenu/ComboBoxMenu.js +86 -45
  1932. package/internal/CustomComboBox/ComboBoxMenu/ComboBoxMenu.js.map +1 -1
  1933. package/internal/CustomComboBox/ComboBoxMenu.d.ts +15 -6
  1934. package/internal/CustomComboBox/ComboBoxView/ComboBoxView.js +208 -112
  1935. package/internal/CustomComboBox/ComboBoxView/ComboBoxView.js.map +1 -1
  1936. package/internal/CustomComboBox/ComboBoxView.d.ts +36 -16
  1937. package/internal/CustomComboBox/CustomComboBox/CustomComboBox.js +71 -54
  1938. package/internal/CustomComboBox/CustomComboBox/CustomComboBox.js.map +1 -1
  1939. package/internal/CustomComboBox/CustomComboBox.d.ts +22 -4
  1940. package/internal/CustomComboBox/CustomComboBox.styles/CustomComboBox.styles.js +7 -36
  1941. package/internal/CustomComboBox/CustomComboBox.styles/CustomComboBox.styles.js.map +1 -1
  1942. package/internal/CustomComboBox/CustomComboBox.styles.d.ts +2 -2
  1943. package/internal/CustomComboBox/CustomComboBoxReducer/CustomComboBoxReducer.js +48 -45
  1944. package/internal/CustomComboBox/CustomComboBoxReducer/CustomComboBoxReducer.js.map +1 -1
  1945. package/internal/CustomComboBox/CustomComboBoxReducer.d.ts +16 -16
  1946. package/internal/CustomComboBox/CustomComboBoxTypes/CustomComboBoxTypes.js.map +1 -1
  1947. package/internal/CustomComboBox/index/index.js.map +1 -1
  1948. package/internal/CustomComboBox/locale/index/index.js.map +1 -1
  1949. package/internal/CustomComboBox/locale/locales/en/en.js.map +1 -1
  1950. package/internal/CustomComboBox/locale/locales/ru/ru.js.map +1 -1
  1951. package/internal/CustomComboBox/locale/types/types.js +1 -0
  1952. package/internal/DataTids/DATATIDS.md +12 -0
  1953. package/internal/DataTids/DataTids/DataTids.js +69 -0
  1954. package/internal/DataTids/DataTids/DataTids.js.map +1 -0
  1955. package/internal/DataTids/DataTids/package.json +6 -0
  1956. package/internal/DataTids/DataTids.d.ts +12 -0
  1957. package/internal/DataTids/DataTids.styles/DataTids.styles.js +22 -0
  1958. package/internal/DataTids/DataTids.styles/DataTids.styles.js.map +1 -0
  1959. package/internal/DataTids/DataTids.styles/package.json +6 -0
  1960. package/internal/DataTids/DataTids.styles.d.ts +7 -0
  1961. package/internal/DataTids/componentsDataTids/componentsDataTids.js +14 -0
  1962. package/internal/DataTids/componentsDataTids/componentsDataTids.js.map +1 -0
  1963. package/internal/DataTids/componentsDataTids/package.json +6 -0
  1964. package/internal/DataTids/componentsDataTids.d.ts +5 -0
  1965. package/internal/DateSelect/DateSelect/DateSelect.js +116 -71
  1966. package/internal/DateSelect/DateSelect/DateSelect.js.map +1 -1
  1967. package/internal/DateSelect/DateSelect.d.ts +13 -8
  1968. package/internal/DateSelect/DateSelect.styles/DateSelect.styles.js +21 -180
  1969. package/internal/DateSelect/DateSelect.styles/DateSelect.styles.js.map +1 -1
  1970. package/internal/DateSelect/DateSelect.styles.d.ts +12 -11
  1971. package/internal/DateSelect/index/index.js.map +1 -1
  1972. package/internal/DropdownContainer/DropdownContainer/DropdownContainer.js +65 -67
  1973. package/internal/DropdownContainer/DropdownContainer/DropdownContainer.js.map +1 -1
  1974. package/internal/DropdownContainer/DropdownContainer.d.ts +12 -13
  1975. package/internal/DropdownContainer/DropdownContainer.styles/DropdownContainer.styles.js +10 -0
  1976. package/internal/DropdownContainer/DropdownContainer.styles/DropdownContainer.styles.js.map +1 -0
  1977. package/internal/DropdownContainer/DropdownContainer.styles/package.json +6 -0
  1978. package/internal/DropdownContainer/DropdownContainer.styles.d.ts +3 -0
  1979. package/internal/DropdownContainer/getManualPosition/getManualPosition.js +36 -0
  1980. package/internal/DropdownContainer/getManualPosition/getManualPosition.js.map +1 -0
  1981. package/internal/DropdownContainer/getManualPosition/package.json +6 -0
  1982. package/internal/DropdownContainer/getManualPosition.d.ts +19 -0
  1983. package/internal/DropdownContainer/index/index.js.map +1 -1
  1984. package/internal/FileUploaderControl/FileUploaderControlContext/FileUploaderControlContext.js +2 -0
  1985. package/internal/FileUploaderControl/FileUploaderControlContext/FileUploaderControlContext.js.map +1 -0
  1986. package/internal/FileUploaderControl/FileUploaderControlContext/package.json +6 -0
  1987. package/internal/FileUploaderControl/FileUploaderControlContext.d.ts +14 -0
  1988. package/internal/FileUploaderControl/FileUploaderControlProvider/FileUploaderControlProvider.js +95 -0
  1989. package/internal/FileUploaderControl/FileUploaderControlProvider/FileUploaderControlProvider.js.map +1 -0
  1990. package/internal/FileUploaderControl/FileUploaderControlProvider/package.json +6 -0
  1991. package/internal/FileUploaderControl/FileUploaderControlProvider.d.ts +14 -0
  1992. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile/FileUploaderFile.js +214 -0
  1993. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile/FileUploaderFile.js.map +1 -0
  1994. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile/package.json +6 -0
  1995. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.d.ts +22 -0
  1996. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.styles/FileUploaderFile.styles.js +53 -0
  1997. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.styles/FileUploaderFile.styles.js.map +1 -0
  1998. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.styles/package.json +6 -0
  1999. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.styles.d.ts +18 -0
  2000. package/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList/FileUploaderFileList.js +40 -0
  2001. package/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList/FileUploaderFileList.js.map +1 -0
  2002. package/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList/package.json +6 -0
  2003. package/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.d.ts +15 -0
  2004. package/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.styles/FileUploaderFileList.styles.js +23 -0
  2005. package/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.styles/FileUploaderFileList.styles.js.map +1 -0
  2006. package/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.styles/package.json +6 -0
  2007. package/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.styles.d.ts +8 -0
  2008. package/internal/FileUploaderControl/FileUploaderFileValidationResult/FileUploaderFileValidationResult.js +16 -0
  2009. package/internal/FileUploaderControl/FileUploaderFileValidationResult/FileUploaderFileValidationResult.js.map +1 -0
  2010. package/internal/FileUploaderControl/FileUploaderFileValidationResult/package.json +6 -0
  2011. package/internal/FileUploaderControl/FileUploaderFileValidationResult.d.ts +7 -0
  2012. package/internal/FileUploaderControl/fileUtils/fileUtils.js +19 -0
  2013. package/internal/FileUploaderControl/fileUtils/fileUtils.js.map +1 -0
  2014. package/internal/FileUploaderControl/fileUtils/package.json +6 -0
  2015. package/internal/FileUploaderControl/fileUtils.d.ts +14 -0
  2016. package/internal/FileUploaderControl/hooks/useControlLocale/package.json +6 -0
  2017. package/internal/FileUploaderControl/hooks/useControlLocale/useControlLocale.js +5 -0
  2018. package/internal/FileUploaderControl/hooks/useControlLocale/useControlLocale.js.map +1 -0
  2019. package/internal/FileUploaderControl/hooks/useControlLocale.d.ts +1 -0
  2020. package/internal/FileUploaderControl/hooks/useFileUploaderSize/package.json +6 -0
  2021. package/internal/FileUploaderControl/hooks/useFileUploaderSize/useFileUploaderSize.js +21 -0
  2022. package/internal/FileUploaderControl/hooks/useFileUploaderSize/useFileUploaderSize.js.map +1 -0
  2023. package/internal/FileUploaderControl/hooks/useFileUploaderSize.d.ts +2 -0
  2024. package/internal/FileUploaderControl/hooks/useUpload/package.json +6 -0
  2025. package/internal/FileUploaderControl/hooks/useUpload/useUpload.js +56 -0
  2026. package/internal/FileUploaderControl/hooks/useUpload/useUpload.js.map +1 -0
  2027. package/internal/FileUploaderControl/hooks/useUpload.d.ts +3 -0
  2028. package/internal/FileUploaderControl/withFileUploaderControlProvider/package.json +6 -0
  2029. package/internal/FileUploaderControl/withFileUploaderControlProvider/withFileUploaderControlProvider.js +19 -0
  2030. package/internal/FileUploaderControl/withFileUploaderControlProvider/withFileUploaderControlProvider.js.map +1 -0
  2031. package/internal/FileUploaderControl/withFileUploaderControlProvider.d.ts +3 -0
  2032. package/internal/FocusTrap/FocusTrap/FocusTrap.js +18 -12
  2033. package/internal/FocusTrap/FocusTrap/FocusTrap.js.map +1 -1
  2034. package/internal/FocusTrap/FocusTrap.d.ts +4 -2
  2035. package/internal/FocusTrap/index/index.js.map +1 -1
  2036. package/internal/HideBodyVerticalScroll/HideBodyVerticalScroll/HideBodyVerticalScroll.js +31 -68
  2037. package/internal/HideBodyVerticalScroll/HideBodyVerticalScroll/HideBodyVerticalScroll.js.map +1 -1
  2038. package/internal/HideBodyVerticalScroll/HideBodyVerticalScroll.d.ts +1 -3
  2039. package/internal/HideBodyVerticalScroll/index/index.js.map +1 -1
  2040. package/internal/IgnoreLayerClick/IgnoreLayerClick/IgnoreLayerClick.js +14 -13
  2041. package/internal/IgnoreLayerClick/IgnoreLayerClick/IgnoreLayerClick.js.map +1 -1
  2042. package/internal/IgnoreLayerClick/IgnoreLayerClick.d.ts +1 -1
  2043. package/internal/IgnoreLayerClick/index/index.js.map +1 -1
  2044. package/internal/InputLikeText/HiddenInput/HiddenInput.js +11 -20
  2045. package/internal/InputLikeText/HiddenInput/HiddenInput.js.map +1 -1
  2046. package/internal/InputLikeText/InputLikeText/InputLikeText.js +178 -114
  2047. package/internal/InputLikeText/InputLikeText/InputLikeText.js.map +1 -1
  2048. package/internal/InputLikeText/InputLikeText.d.ts +15 -5
  2049. package/internal/InputLikeText/InputLikeText.styles/InputLikeText.styles.js +10 -59
  2050. package/internal/InputLikeText/InputLikeText.styles/InputLikeText.styles.js.map +1 -1
  2051. package/internal/InputLikeText/InputLikeText.styles.d.ts +3 -3
  2052. package/internal/InputLikeText/index/index.js.map +1 -1
  2053. package/internal/InternalMenu/InternalMenu/InternalMenu.js +109 -81
  2054. package/internal/InternalMenu/InternalMenu/InternalMenu.js.map +1 -1
  2055. package/internal/InternalMenu/InternalMenu.d.ts +15 -13
  2056. package/internal/InternalMenu/InternalMenu.styles/InternalMenu.styles.js +17 -73
  2057. package/internal/InternalMenu/InternalMenu.styles/InternalMenu.styles.js.map +1 -1
  2058. package/internal/InternalMenu/InternalMenu.styles.d.ts +9 -7
  2059. package/internal/InternalMenu/addIconPaddingIfPartOfMenu/addIconPaddingIfPartOfMenu.js +14 -0
  2060. package/internal/InternalMenu/addIconPaddingIfPartOfMenu/addIconPaddingIfPartOfMenu.js.map +1 -0
  2061. package/internal/InternalMenu/addIconPaddingIfPartOfMenu/package.json +6 -0
  2062. package/internal/InternalMenu/addIconPaddingIfPartOfMenu.d.ts +2 -0
  2063. package/internal/InternalMenu/index/index.js.map +1 -1
  2064. package/internal/InternalMenu/isActiveElement/isActiveElement.js.map +1 -1
  2065. package/internal/MaskCharLowLine/MaskCharLowLine/MaskCharLowLine.js +16 -0
  2066. package/internal/MaskCharLowLine/MaskCharLowLine/MaskCharLowLine.js.map +1 -0
  2067. package/internal/MaskCharLowLine/MaskCharLowLine/package.json +6 -0
  2068. package/internal/MaskCharLowLine/MaskCharLowLine.d.ts +9 -0
  2069. package/internal/MaskCharLowLine/MaskCharLowLine.styles/MaskCharLowLine.styles.js +10 -0
  2070. package/internal/MaskCharLowLine/MaskCharLowLine.styles/MaskCharLowLine.styles.js.map +1 -0
  2071. package/internal/MaskCharLowLine/MaskCharLowLine.styles/package.json +6 -0
  2072. package/internal/MaskCharLowLine/MaskCharLowLine.styles.d.ts +3 -0
  2073. package/internal/MaskCharLowLine/index/index.js +1 -0
  2074. package/internal/MaskCharLowLine/index/index.js.map +1 -0
  2075. package/internal/MaskCharLowLine/index/package.json +6 -0
  2076. package/internal/MaskCharLowLine/index.d.ts +1 -0
  2077. package/internal/MaskCharLowLine/package.json +6 -0
  2078. package/internal/MaskedInput/MaskedInput/MaskedInput.js +70 -35
  2079. package/internal/MaskedInput/MaskedInput/MaskedInput.js.map +1 -1
  2080. package/internal/MaskedInput/MaskedInput.d.ts +9 -2
  2081. package/internal/MaskedInput/MaskedInput.styles/MaskedInput.styles.js +9 -39
  2082. package/internal/MaskedInput/MaskedInput.styles/MaskedInput.styles.js.map +1 -1
  2083. package/internal/MaskedInput/MaskedInput.styles.d.ts +4 -2
  2084. package/internal/MaskedInput/index/index.js.map +1 -1
  2085. package/internal/Menu/Menu/Menu.js +129 -92
  2086. package/internal/Menu/Menu/Menu.js.map +1 -1
  2087. package/internal/Menu/Menu.d.ts +15 -6
  2088. package/internal/Menu/Menu.styles/Menu.styles.js +23 -24
  2089. package/internal/Menu/Menu.styles/Menu.styles.js.map +1 -1
  2090. package/internal/Menu/Menu.styles.d.ts +10 -3
  2091. package/internal/Menu/index/index.js.map +1 -1
  2092. package/internal/Menu/isActiveElement/isActiveElement.js.map +1 -1
  2093. package/internal/MenuMessage/MenuMessage/MenuMessage.js +31 -0
  2094. package/internal/MenuMessage/MenuMessage/MenuMessage.js.map +1 -0
  2095. package/internal/MenuMessage/MenuMessage/package.json +6 -0
  2096. package/internal/MenuMessage/MenuMessage.d.ts +10 -0
  2097. package/internal/MenuMessage/MenuMessage.styles/MenuMessage.styles.js +23 -0
  2098. package/internal/MenuMessage/MenuMessage.styles/MenuMessage.styles.js.map +1 -0
  2099. package/internal/MenuMessage/MenuMessage.styles/package.json +6 -0
  2100. package/internal/MenuMessage/MenuMessage.styles.d.ts +5 -0
  2101. package/internal/MenuMessage/index/index.js +1 -0
  2102. package/internal/MenuMessage/index/index.js.map +1 -0
  2103. package/internal/MenuMessage/index/package.json +6 -0
  2104. package/internal/MenuMessage/index.d.ts +1 -0
  2105. package/internal/MenuMessage/package.json +6 -0
  2106. package/internal/MobilePopup/MobilePopup/MobilePopup.js +87 -0
  2107. package/internal/MobilePopup/MobilePopup/MobilePopup.js.map +1 -0
  2108. package/internal/MobilePopup/MobilePopup/package.json +6 -0
  2109. package/internal/MobilePopup/MobilePopup.d.ts +39 -0
  2110. package/internal/MobilePopup/MobilePopup.styles/MobilePopup.styles.js +29 -0
  2111. package/internal/MobilePopup/MobilePopup.styles/MobilePopup.styles.js.map +1 -0
  2112. package/internal/MobilePopup/MobilePopup.styles/package.json +6 -0
  2113. package/internal/MobilePopup/MobilePopup.styles.d.ts +10 -0
  2114. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader/MobilePopupHeader.js +42 -0
  2115. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader/MobilePopupHeader.js.map +1 -0
  2116. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader/package.json +6 -0
  2117. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.d.ts +14 -0
  2118. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.styles/MobilePopupHeader.styles.js +23 -0
  2119. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.styles/MobilePopupHeader.styles.js.map +1 -0
  2120. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.styles/package.json +6 -0
  2121. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.styles.d.ts +8 -0
  2122. package/internal/MobilePopup/MobilePopupHeader/index/index.js +1 -0
  2123. package/internal/MobilePopup/MobilePopupHeader/index/index.js.map +1 -0
  2124. package/internal/MobilePopup/MobilePopupHeader/index/package.json +6 -0
  2125. package/internal/MobilePopup/MobilePopupHeader/index.d.ts +1 -0
  2126. package/internal/MobilePopup/MobilePopupHeader/package.json +6 -0
  2127. package/internal/MobilePopup/index/index.js +1 -0
  2128. package/internal/MobilePopup/index/index.js.map +1 -0
  2129. package/internal/MobilePopup/index/package.json +6 -0
  2130. package/internal/MobilePopup/index.d.ts +1 -0
  2131. package/internal/MobilePopup/package.json +6 -0
  2132. package/internal/NativeDateInput/NativeDateInput/NativeDateInput.js +66 -0
  2133. package/internal/NativeDateInput/NativeDateInput/NativeDateInput.js.map +1 -0
  2134. package/internal/NativeDateInput/NativeDateInput/package.json +6 -0
  2135. package/internal/NativeDateInput/NativeDateInput.d.ts +23 -0
  2136. package/internal/NativeDateInput/NativeDateInput.styles/NativeDateInput.styles.js +11 -0
  2137. package/internal/NativeDateInput/NativeDateInput.styles/NativeDateInput.styles.js.map +1 -0
  2138. package/internal/NativeDateInput/NativeDateInput.styles/package.json +6 -0
  2139. package/internal/NativeDateInput/NativeDateInput.styles.d.ts +3 -0
  2140. package/internal/NativeDateInput/index/index.js +1 -0
  2141. package/internal/NativeDateInput/index/index.js.map +1 -0
  2142. package/internal/NativeDateInput/index/package.json +6 -0
  2143. package/internal/NativeDateInput/index.d.ts +1 -0
  2144. package/internal/NativeDateInput/package.json +6 -0
  2145. package/internal/NativeDateInput/utils/package.json +6 -0
  2146. package/internal/NativeDateInput/utils/utils.js +54 -0
  2147. package/internal/NativeDateInput/utils/utils.js.map +1 -0
  2148. package/internal/NativeDateInput/utils.d.ts +7 -0
  2149. package/internal/PerformanceMetrics/PerformanceMetrics/PerformanceMetrics.js +13 -16
  2150. package/internal/PerformanceMetrics/PerformanceMetrics/PerformanceMetrics.js.map +1 -1
  2151. package/internal/Popup/Popup/Popup.js +328 -186
  2152. package/internal/Popup/Popup/Popup.js.map +1 -1
  2153. package/internal/Popup/Popup.d.ts +56 -30
  2154. package/internal/Popup/Popup.styles/Popup.styles.js +16 -145
  2155. package/internal/Popup/Popup.styles/Popup.styles.js.map +1 -1
  2156. package/internal/Popup/Popup.styles.d.ts +7 -6
  2157. package/internal/Popup/PopupHelper/PopupHelper.js +5 -2
  2158. package/internal/Popup/PopupHelper/PopupHelper.js.map +1 -1
  2159. package/internal/Popup/PopupHelper.d.ts +3 -3
  2160. package/internal/Popup/PopupPin/PopupPin.js +31 -31
  2161. package/internal/Popup/PopupPin/PopupPin.js.map +1 -1
  2162. package/internal/Popup/PopupPin.d.ts +1 -1
  2163. package/internal/Popup/PopupPin.styles/PopupPin.styles.js +4 -13
  2164. package/internal/Popup/PopupPin.styles/PopupPin.styles.js.map +1 -1
  2165. package/internal/Popup/PopupPin.styles.d.ts +1 -1
  2166. package/internal/Popup/index/index.js.map +1 -1
  2167. package/internal/Popup/types/package.json +6 -0
  2168. package/internal/Popup/types/types.js +1 -0
  2169. package/internal/Popup/types.d.ts +2 -0
  2170. package/internal/PopupMenu/PopupMenu/PopupMenu.js +60 -32
  2171. package/internal/PopupMenu/PopupMenu/PopupMenu.js.map +1 -1
  2172. package/internal/PopupMenu/PopupMenu.d.ts +24 -15
  2173. package/internal/PopupMenu/PopupMenu.styles/PopupMenu.styles.js +5 -24
  2174. package/internal/PopupMenu/PopupMenu.styles/PopupMenu.styles.js.map +1 -1
  2175. package/internal/PopupMenu/PopupMenu.styles.d.ts +1 -1
  2176. package/internal/PopupMenu/index/index.js.map +1 -1
  2177. package/internal/PopupMenu/validatePositions/validatePositions.js +8 -8
  2178. package/internal/PopupMenu/validatePositions/validatePositions.js.map +1 -1
  2179. package/internal/PopupMenu/validatePositions.d.ts +2 -2
  2180. package/internal/RenderContainer/RenderContainer/RenderContainer.js +19 -12
  2181. package/internal/RenderContainer/RenderContainer/RenderContainer.js.map +1 -1
  2182. package/internal/RenderContainer/RenderContainer.d.ts +1 -1
  2183. package/internal/RenderContainer/RenderContainerTypes/RenderContainerTypes.js +1 -0
  2184. package/internal/RenderContainer/RenderContainerTypes.d.ts +6 -1
  2185. package/internal/RenderContainer/RenderInnerContainer/RenderInnerContainer.js +54 -16
  2186. package/internal/RenderContainer/RenderInnerContainer/RenderInnerContainer.js.map +1 -1
  2187. package/internal/RenderContainer/RenderInnerContainer.d.ts +10 -2
  2188. package/internal/RenderContainer/index/index.js.map +1 -1
  2189. package/internal/RenderLayer/RenderLayer/RenderLayer.js +36 -25
  2190. package/internal/RenderLayer/RenderLayer/RenderLayer.js.map +1 -1
  2191. package/internal/RenderLayer/RenderLayer.d.ts +11 -6
  2192. package/internal/RenderLayer/index/index.js.map +1 -1
  2193. package/internal/ResizeDetector/ResizeDetector/ResizeDetector.js +12 -10
  2194. package/internal/ResizeDetector/ResizeDetector/ResizeDetector.js.map +1 -1
  2195. package/internal/ResizeDetector/ResizeDetector.d.ts +1 -0
  2196. package/internal/ResizeDetector/ResizeDetector.styles/ResizeDetector.styles.js +9 -35
  2197. package/internal/ResizeDetector/ResizeDetector.styles/ResizeDetector.styles.js.map +1 -1
  2198. package/internal/ResizeDetector/ResizeDetector.styles.d.ts +2 -1
  2199. package/internal/ResizeDetector/index/index.js.map +1 -1
  2200. package/internal/TextWidthHelper/TextWidthHelper/TextWidthHelper.js +50 -0
  2201. package/internal/TextWidthHelper/TextWidthHelper/TextWidthHelper.js.map +1 -0
  2202. package/internal/TextWidthHelper/TextWidthHelper/package.json +6 -0
  2203. package/internal/TextWidthHelper/TextWidthHelper.d.ts +15 -0
  2204. package/internal/TextWidthHelper/TextWidthHelper.styles/TextWidthHelper.styles.js +14 -0
  2205. package/internal/TextWidthHelper/TextWidthHelper.styles/TextWidthHelper.styles.js.map +1 -0
  2206. package/internal/TextWidthHelper/TextWidthHelper.styles/package.json +6 -0
  2207. package/internal/TextWidthHelper/TextWidthHelper.styles.d.ts +4 -0
  2208. package/internal/ThemePlayground/AnotherInputsPlayground/AnotherInputsPlayground.js +3 -5
  2209. package/internal/ThemePlayground/AnotherInputsPlayground/AnotherInputsPlayground.js.map +1 -1
  2210. package/internal/ThemePlayground/AnotherInputsPlayground.d.ts +11 -6
  2211. package/internal/ThemePlayground/CheckboxPlayground/CheckboxPlayground.js +6 -20
  2212. package/internal/ThemePlayground/CheckboxPlayground/CheckboxPlayground.js.map +1 -1
  2213. package/internal/ThemePlayground/CheckboxPlayground.d.ts +1 -4
  2214. package/internal/ThemePlayground/ComponentsGroup/ComponentsGroup.js +7 -7
  2215. package/internal/ThemePlayground/ComponentsGroup/ComponentsGroup.js.map +1 -1
  2216. package/internal/ThemePlayground/ComponentsGroup.d.ts +1 -1
  2217. package/internal/ThemePlayground/CurrencyInputPlayground/CurrencyInputPlayground.js +2 -4
  2218. package/internal/ThemePlayground/CurrencyInputPlayground/CurrencyInputPlayground.js.map +1 -1
  2219. package/internal/ThemePlayground/CurrencyInputPlayground.d.ts +7 -6
  2220. package/internal/ThemePlayground/FxInputPlayground/FxInputPlayground.js +12 -10
  2221. package/internal/ThemePlayground/FxInputPlayground/FxInputPlayground.js.map +1 -1
  2222. package/internal/ThemePlayground/FxInputPlayground.d.ts +6 -4
  2223. package/internal/ThemePlayground/HintPlayground/HintPlayground.js +6 -8
  2224. package/internal/ThemePlayground/HintPlayground/HintPlayground.js.map +1 -1
  2225. package/internal/ThemePlayground/HintPlayground.d.ts +1 -1
  2226. package/internal/ThemePlayground/PagingPlayground/PagingPlayground.js +4 -6
  2227. package/internal/ThemePlayground/PagingPlayground/PagingPlayground.js.map +1 -1
  2228. package/internal/ThemePlayground/PagingPlayground.d.ts +6 -6
  2229. package/internal/ThemePlayground/Playground/Playground.js +107 -93
  2230. package/internal/ThemePlayground/Playground/Playground.js.map +1 -1
  2231. package/internal/ThemePlayground/Playground.d.ts +4 -2
  2232. package/internal/ThemePlayground/Playground.md +7 -7
  2233. package/internal/ThemePlayground/Playground.styles/Playground.styles.js +28 -201
  2234. package/internal/ThemePlayground/Playground.styles/Playground.styles.js.map +1 -1
  2235. package/internal/ThemePlayground/Playground.styles.d.ts +13 -10
  2236. package/internal/ThemePlayground/RadioPlayground/RadioPlayground.js +9 -23
  2237. package/internal/ThemePlayground/RadioPlayground/RadioPlayground.js.map +1 -1
  2238. package/internal/ThemePlayground/RadioPlayground.d.ts +1 -4
  2239. package/internal/ThemePlayground/SelectPlayground/SelectPlayground.js +2 -4
  2240. package/internal/ThemePlayground/SelectPlayground/SelectPlayground.js.map +1 -1
  2241. package/internal/ThemePlayground/SelectPlayground.d.ts +9 -6
  2242. package/internal/ThemePlayground/ShowcaseGroup/ShowcaseGroup.js +9 -3
  2243. package/internal/ThemePlayground/ShowcaseGroup/ShowcaseGroup.js.map +1 -1
  2244. package/internal/ThemePlayground/ShowcaseGroup.d.ts +0 -1
  2245. package/internal/ThemePlayground/SizesGroup/SizesGroup.js +29 -0
  2246. package/internal/ThemePlayground/SizesGroup/SizesGroup.js.map +1 -0
  2247. package/internal/ThemePlayground/SizesGroup/package.json +6 -0
  2248. package/internal/ThemePlayground/SizesGroup.d.ts +4 -0
  2249. package/internal/ThemePlayground/SwitcherPlayground/SwitcherPlayground.js +2 -4
  2250. package/internal/ThemePlayground/SwitcherPlayground/SwitcherPlayground.js.map +1 -1
  2251. package/internal/ThemePlayground/SwitcherPlayground.d.ts +9 -8
  2252. package/internal/ThemePlayground/ThemeContextPlayground/ThemeContextPlayground.js +55 -38
  2253. package/internal/ThemePlayground/ThemeContextPlayground/ThemeContextPlayground.js.map +1 -1
  2254. package/internal/ThemePlayground/ThemeContextPlayground.d.ts +8 -2
  2255. package/internal/ThemePlayground/ThemeEditor/ThemeEditor.js +82 -53
  2256. package/internal/ThemePlayground/ThemeEditor/ThemeEditor.js.map +1 -1
  2257. package/internal/ThemePlayground/ThemeEditor.d.ts +1 -4
  2258. package/internal/ThemePlayground/TogglePlayground/TogglePlayground.js +10 -24
  2259. package/internal/ThemePlayground/TogglePlayground/TogglePlayground.js.map +1 -1
  2260. package/internal/ThemePlayground/TogglePlayground.d.ts +2 -7
  2261. package/internal/ThemePlayground/TokenInputPlayground/TokenInputPlayground.js +5 -9
  2262. package/internal/ThemePlayground/TokenInputPlayground/TokenInputPlayground.js.map +1 -1
  2263. package/internal/ThemePlayground/TokenInputPlayground.d.ts +6 -4
  2264. package/internal/ThemePlayground/VariableValue/VariableValue.js +64 -47
  2265. package/internal/ThemePlayground/VariableValue/VariableValue.js.map +1 -1
  2266. package/internal/ThemePlayground/VariableValue.d.ts +8 -6
  2267. package/internal/ThemePlayground/constants/constants.js +25 -3
  2268. package/internal/ThemePlayground/constants/constants.js.map +1 -1
  2269. package/internal/ThemePlayground/constants.d.ts +7 -2
  2270. package/internal/ThemePlayground/darkTheme/darkTheme.js +118 -71
  2271. package/internal/ThemePlayground/darkTheme/darkTheme.js.map +1 -1
  2272. package/internal/ThemePlayground/darkTheme.d.ts +71 -311
  2273. package/internal/ThemePlayground/helpers/helpers.js +1 -2
  2274. package/internal/ThemePlayground/helpers/helpers.js.map +1 -1
  2275. package/internal/ThemePlayground/helpers.d.ts +1 -1
  2276. package/internal/ThemeShowcase/ThemeShowcase/ThemeShowcase.js +182 -183
  2277. package/internal/ThemeShowcase/ThemeShowcase/ThemeShowcase.js.map +1 -1
  2278. package/internal/ThemeShowcase/ThemeShowcase.d.ts +1 -1
  2279. package/internal/ThemeShowcase/ThemeShowcase.md +13 -13
  2280. package/internal/ThemeShowcase/ThemeShowcase.styles/ThemeShowcase.styles.js +42 -203
  2281. package/internal/ThemeShowcase/ThemeShowcase.styles/ThemeShowcase.styles.js.map +1 -1
  2282. package/internal/ThemeShowcase/ThemeShowcase.styles.d.ts +10 -3
  2283. package/internal/ThemeShowcase/VariablesCollector/VariablesCollector.js +79 -66
  2284. package/internal/ThemeShowcase/VariablesCollector/VariablesCollector.js.map +1 -1
  2285. package/internal/ThemeShowcase/VariablesCollector.d.ts +1 -1
  2286. package/internal/ZIndex/ZIndex/ZIndex.js +73 -37
  2287. package/internal/ZIndex/ZIndex/ZIndex.js.map +1 -1
  2288. package/internal/ZIndex/ZIndex.d.ts +24 -12
  2289. package/internal/ZIndex/ZIndexStorage/ZIndexStorage.js +21 -14
  2290. package/internal/ZIndex/ZIndexStorage/ZIndexStorage.js.map +1 -1
  2291. package/internal/ZIndex/ZIndexStorage.d.ts +6 -6
  2292. package/internal/ZIndex/index/index.js.map +1 -1
  2293. package/internal/icons/16px/icon.styles/icon.styles.js +5 -24
  2294. package/internal/icons/16px/icon.styles/icon.styles.js.map +1 -1
  2295. package/internal/icons/16px/icon.styles.d.ts +1 -1
  2296. package/internal/icons/16px/index/index.js +175 -67
  2297. package/internal/icons/16px/index/index.js.map +1 -1
  2298. package/internal/icons/16px/index.d.ts +20 -14
  2299. package/internal/icons/20px/Icon/Icon.js +20 -26
  2300. package/internal/icons/20px/Icon/Icon.js.map +1 -1
  2301. package/internal/icons/20px/Icon.d.ts +11 -14
  2302. package/internal/icons/20px/icon.styles/icon.styles.js +8 -28
  2303. package/internal/icons/20px/icon.styles/icon.styles.js.map +1 -1
  2304. package/internal/icons/20px/icon.styles.d.ts +2 -1
  2305. package/internal/icons/20px/index/index.js +2 -1
  2306. package/internal/icons/20px/index/index.js.map +1 -1
  2307. package/internal/icons/20px/index.d.ts +1 -0
  2308. package/internal/icons/20px/svg/package.json +6 -0
  2309. package/internal/icons/20px/svg/svg.js +115 -0
  2310. package/internal/icons/20px/svg/svg.js.map +1 -0
  2311. package/internal/icons/20px/svg.d.ts +14 -0
  2312. package/internal/icons/CloudIcon/CloudIcon.js +5 -3
  2313. package/internal/icons/CloudIcon/CloudIcon.js.map +1 -1
  2314. package/internal/icons/CloudIcon.d.ts +0 -1
  2315. package/internal/icons/CrossIcon/CrossIcon.js +6 -4
  2316. package/internal/icons/CrossIcon/CrossIcon.js.map +1 -1
  2317. package/internal/icons/CrossIcon.d.ts +0 -1
  2318. package/internal/icons/SpinnerIcon/SpinnerIcon.js +66 -10
  2319. package/internal/icons/SpinnerIcon/SpinnerIcon.js.map +1 -1
  2320. package/internal/icons/SpinnerIcon.d.ts +6 -2
  2321. package/internal/icons/SpinnerIcon.styles/SpinnerIcon.styles.js +11 -24
  2322. package/internal/icons/SpinnerIcon.styles/SpinnerIcon.styles.js.map +1 -1
  2323. package/internal/icons/SpinnerIcon.styles.d.ts +3 -1
  2324. package/internal/themes/DarkTheme/DarkTheme.js +257 -0
  2325. package/internal/themes/DarkTheme/DarkTheme.js.map +1 -0
  2326. package/internal/themes/DarkTheme/package.json +6 -0
  2327. package/internal/themes/DarkTheme.d.ts +138 -0
  2328. package/internal/themes/DefaultTheme/DefaultTheme.js +2177 -413
  2329. package/internal/themes/DefaultTheme/DefaultTheme.js.map +1 -1
  2330. package/internal/themes/DefaultTheme.d.ts +722 -202
  2331. package/internal/themes/NotFlat/NotFlat.js +310 -0
  2332. package/internal/themes/NotFlat/NotFlat.js.map +1 -0
  2333. package/internal/themes/NotFlat/package.json +6 -0
  2334. package/internal/themes/NotFlat.d.ts +133 -0
  2335. package/internal/themes/OldColors/OldColors.js +172 -0
  2336. package/internal/themes/OldColors/OldColors.js.map +1 -0
  2337. package/internal/themes/OldColors/package.json +6 -0
  2338. package/internal/themes/OldColors.d.ts +116 -0
  2339. package/internal/themes/Theme2022/Theme2022.js +79 -0
  2340. package/internal/themes/Theme2022/Theme2022.js.map +1 -0
  2341. package/internal/themes/Theme2022/package.json +6 -0
  2342. package/internal/themes/Theme2022.d.ts +67 -0
  2343. package/internal/themes/Theme2022Dark/Theme2022Dark.js +17 -0
  2344. package/internal/themes/Theme2022Dark/Theme2022Dark.js.map +1 -0
  2345. package/internal/themes/Theme2022Dark/package.json +6 -0
  2346. package/internal/themes/Theme2022Dark.d.ts +5 -0
  2347. package/lib/ConditionalHandler/ConditionalHandler.js +4 -6
  2348. package/lib/ConditionalHandler/ConditionalHandler.js.map +1 -1
  2349. package/lib/ConditionalHandler.d.ts +3 -2
  2350. package/lib/InstanceWithAnchorElement/InstanceWithAnchorElement.js +3 -0
  2351. package/lib/InstanceWithAnchorElement/InstanceWithAnchorElement.js.map +1 -0
  2352. package/lib/InstanceWithAnchorElement/package.json +6 -0
  2353. package/lib/InstanceWithAnchorElement.d.ts +5 -0
  2354. package/lib/LayoutEvents/LayoutEvents.js +12 -4
  2355. package/lib/LayoutEvents/LayoutEvents.js.map +1 -1
  2356. package/lib/ModalStack/ModalStack.js +63 -5
  2357. package/lib/ModalStack/ModalStack.js.map +1 -1
  2358. package/lib/ModalStack.d.ts +6 -1
  2359. package/lib/SSRSafe/SSRSafe.js +30 -2
  2360. package/lib/SSRSafe/SSRSafe.js.map +1 -1
  2361. package/lib/SSRSafe.d.ts +5 -0
  2362. package/lib/Supports/Supports.js.map +1 -1
  2363. package/lib/Upgrades/Upgrades.js +16 -0
  2364. package/lib/Upgrades/Upgrades.js.map +1 -1
  2365. package/lib/Upgrades.d.ts +2 -0
  2366. package/lib/animation/index/index.js +2 -2
  2367. package/lib/animation/index/index.js.map +1 -1
  2368. package/lib/animation/index.d.ts +1 -1
  2369. package/lib/animation/presets/presets.js.map +1 -1
  2370. package/lib/animation/stepper/stepper.js.map +1 -1
  2371. package/lib/callChildRef/callChildRef/callChildRef.js +14 -0
  2372. package/lib/callChildRef/callChildRef/callChildRef.js.map +1 -0
  2373. package/lib/callChildRef/callChildRef/package.json +6 -0
  2374. package/lib/callChildRef/callChildRef.d.ts +3 -0
  2375. package/lib/client/client.js +16 -0
  2376. package/lib/client/client.js.map +1 -0
  2377. package/lib/client/package.json +6 -0
  2378. package/lib/client.d.ts +16 -0
  2379. package/lib/createPropsGetter/createPropsGetter.js +1 -0
  2380. package/lib/createPropsGetter/createPropsGetter.js.map +1 -1
  2381. package/lib/createPropsGetter.d.ts +2 -1
  2382. package/lib/currentEnvironment/currentEnvironment.js +34 -3
  2383. package/lib/currentEnvironment/currentEnvironment.js.map +1 -1
  2384. package/lib/date/InternalDate/InternalDate.js +21 -10
  2385. package/lib/date/InternalDate/InternalDate.js.map +1 -1
  2386. package/lib/date/InternalDateCalculator/InternalDateCalculator.js +16 -7
  2387. package/lib/date/InternalDateCalculator/InternalDateCalculator.js.map +1 -1
  2388. package/lib/date/InternalDateCalculator.d.ts +1 -1
  2389. package/lib/date/InternalDateGetter/InternalDateGetter.js +24 -10
  2390. package/lib/date/InternalDateGetter/InternalDateGetter.js.map +1 -1
  2391. package/lib/date/InternalDateGetter.d.ts +1 -1
  2392. package/lib/date/InternalDateSetter/InternalDateSetter.js +1 -3
  2393. package/lib/date/InternalDateSetter/InternalDateSetter.js.map +1 -1
  2394. package/lib/date/InternalDateTransformer/InternalDateTransformer.js +12 -4
  2395. package/lib/date/InternalDateTransformer/InternalDateTransformer.js.map +1 -1
  2396. package/lib/date/InternalDateTransformer.d.ts +6 -6
  2397. package/lib/date/InternalDateValidator/InternalDateValidator.js +84 -39
  2398. package/lib/date/InternalDateValidator/InternalDateValidator.js.map +1 -1
  2399. package/lib/date/InternalDateValidator.d.ts +1 -1
  2400. package/lib/date/constants/constants.js.map +1 -1
  2401. package/lib/date/localeSets/localeSets.js.map +1 -1
  2402. package/lib/date/types/types.js.map +1 -1
  2403. package/lib/date/types.d.ts +4 -0
  2404. package/lib/dom/getDOMRect/getDOMRect.js +40 -0
  2405. package/lib/dom/getDOMRect/getDOMRect.js.map +1 -0
  2406. package/lib/dom/getDOMRect/package.json +6 -0
  2407. package/lib/dom/getDOMRect.d.ts +11 -0
  2408. package/lib/dom/getScrollWidth/getScrollWidth.js +1 -1
  2409. package/lib/dom/getScrollWidth/getScrollWidth.js.map +1 -1
  2410. package/lib/dom/tabbableHelpers/package.json +6 -0
  2411. package/lib/dom/tabbableHelpers/tabbableHelpers.js +34 -0
  2412. package/lib/dom/tabbableHelpers/tabbableHelpers.js.map +1 -0
  2413. package/lib/dom/tabbableHelpers.d.ts +16 -0
  2414. package/lib/events/MouseDrag/MouseDrag.js +37 -33
  2415. package/lib/events/MouseDrag/MouseDrag.js.map +1 -1
  2416. package/lib/events/fixClickFocusIE/fixClickFocusIE.js +2 -2
  2417. package/lib/events/fixClickFocusIE/fixClickFocusIE.js.map +1 -1
  2418. package/lib/events/fixFirefoxModifiedClickOnLabel/fixFirefoxModifiedClickOnLabel.js +19 -0
  2419. package/lib/events/fixFirefoxModifiedClickOnLabel/fixFirefoxModifiedClickOnLabel.js.map +1 -0
  2420. package/lib/events/fixFirefoxModifiedClickOnLabel/package.json +6 -0
  2421. package/lib/events/fixFirefoxModifiedClickOnLabel.d.ts +2 -0
  2422. package/lib/events/keyListener/keyListener.js +22 -0
  2423. package/lib/events/keyListener/keyListener.js.map +1 -0
  2424. package/lib/events/keyListener/package.json +6 -0
  2425. package/lib/events/keyListener.d.ts +7 -0
  2426. package/lib/events/keyboard/KeyboardEventCodes/KeyboardEventCodes.js.map +1 -1
  2427. package/lib/events/keyboard/KeyboardMapKeys/KeyboardMapKeys.js +4 -2
  2428. package/lib/events/keyboard/KeyboardMapKeys/KeyboardMapKeys.js.map +1 -1
  2429. package/lib/events/keyboard/KeyboardMapKeys.d.ts +2 -2
  2430. package/lib/events/keyboard/extractCode/extractCode.js +5 -5
  2431. package/lib/events/keyboard/extractCode/extractCode.js.map +1 -1
  2432. package/lib/events/keyboard/identifiers/identifiers.js +13 -2
  2433. package/lib/events/keyboard/identifiers/identifiers.js.map +1 -1
  2434. package/lib/events/keyboard/identifiers.d.ts +1 -0
  2435. package/lib/events/stopPropagation/stopPropagation.js.map +1 -1
  2436. package/lib/events/tabListener/tabListener.js +2 -15
  2437. package/lib/events/tabListener/tabListener.js.map +1 -1
  2438. package/lib/events/tabListener.d.ts +1 -6
  2439. package/lib/extractKeyboardAction/extractKeyboardAction.js +1 -4
  2440. package/lib/extractKeyboardAction/extractKeyboardAction.js.map +1 -1
  2441. package/lib/extractKeyboardAction.d.ts +1 -1
  2442. package/lib/filterProps/filterProps.js +0 -1
  2443. package/lib/filterProps/filterProps.js.map +1 -1
  2444. package/lib/forwardRefAndName/forwardRefAndName.js +11 -0
  2445. package/lib/forwardRefAndName/forwardRefAndName.js.map +1 -0
  2446. package/lib/forwardRefAndName/package.json +6 -0
  2447. package/lib/forwardRefAndName.d.ts +5 -0
  2448. package/lib/getDisplayName/getDisplayName.js +3 -0
  2449. package/lib/getDisplayName/getDisplayName.js.map +1 -0
  2450. package/lib/getDisplayName/package.json +6 -0
  2451. package/lib/getDisplayName.d.ts +3 -0
  2452. package/lib/listenFocusOutside/listenFocusOutside.js +18 -17
  2453. package/lib/listenFocusOutside/listenFocusOutside.js.map +1 -1
  2454. package/lib/listenFocusOutside.d.ts +5 -1
  2455. package/lib/locale/LOCALECONTEXT.md +222 -246
  2456. package/lib/locale/LocaleContext/LocaleContext.js +3 -2
  2457. package/lib/locale/LocaleContext/LocaleContext.js.map +1 -1
  2458. package/lib/locale/LocaleHelper/LocaleHelper.js +1 -5
  2459. package/lib/locale/LocaleHelper/LocaleHelper.js.map +1 -1
  2460. package/lib/locale/constants/constants.js.map +1 -1
  2461. package/lib/locale/decorators/decorators.js +9 -7
  2462. package/lib/locale/decorators/decorators.js.map +1 -1
  2463. package/lib/locale/decorators.d.ts +4 -3
  2464. package/lib/locale/index/index.js.map +1 -1
  2465. package/lib/locale/types/types.js.map +1 -1
  2466. package/lib/locale/types.d.ts +3 -6
  2467. package/lib/locale/useLocaleForControl/package.json +6 -0
  2468. package/lib/locale/useLocaleForControl/useLocaleForControl.js +12 -0
  2469. package/lib/locale/useLocaleForControl/useLocaleForControl.js.map +1 -0
  2470. package/lib/locale/useLocaleForControl.d.ts +3 -0
  2471. package/lib/memo/memo.js +2 -4
  2472. package/lib/memo/memo.js.map +1 -1
  2473. package/lib/memo.d.ts +3 -1
  2474. package/lib/needsPolyfillPlaceholder/needsPolyfillPlaceholder.js +21 -0
  2475. package/lib/needsPolyfillPlaceholder/needsPolyfillPlaceholder.js.map +1 -0
  2476. package/lib/needsPolyfillPlaceholder/package.json +6 -0
  2477. package/lib/needsPolyfillPlaceholder.d.ts +6 -0
  2478. package/lib/net/fetch/fetch.js +2 -2
  2479. package/lib/net/fetch/fetch.js.map +1 -1
  2480. package/lib/reactGetTextContent/reactGetTextContent.js +1 -2
  2481. package/lib/reactGetTextContent/reactGetTextContent.js.map +1 -1
  2482. package/lib/rootNode/getRootNode/getRootNode.js +71 -0
  2483. package/lib/rootNode/getRootNode/getRootNode.js.map +1 -0
  2484. package/lib/rootNode/getRootNode/package.json +6 -0
  2485. package/lib/rootNode/getRootNode.d.ts +12 -0
  2486. package/lib/rootNode/index/index.js +2 -0
  2487. package/lib/rootNode/index/index.js.map +1 -0
  2488. package/lib/rootNode/index/package.json +6 -0
  2489. package/lib/rootNode/index.d.ts +2 -0
  2490. package/lib/rootNode/package.json +6 -0
  2491. package/lib/rootNode/rootNodeDecorator/package.json +6 -0
  2492. package/lib/rootNode/rootNodeDecorator/rootNodeDecorator.js +59 -0
  2493. package/lib/rootNode/rootNodeDecorator/rootNodeDecorator.js.map +1 -0
  2494. package/lib/rootNode/rootNodeDecorator.d.ts +52 -0
  2495. package/lib/stringUtils/package.json +6 -0
  2496. package/lib/stringUtils/stringUtils.js +15 -0
  2497. package/lib/stringUtils/stringUtils.js.map +1 -0
  2498. package/lib/stringUtils.d.ts +1 -0
  2499. package/lib/styles/ColorFactory/ColorFactory.js +14 -14
  2500. package/lib/styles/ColorFactory/ColorFactory.js.map +1 -1
  2501. package/lib/styles/ColorFunctions/ColorFunctions.js +2 -2
  2502. package/lib/styles/ColorFunctions/ColorFunctions.js.map +1 -1
  2503. package/lib/styles/ColorHelpers/ColorHelpers.js +26 -9
  2504. package/lib/styles/ColorHelpers/ColorHelpers.js.map +1 -1
  2505. package/lib/styles/ColorHelpers.d.ts +1 -0
  2506. package/lib/styles/ColorKeywords/ColorKeywords.js.map +1 -1
  2507. package/lib/styles/ColorObject/ColorObject.js +10 -8
  2508. package/lib/styles/ColorObject/ColorObject.js.map +1 -1
  2509. package/lib/styles/ColorObject.d.ts +1 -0
  2510. package/lib/styles/DimensionFunctions/DimensionFunctions.js.map +1 -1
  2511. package/lib/styles/HoldSelectionColor/HoldSelectionColor.js +9 -0
  2512. package/lib/styles/HoldSelectionColor/HoldSelectionColor.js.map +1 -0
  2513. package/lib/styles/HoldSelectionColor/package.json +6 -0
  2514. package/lib/styles/HoldSelectionColor.d.ts +1 -0
  2515. package/lib/styles/Mixins/Mixins.js +3 -21
  2516. package/lib/styles/Mixins/Mixins.js.map +1 -1
  2517. package/lib/styles/getLabGrotesqueBaselineCompensation/getLabGrotesqueBaselineCompensation.js +9 -0
  2518. package/lib/styles/getLabGrotesqueBaselineCompensation/getLabGrotesqueBaselineCompensation.js.map +1 -0
  2519. package/lib/styles/getLabGrotesqueBaselineCompensation/package.json +6 -0
  2520. package/lib/styles/getLabGrotesqueBaselineCompensation.d.ts +1 -0
  2521. package/lib/taskWithDelayAndMinimalDuration/package.json +6 -0
  2522. package/lib/taskWithDelayAndMinimalDuration/taskWithDelayAndMinimalDuration.js +76 -0
  2523. package/lib/taskWithDelayAndMinimalDuration/taskWithDelayAndMinimalDuration.js.map +1 -0
  2524. package/lib/taskWithDelayAndMinimalDuration.d.ts +21 -0
  2525. package/lib/theming/AnimationKeyframes/AnimationKeyframes.js +8 -72
  2526. package/lib/theming/AnimationKeyframes/AnimationKeyframes.js.map +1 -1
  2527. package/lib/theming/AnimationKeyframes.d.ts +5 -6
  2528. package/lib/theming/Emotion/Emotion.js +24 -9
  2529. package/lib/theming/Emotion/Emotion.js.map +1 -1
  2530. package/lib/theming/Emotion.d.ts +11 -10
  2531. package/lib/theming/Theme/Theme.js +1 -0
  2532. package/lib/theming/Theme.d.ts +1 -2
  2533. package/lib/theming/ThemeContext/ThemeContext.js +2 -1
  2534. package/lib/theming/ThemeContext/ThemeContext.js.map +1 -1
  2535. package/lib/theming/ThemeContext.d.ts +1 -1
  2536. package/lib/theming/ThemeContext.md +285 -237
  2537. package/lib/theming/ThemeFactory/ThemeFactory.js +29 -24
  2538. package/lib/theming/ThemeFactory/ThemeFactory.js.map +1 -1
  2539. package/lib/theming/ThemeFactory.d.ts +3 -3
  2540. package/lib/theming/ThemeHelpers/ThemeHelpers.js +54 -0
  2541. package/lib/theming/ThemeHelpers/ThemeHelpers.js.map +1 -0
  2542. package/lib/theming/ThemeHelpers/package.json +6 -0
  2543. package/lib/theming/ThemeHelpers.d.ts +15 -0
  2544. package/lib/theming/themes/DarkTheme/DarkTheme.js +4 -0
  2545. package/lib/theming/themes/DarkTheme/DarkTheme.js.map +1 -0
  2546. package/lib/theming/themes/DarkTheme/package.json +6 -0
  2547. package/lib/theming/themes/DarkTheme.d.ts +1 -0
  2548. package/lib/theming/themes/DefaultTheme/DefaultTheme.js +2 -1
  2549. package/lib/theming/themes/DefaultTheme/DefaultTheme.js.map +1 -1
  2550. package/lib/theming/themes/DefaultTheme.d.ts +1 -1
  2551. package/lib/theming/themes/DefaultTheme8pxOld/DefaultTheme8pxOld.js +5 -0
  2552. package/lib/theming/themes/DefaultTheme8pxOld/DefaultTheme8pxOld.js.map +1 -0
  2553. package/lib/theming/themes/DefaultTheme8pxOld/package.json +6 -0
  2554. package/lib/theming/themes/DefaultTheme8pxOld.d.ts +1 -0
  2555. package/lib/theming/themes/DefaultThemeMobile/DefaultThemeMobile.js +5 -0
  2556. package/lib/theming/themes/DefaultThemeMobile/DefaultThemeMobile.js.map +1 -0
  2557. package/lib/theming/themes/DefaultThemeMobile/package.json +6 -0
  2558. package/lib/theming/themes/DefaultThemeMobile.d.ts +3 -0
  2559. package/lib/theming/themes/FlatTheme8pxOld/FlatTheme8pxOld.js +4 -0
  2560. package/lib/theming/themes/FlatTheme8pxOld/FlatTheme8pxOld.js.map +1 -0
  2561. package/lib/theming/themes/FlatTheme8pxOld/package.json +6 -0
  2562. package/lib/theming/themes/FlatTheme8pxOld.d.ts +1 -0
  2563. package/lib/theming/themes/Theme2022/Theme2022.js +4 -0
  2564. package/lib/theming/themes/Theme2022/Theme2022.js.map +1 -0
  2565. package/lib/theming/themes/Theme2022/package.json +6 -0
  2566. package/lib/theming/themes/Theme2022.d.ts +1 -0
  2567. package/lib/theming/themes/Theme2022Dark/Theme2022Dark.js +6 -0
  2568. package/lib/theming/themes/Theme2022Dark/Theme2022Dark.js.map +1 -0
  2569. package/lib/theming/themes/Theme2022Dark/package.json +6 -0
  2570. package/lib/theming/themes/Theme2022Dark.d.ts +1 -0
  2571. package/lib/theming/useTheme/package.json +6 -0
  2572. package/lib/theming/useTheme/useTheme.js +5 -0
  2573. package/lib/theming/useTheme/useTheme.js.map +1 -0
  2574. package/lib/theming/useTheme.d.ts +1 -0
  2575. package/lib/uidUtils/package.json +6 -0
  2576. package/lib/uidUtils/uidUtils.js +4 -0
  2577. package/lib/uidUtils/uidUtils.js.map +1 -0
  2578. package/lib/uidUtils.d.ts +1 -0
  2579. package/lib/utils/utils.js +156 -29
  2580. package/lib/utils/utils.js.map +1 -1
  2581. package/lib/utils.d.ts +67 -12
  2582. package/lib/withClassWrapper/package.json +6 -0
  2583. package/lib/withClassWrapper/withClassWrapper.js +67 -0
  2584. package/lib/withClassWrapper/withClassWrapper.js.map +1 -0
  2585. package/lib/withClassWrapper.d.ts +71 -0
  2586. package/package.json +138 -23
  2587. package/typings/console.d.ts +3 -3
  2588. package/typings/event-types.d.ts +4 -4
  2589. package/typings/fonts.d.ts +12 -12
  2590. package/typings/global.d.ts +6 -6
  2591. package/typings/html.d.ts +123 -0
  2592. package/typings/images.d.ts +1 -1
  2593. package/typings/normalize-wheel.d.ts +5 -5
  2594. package/typings/stories.d.ts +7 -0
  2595. package/typings/stylis-plugin-extra-scope.d.ts +3 -3
  2596. package/typings/utility-types.d.ts +14 -14
  2597. package/cjs/components/Button/Corners.d.ts +0 -6
  2598. package/cjs/components/Button/Corners.js +0 -5
  2599. package/cjs/components/Button/Corners.js.map +0 -1
  2600. package/cjs/components/Fias/Fias.d.ts +0 -130
  2601. package/cjs/components/Fias/Fias.js +0 -343
  2602. package/cjs/components/Fias/Fias.js.map +0 -1
  2603. package/cjs/components/Fias/Fias.md +0 -451
  2604. package/cjs/components/Fias/Fias.styles.d.ts +0 -4
  2605. package/cjs/components/Fias/Fias.styles.js +0 -15
  2606. package/cjs/components/Fias/Fias.styles.js.map +0 -1
  2607. package/cjs/components/Fias/FiasModal.d.ts +0 -15
  2608. package/cjs/components/Fias/FiasModal.js +0 -44
  2609. package/cjs/components/Fias/FiasModal.js.map +0 -1
  2610. package/cjs/components/Fias/FiasSearch/FiasSearch.d.ts +0 -56
  2611. package/cjs/components/Fias/FiasSearch/FiasSearch.js +0 -129
  2612. package/cjs/components/Fias/FiasSearch/FiasSearch.js.map +0 -1
  2613. package/cjs/components/Fias/FiasSearch/FiasSearch.md +0 -78
  2614. package/cjs/components/Fias/Form/FiasComboBox.d.ts +0 -34
  2615. package/cjs/components/Fias/Form/FiasComboBox.js +0 -136
  2616. package/cjs/components/Fias/Form/FiasComboBox.js.map +0 -1
  2617. package/cjs/components/Fias/Form/FiasCountrySelector.d.ts +0 -19
  2618. package/cjs/components/Fias/Form/FiasCountrySelector.js +0 -87
  2619. package/cjs/components/Fias/Form/FiasCountrySelector.js.map +0 -1
  2620. package/cjs/components/Fias/Form/FiasForm.d.ts +0 -70
  2621. package/cjs/components/Fias/Form/FiasForm.js +0 -547
  2622. package/cjs/components/Fias/Form/FiasForm.js.map +0 -1
  2623. package/cjs/components/Fias/Form/FiasForm.styles.d.ts +0 -5
  2624. package/cjs/components/Fias/Form/FiasForm.styles.js +0 -24
  2625. package/cjs/components/Fias/Form/FiasForm.styles.js.map +0 -1
  2626. package/cjs/components/Fias/api/FiasAPI.d.ts +0 -26
  2627. package/cjs/components/Fias/api/FiasAPI.js +0 -288
  2628. package/cjs/components/Fias/api/FiasAPI.js.map +0 -1
  2629. package/cjs/components/Fias/api/FiasAPIResultFactory.d.ts +0 -5
  2630. package/cjs/components/Fias/api/FiasAPIResultFactory.js +0 -16
  2631. package/cjs/components/Fias/api/FiasAPIResultFactory.js.map +0 -1
  2632. package/cjs/components/Fias/api/FiasMockAPI.d.ts +0 -8
  2633. package/cjs/components/Fias/api/FiasMockAPI.js +0 -66
  2634. package/cjs/components/Fias/api/FiasMockAPI.js.map +0 -1
  2635. package/cjs/components/Fias/api/data.json +0 -285
  2636. package/cjs/components/Fias/constants/abbreviations.d.ts +0 -3
  2637. package/cjs/components/Fias/constants/abbreviations.js +0 -158
  2638. package/cjs/components/Fias/constants/abbreviations.js.map +0 -1
  2639. package/cjs/components/Fias/index.d.ts +0 -5
  2640. package/cjs/components/Fias/index.js +0 -5
  2641. package/cjs/components/Fias/index.js.map +0 -1
  2642. package/cjs/components/Fias/locale/index.d.ts +0 -4
  2643. package/cjs/components/Fias/locale/index.js +0 -9
  2644. package/cjs/components/Fias/locale/index.js.map +0 -1
  2645. package/cjs/components/Fias/locale/locales/ru.d.ts +0 -2
  2646. package/cjs/components/Fias/locale/locales/ru.js +0 -72
  2647. package/cjs/components/Fias/locale/locales/ru.js.map +0 -1
  2648. package/cjs/components/Fias/locale/types.d.ts +0 -56
  2649. package/cjs/components/Fias/locale/types.js +0 -1
  2650. package/cjs/components/Fias/logger/FiasLogger.d.ts +0 -8
  2651. package/cjs/components/Fias/logger/FiasLogger.js +0 -12
  2652. package/cjs/components/Fias/logger/FiasLogger.js.map +0 -1
  2653. package/cjs/components/Fias/models/FiasAddress.d.ts +0 -96
  2654. package/cjs/components/Fias/models/FiasAddress.js +0 -576
  2655. package/cjs/components/Fias/models/FiasAddress.js.map +0 -1
  2656. package/cjs/components/Fias/models/FiasAddressElement.d.ts +0 -18
  2657. package/cjs/components/Fias/models/FiasAddressElement.js +0 -187
  2658. package/cjs/components/Fias/models/FiasAddressElement.js.map +0 -1
  2659. package/cjs/components/Fias/models/FiasData.d.ts +0 -20
  2660. package/cjs/components/Fias/models/FiasData.js +0 -106
  2661. package/cjs/components/Fias/models/FiasData.js.map +0 -1
  2662. package/cjs/components/Fias/types.d.ts +0 -142
  2663. package/cjs/components/Fias/types.js +0 -109
  2664. package/cjs/components/Fias/types.js.map +0 -1
  2665. package/cjs/components/LocaleProvider/LocaleProvider.d.ts +0 -24
  2666. package/cjs/components/LocaleProvider/LocaleProvider.js +0 -43
  2667. package/cjs/components/LocaleProvider/LocaleProvider.js.map +0 -1
  2668. package/cjs/components/LocaleProvider/index.d.ts +0 -1
  2669. package/cjs/components/LocaleProvider/index.js +0 -1
  2670. package/cjs/components/LocaleProvider/index.js.map +0 -1
  2671. package/cjs/components/Logotype/Logotype.d.ts +0 -82
  2672. package/cjs/components/Logotype/Logotype.js +0 -203
  2673. package/cjs/components/Logotype/Logotype.js.map +0 -1
  2674. package/cjs/components/Logotype/Logotype.md +0 -33
  2675. package/cjs/components/Logotype/Logotype.styles.d.ts +0 -10
  2676. package/cjs/components/Logotype/Logotype.styles.js +0 -91
  2677. package/cjs/components/Logotype/Logotype.styles.js.map +0 -1
  2678. package/cjs/components/Logotype/ProductWidget.d.ts +0 -3
  2679. package/cjs/components/Logotype/ProductWidget.js +0 -17
  2680. package/cjs/components/Logotype/ProductWidget.js.map +0 -1
  2681. package/cjs/components/Logotype/index.d.ts +0 -1
  2682. package/cjs/components/Logotype/index.js +0 -1
  2683. package/cjs/components/Logotype/index.js.map +0 -1
  2684. package/cjs/components/Logotype/locale/index.d.ts +0 -4
  2685. package/cjs/components/Logotype/locale/index.js +0 -11
  2686. package/cjs/components/Logotype/locale/index.js.map +0 -1
  2687. package/cjs/components/Logotype/locale/locales/en.d.ts +0 -2
  2688. package/cjs/components/Logotype/locale/locales/en.js +0 -5
  2689. package/cjs/components/Logotype/locale/locales/en.js.map +0 -1
  2690. package/cjs/components/Logotype/locale/locales/ru.d.ts +0 -2
  2691. package/cjs/components/Logotype/locale/locales/ru.js +0 -5
  2692. package/cjs/components/Logotype/locale/locales/ru.js.map +0 -1
  2693. package/cjs/components/Logotype/locale/types.d.ts +0 -4
  2694. package/cjs/components/Logotype/locale/types.js +0 -1
  2695. package/cjs/components/Modal/helpers.d.ts +0 -6
  2696. package/cjs/components/Modal/helpers.js +0 -20
  2697. package/cjs/components/Modal/helpers.js.map +0 -1
  2698. package/cjs/components/Spinner/SpinnerFallback.d.ts +0 -29
  2699. package/cjs/components/Spinner/SpinnerFallback.js +0 -104
  2700. package/cjs/components/Spinner/SpinnerFallback.js.map +0 -1
  2701. package/cjs/components/Spinner/fallback_circle.png +0 -0
  2702. package/cjs/components/Spinner/fallback_circle_big.png +0 -0
  2703. package/cjs/components/Spinner/fallback_circle_dimmed.png +0 -0
  2704. package/cjs/components/Spinner/fallback_circle_mini.png +0 -0
  2705. package/cjs/components/Spinner/fallback_circle_normal.png +0 -0
  2706. package/cjs/components/Spinner/fallback_cloud_big.png +0 -0
  2707. package/cjs/components/Spinner/fallback_cloud_normal.png +0 -0
  2708. package/cjs/components/ThemeConsumer/ThemeConsumer.d.ts +0 -10
  2709. package/cjs/components/ThemeConsumer/ThemeConsumer.js +0 -17
  2710. package/cjs/components/ThemeConsumer/ThemeConsumer.js.map +0 -1
  2711. package/cjs/components/ThemeConsumer/index.d.ts +0 -1
  2712. package/cjs/components/ThemeConsumer/index.js +0 -1
  2713. package/cjs/components/ThemeConsumer/index.js.map +0 -1
  2714. package/cjs/components/ThemeProvider/ThemeProvider.d.ts +0 -16
  2715. package/cjs/components/ThemeProvider/ThemeProvider.js +0 -56
  2716. package/cjs/components/ThemeProvider/ThemeProvider.js.map +0 -1
  2717. package/cjs/components/ThemeProvider/index.d.ts +0 -1
  2718. package/cjs/components/ThemeProvider/index.js +0 -1
  2719. package/cjs/components/ThemeProvider/index.js.map +0 -1
  2720. package/cjs/components/TopBar/TopBar.d.ts +0 -113
  2721. package/cjs/components/TopBar/TopBar.js +0 -257
  2722. package/cjs/components/TopBar/TopBar.js.map +0 -1
  2723. package/cjs/components/TopBar/TopBar.md +0 -111
  2724. package/cjs/components/TopBar/TopBar.styles.d.ts +0 -24
  2725. package/cjs/components/TopBar/TopBar.styles.js +0 -198
  2726. package/cjs/components/TopBar/TopBar.styles.js.map +0 -1
  2727. package/cjs/components/TopBar/TopBarButtonItem.d.ts +0 -25
  2728. package/cjs/components/TopBar/TopBarButtonItem.js +0 -35
  2729. package/cjs/components/TopBar/TopBarButtonItem.js.map +0 -1
  2730. package/cjs/components/TopBar/TopBarDivider.d.ts +0 -11
  2731. package/cjs/components/TopBar/TopBarDivider.js +0 -17
  2732. package/cjs/components/TopBar/TopBarDivider.js.map +0 -1
  2733. package/cjs/components/TopBar/TopBarDropdown.d.ts +0 -29
  2734. package/cjs/components/TopBar/TopBarDropdown.js +0 -82
  2735. package/cjs/components/TopBar/TopBarDropdown.js.map +0 -1
  2736. package/cjs/components/TopBar/TopBarEnd.d.ts +0 -7
  2737. package/cjs/components/TopBar/TopBarEnd.js +0 -12
  2738. package/cjs/components/TopBar/TopBarEnd.js.map +0 -1
  2739. package/cjs/components/TopBar/TopBarItem.d.ts +0 -32
  2740. package/cjs/components/TopBar/TopBarItem.js +0 -70
  2741. package/cjs/components/TopBar/TopBarItem.js.map +0 -1
  2742. package/cjs/components/TopBar/TopBarLogout.d.ts +0 -15
  2743. package/cjs/components/TopBar/TopBarLogout.js +0 -22
  2744. package/cjs/components/TopBar/TopBarLogout.js.map +0 -1
  2745. package/cjs/components/TopBar/TopBarOrganizations.d.ts +0 -30
  2746. package/cjs/components/TopBar/TopBarOrganizations.js +0 -106
  2747. package/cjs/components/TopBar/TopBarOrganizations.js.map +0 -1
  2748. package/cjs/components/TopBar/TopBarStart.d.ts +0 -7
  2749. package/cjs/components/TopBar/TopBarStart.js +0 -12
  2750. package/cjs/components/TopBar/TopBarStart.js.map +0 -1
  2751. package/cjs/components/TopBar/TopBarUser.d.ts +0 -26
  2752. package/cjs/components/TopBar/TopBarUser.js +0 -58
  2753. package/cjs/components/TopBar/TopBarUser.js.map +0 -1
  2754. package/cjs/components/TopBar/index.d.ts +0 -10
  2755. package/cjs/components/TopBar/index.js +0 -10
  2756. package/cjs/components/TopBar/index.js.map +0 -1
  2757. package/cjs/components/TopBar/locale/index.d.ts +0 -4
  2758. package/cjs/components/TopBar/locale/index.js +0 -11
  2759. package/cjs/components/TopBar/locale/index.js.map +0 -1
  2760. package/cjs/components/TopBar/locale/locales/en.d.ts +0 -2
  2761. package/cjs/components/TopBar/locale/locales/en.js +0 -7
  2762. package/cjs/components/TopBar/locale/locales/en.js.map +0 -1
  2763. package/cjs/components/TopBar/locale/locales/ru.d.ts +0 -2
  2764. package/cjs/components/TopBar/locale/locales/ru.js +0 -7
  2765. package/cjs/components/TopBar/locale/locales/ru.js.map +0 -1
  2766. package/cjs/components/TopBar/locale/types.d.ts +0 -6
  2767. package/cjs/components/TopBar/locale/types.js +0 -1
  2768. package/cjs/internal/MaskedInput/mask-char-font/font.eot +0 -0
  2769. package/cjs/internal/MaskedInput/mask-char-font/font.woff +0 -0
  2770. package/cjs/internal/MaskedInput/mask-char-font/font.woff2 +0 -0
  2771. package/cjs/internal/PopupMenu/PopupMenuPositions.d.ts +0 -2
  2772. package/cjs/internal/PopupMenu/PopupMenuPositions.js +0 -15
  2773. package/cjs/internal/PopupMenu/PopupMenuPositions.js.map +0 -1
  2774. package/cjs/internal/SpinnerOld/SpinnerOld.d.ts +0 -47
  2775. package/cjs/internal/SpinnerOld/SpinnerOld.js +0 -128
  2776. package/cjs/internal/SpinnerOld/SpinnerOld.js.map +0 -1
  2777. package/cjs/internal/SpinnerOld/SpinnerOld.styles.d.ts +0 -14
  2778. package/cjs/internal/SpinnerOld/SpinnerOld.styles.js +0 -94
  2779. package/cjs/internal/SpinnerOld/SpinnerOld.styles.js.map +0 -1
  2780. package/cjs/internal/SpinnerOld/SpinnerOldFallback.d.ts +0 -30
  2781. package/cjs/internal/SpinnerOld/SpinnerOldFallback.js +0 -120
  2782. package/cjs/internal/SpinnerOld/SpinnerOldFallback.js.map +0 -1
  2783. package/cjs/internal/SpinnerOld/fallback_circle.png +0 -0
  2784. package/cjs/internal/SpinnerOld/fallback_circle_dimmed.png +0 -0
  2785. package/cjs/internal/SpinnerOld/fallback_cloud_big.png +0 -0
  2786. package/cjs/internal/SpinnerOld/fallback_cloud_normal.png +0 -0
  2787. package/cjs/internal/SpinnerOld/index.d.ts +0 -1
  2788. package/cjs/internal/SpinnerOld/index.js +0 -1
  2789. package/cjs/internal/SpinnerOld/index.js.map +0 -1
  2790. package/cjs/internal/SpinnerOld/locale/index.d.ts +0 -4
  2791. package/cjs/internal/SpinnerOld/locale/index.js +0 -11
  2792. package/cjs/internal/SpinnerOld/locale/index.js.map +0 -1
  2793. package/cjs/internal/SpinnerOld/locale/locales/en.d.ts +0 -2
  2794. package/cjs/internal/SpinnerOld/locale/locales/en.js +0 -4
  2795. package/cjs/internal/SpinnerOld/locale/locales/en.js.map +0 -1
  2796. package/cjs/internal/SpinnerOld/locale/locales/ru.d.ts +0 -2
  2797. package/cjs/internal/SpinnerOld/locale/locales/ru.js +0 -4
  2798. package/cjs/internal/SpinnerOld/locale/locales/ru.js.map +0 -1
  2799. package/cjs/internal/SpinnerOld/locale/types.d.ts +0 -4
  2800. package/cjs/internal/SpinnerOld/locale/types.js +0 -1
  2801. package/cjs/internal/icons/20px/Kontur-Iconic-eco-20px.eot +0 -0
  2802. package/cjs/internal/icons/20px/Kontur-Iconic-eco-20px.woff +0 -0
  2803. package/cjs/internal/icons/20px/Kontur-Iconic-eco-20px.woff2 +0 -0
  2804. package/cjs/internal/icons/SpinnerOldIcon.d.ts +0 -11
  2805. package/cjs/internal/icons/SpinnerOldIcon.js +0 -51
  2806. package/cjs/internal/icons/SpinnerOldIcon.js.map +0 -1
  2807. package/cjs/internal/themes/FlatTheme.d.ts +0 -210
  2808. package/cjs/internal/themes/FlatTheme.js +0 -311
  2809. package/cjs/internal/themes/FlatTheme.js.map +0 -1
  2810. package/cjs/lib/MockDate.d.ts +0 -8
  2811. package/cjs/lib/MockDate.js +0 -15
  2812. package/cjs/lib/MockDate.js.map +0 -1
  2813. package/cjs/lib/dom/getFocusableElements.d.ts +0 -41
  2814. package/cjs/lib/dom/getFocusableElements.js +0 -88
  2815. package/cjs/lib/dom/getFocusableElements.js.map +0 -1
  2816. package/cjs/lib/polyfillPlaceholder.d.ts +0 -1
  2817. package/cjs/lib/polyfillPlaceholder.js +0 -15
  2818. package/cjs/lib/polyfillPlaceholder.js.map +0 -1
  2819. package/cjs/lib/theming/themes/FlatTheme.d.ts +0 -1
  2820. package/cjs/lib/theming/themes/FlatTheme.js +0 -4
  2821. package/cjs/lib/theming/themes/FlatTheme.js.map +0 -1
  2822. package/components/Button/Corners/Corners.js +0 -6
  2823. package/components/Button/Corners/Corners.js.map +0 -1
  2824. package/components/Button/Corners/package.json +0 -6
  2825. package/components/Button/Corners.d.ts +0 -6
  2826. package/components/Fias/Fias/Fias.js +0 -341
  2827. package/components/Fias/Fias/Fias.js.map +0 -1
  2828. package/components/Fias/Fias/package.json +0 -6
  2829. package/components/Fias/Fias.d.ts +0 -130
  2830. package/components/Fias/Fias.md +0 -451
  2831. package/components/Fias/Fias.styles/Fias.styles.js +0 -31
  2832. package/components/Fias/Fias.styles/Fias.styles.js.map +0 -1
  2833. package/components/Fias/Fias.styles/package.json +0 -6
  2834. package/components/Fias/Fias.styles.d.ts +0 -4
  2835. package/components/Fias/FiasModal/FiasModal.js +0 -58
  2836. package/components/Fias/FiasModal/FiasModal.js.map +0 -1
  2837. package/components/Fias/FiasModal/package.json +0 -6
  2838. package/components/Fias/FiasModal.d.ts +0 -15
  2839. package/components/Fias/FiasSearch/FiasSearch/FiasSearch.js +0 -153
  2840. package/components/Fias/FiasSearch/FiasSearch/FiasSearch.js.map +0 -1
  2841. package/components/Fias/FiasSearch/FiasSearch/package.json +0 -6
  2842. package/components/Fias/FiasSearch/FiasSearch.d.ts +0 -56
  2843. package/components/Fias/FiasSearch/FiasSearch.md +0 -78
  2844. package/components/Fias/Form/FiasComboBox/FiasComboBox.js +0 -167
  2845. package/components/Fias/Form/FiasComboBox/FiasComboBox.js.map +0 -1
  2846. package/components/Fias/Form/FiasComboBox/package.json +0 -6
  2847. package/components/Fias/Form/FiasComboBox.d.ts +0 -34
  2848. package/components/Fias/Form/FiasCountrySelector/FiasCountrySelector.js +0 -130
  2849. package/components/Fias/Form/FiasCountrySelector/FiasCountrySelector.js.map +0 -1
  2850. package/components/Fias/Form/FiasCountrySelector/package.json +0 -6
  2851. package/components/Fias/Form/FiasCountrySelector.d.ts +0 -19
  2852. package/components/Fias/Form/FiasForm/FiasForm.js +0 -584
  2853. package/components/Fias/Form/FiasForm/FiasForm.js.map +0 -1
  2854. package/components/Fias/Form/FiasForm/package.json +0 -6
  2855. package/components/Fias/Form/FiasForm.d.ts +0 -70
  2856. package/components/Fias/Form/FiasForm.styles/FiasForm.styles.js +0 -45
  2857. package/components/Fias/Form/FiasForm.styles/FiasForm.styles.js.map +0 -1
  2858. package/components/Fias/Form/FiasForm.styles/package.json +0 -6
  2859. package/components/Fias/Form/FiasForm.styles.d.ts +0 -5
  2860. package/components/Fias/api/FiasAPI/FiasAPI.js +0 -303
  2861. package/components/Fias/api/FiasAPI/FiasAPI.js.map +0 -1
  2862. package/components/Fias/api/FiasAPI/package.json +0 -6
  2863. package/components/Fias/api/FiasAPI.d.ts +0 -26
  2864. package/components/Fias/api/FiasAPIResultFactory/FiasAPIResultFactory.js +0 -19
  2865. package/components/Fias/api/FiasAPIResultFactory/FiasAPIResultFactory.js.map +0 -1
  2866. package/components/Fias/api/FiasAPIResultFactory/package.json +0 -6
  2867. package/components/Fias/api/FiasAPIResultFactory.d.ts +0 -5
  2868. package/components/Fias/api/FiasMockAPI/FiasMockAPI.js +0 -113
  2869. package/components/Fias/api/FiasMockAPI/FiasMockAPI.js.map +0 -1
  2870. package/components/Fias/api/FiasMockAPI/package.json +0 -6
  2871. package/components/Fias/api/FiasMockAPI.d.ts +0 -8
  2872. package/components/Fias/api/data.json +0 -285
  2873. package/components/Fias/constants/abbreviations/abbreviations.js +0 -154
  2874. package/components/Fias/constants/abbreviations/abbreviations.js.map +0 -1
  2875. package/components/Fias/constants/abbreviations/package.json +0 -6
  2876. package/components/Fias/constants/abbreviations.d.ts +0 -3
  2877. package/components/Fias/index/index.js +0 -5
  2878. package/components/Fias/index/index.js.map +0 -1
  2879. package/components/Fias/index/package.json +0 -6
  2880. package/components/Fias/index.d.ts +0 -5
  2881. package/components/Fias/locale/index/index.js +0 -7
  2882. package/components/Fias/locale/index/index.js.map +0 -1
  2883. package/components/Fias/locale/index/package.json +0 -6
  2884. package/components/Fias/locale/index.d.ts +0 -4
  2885. package/components/Fias/locale/locales/ru/package.json +0 -6
  2886. package/components/Fias/locale/locales/ru/ru.js +0 -56
  2887. package/components/Fias/locale/locales/ru/ru.js.map +0 -1
  2888. package/components/Fias/locale/locales/ru.d.ts +0 -2
  2889. package/components/Fias/locale/package.json +0 -6
  2890. package/components/Fias/locale/types/package.json +0 -6
  2891. package/components/Fias/locale/types/types.js +0 -0
  2892. package/components/Fias/locale/types.d.ts +0 -56
  2893. package/components/Fias/logger/FiasLogger/FiasLogger.js +0 -11
  2894. package/components/Fias/logger/FiasLogger/FiasLogger.js.map +0 -1
  2895. package/components/Fias/logger/FiasLogger/package.json +0 -6
  2896. package/components/Fias/logger/FiasLogger.d.ts +0 -8
  2897. package/components/Fias/models/FiasAddress/FiasAddress.js +0 -739
  2898. package/components/Fias/models/FiasAddress/FiasAddress.js.map +0 -1
  2899. package/components/Fias/models/FiasAddress/package.json +0 -6
  2900. package/components/Fias/models/FiasAddress.d.ts +0 -96
  2901. package/components/Fias/models/FiasAddressElement/FiasAddressElement.js +0 -221
  2902. package/components/Fias/models/FiasAddressElement/FiasAddressElement.js.map +0 -1
  2903. package/components/Fias/models/FiasAddressElement/package.json +0 -6
  2904. package/components/Fias/models/FiasAddressElement.d.ts +0 -18
  2905. package/components/Fias/models/FiasData/FiasData.js +0 -99
  2906. package/components/Fias/models/FiasData/FiasData.js.map +0 -1
  2907. package/components/Fias/models/FiasData/package.json +0 -6
  2908. package/components/Fias/models/FiasData.d.ts +0 -20
  2909. package/components/Fias/package.json +0 -6
  2910. package/components/Fias/types/package.json +0 -6
  2911. package/components/Fias/types/types.js +0 -53
  2912. package/components/Fias/types/types.js.map +0 -1
  2913. package/components/Fias/types.d.ts +0 -142
  2914. package/components/LocaleProvider/LocaleProvider/LocaleProvider.js +0 -60
  2915. package/components/LocaleProvider/LocaleProvider/LocaleProvider.js.map +0 -1
  2916. package/components/LocaleProvider/LocaleProvider/package.json +0 -6
  2917. package/components/LocaleProvider/LocaleProvider.d.ts +0 -24
  2918. package/components/LocaleProvider/index/index.js +0 -1
  2919. package/components/LocaleProvider/index/index.js.map +0 -1
  2920. package/components/LocaleProvider/index/package.json +0 -6
  2921. package/components/LocaleProvider/index.d.ts +0 -1
  2922. package/components/LocaleProvider/package.json +0 -6
  2923. package/components/Logotype/Logotype/Logotype.js +0 -169
  2924. package/components/Logotype/Logotype/Logotype.js.map +0 -1
  2925. package/components/Logotype/Logotype/package.json +0 -6
  2926. package/components/Logotype/Logotype.d.ts +0 -82
  2927. package/components/Logotype/Logotype.md +0 -33
  2928. package/components/Logotype/Logotype.styles/Logotype.styles.js +0 -110
  2929. package/components/Logotype/Logotype.styles/Logotype.styles.js.map +0 -1
  2930. package/components/Logotype/Logotype.styles/package.json +0 -6
  2931. package/components/Logotype/Logotype.styles.d.ts +0 -10
  2932. package/components/Logotype/ProductWidget/ProductWidget.js +0 -19
  2933. package/components/Logotype/ProductWidget/ProductWidget.js.map +0 -1
  2934. package/components/Logotype/ProductWidget/package.json +0 -6
  2935. package/components/Logotype/ProductWidget.d.ts +0 -3
  2936. package/components/Logotype/index/index.js +0 -1
  2937. package/components/Logotype/index/index.js.map +0 -1
  2938. package/components/Logotype/index/package.json +0 -6
  2939. package/components/Logotype/index.d.ts +0 -1
  2940. package/components/Logotype/locale/index/index.js +0 -8
  2941. package/components/Logotype/locale/index/index.js.map +0 -1
  2942. package/components/Logotype/locale/index/package.json +0 -6
  2943. package/components/Logotype/locale/index.d.ts +0 -4
  2944. package/components/Logotype/locale/locales/en/en.js +0 -4
  2945. package/components/Logotype/locale/locales/en/en.js.map +0 -1
  2946. package/components/Logotype/locale/locales/en/package.json +0 -6
  2947. package/components/Logotype/locale/locales/en.d.ts +0 -2
  2948. package/components/Logotype/locale/locales/ru/package.json +0 -6
  2949. package/components/Logotype/locale/locales/ru/ru.js +0 -4
  2950. package/components/Logotype/locale/locales/ru/ru.js.map +0 -1
  2951. package/components/Logotype/locale/locales/ru.d.ts +0 -2
  2952. package/components/Logotype/locale/package.json +0 -6
  2953. package/components/Logotype/locale/types/package.json +0 -6
  2954. package/components/Logotype/locale/types/types.js +0 -0
  2955. package/components/Logotype/locale/types.d.ts +0 -4
  2956. package/components/Logotype/package.json +0 -6
  2957. package/components/Modal/helpers/helpers.js +0 -10
  2958. package/components/Modal/helpers/helpers.js.map +0 -1
  2959. package/components/Modal/helpers/package.json +0 -6
  2960. package/components/Modal/helpers.d.ts +0 -6
  2961. package/components/Spinner/SpinnerFallback/SpinnerFallback.js +0 -107
  2962. package/components/Spinner/SpinnerFallback/SpinnerFallback.js.map +0 -1
  2963. package/components/Spinner/SpinnerFallback/package.json +0 -6
  2964. package/components/Spinner/SpinnerFallback.d.ts +0 -29
  2965. package/components/Spinner/fallback_circle.png +0 -0
  2966. package/components/Spinner/fallback_circle_big.png +0 -0
  2967. package/components/Spinner/fallback_circle_dimmed.png +0 -0
  2968. package/components/Spinner/fallback_circle_mini.png +0 -0
  2969. package/components/Spinner/fallback_circle_normal.png +0 -0
  2970. package/components/Spinner/fallback_cloud_big.png +0 -0
  2971. package/components/Spinner/fallback_cloud_normal.png +0 -0
  2972. package/components/ThemeConsumer/ThemeConsumer/ThemeConsumer.js +0 -25
  2973. package/components/ThemeConsumer/ThemeConsumer/ThemeConsumer.js.map +0 -1
  2974. package/components/ThemeConsumer/ThemeConsumer/package.json +0 -6
  2975. package/components/ThemeConsumer/ThemeConsumer.d.ts +0 -10
  2976. package/components/ThemeConsumer/index/index.js +0 -1
  2977. package/components/ThemeConsumer/index/index.js.map +0 -1
  2978. package/components/ThemeConsumer/index/package.json +0 -6
  2979. package/components/ThemeConsumer/index.d.ts +0 -1
  2980. package/components/ThemeConsumer/package.json +0 -6
  2981. package/components/ThemeProvider/ThemeProvider/ThemeProvider.js +0 -51
  2982. package/components/ThemeProvider/ThemeProvider/ThemeProvider.js.map +0 -1
  2983. package/components/ThemeProvider/ThemeProvider/package.json +0 -6
  2984. package/components/ThemeProvider/ThemeProvider.d.ts +0 -16
  2985. package/components/ThemeProvider/index/index.js +0 -1
  2986. package/components/ThemeProvider/index/index.js.map +0 -1
  2987. package/components/ThemeProvider/index/package.json +0 -6
  2988. package/components/ThemeProvider/index.d.ts +0 -1
  2989. package/components/ThemeProvider/package.json +0 -6
  2990. package/components/TopBar/TopBar/TopBar.js +0 -208
  2991. package/components/TopBar/TopBar/TopBar.js.map +0 -1
  2992. package/components/TopBar/TopBar/package.json +0 -6
  2993. package/components/TopBar/TopBar.d.ts +0 -113
  2994. package/components/TopBar/TopBar.md +0 -111
  2995. package/components/TopBar/TopBar.styles/TopBar.styles.js +0 -292
  2996. package/components/TopBar/TopBar.styles/TopBar.styles.js.map +0 -1
  2997. package/components/TopBar/TopBar.styles/package.json +0 -6
  2998. package/components/TopBar/TopBar.styles.d.ts +0 -24
  2999. package/components/TopBar/TopBarButtonItem/TopBarButtonItem.js +0 -42
  3000. package/components/TopBar/TopBarButtonItem/TopBarButtonItem.js.map +0 -1
  3001. package/components/TopBar/TopBarButtonItem/package.json +0 -6
  3002. package/components/TopBar/TopBarButtonItem.d.ts +0 -25
  3003. package/components/TopBar/TopBarDivider/TopBarDivider.js +0 -18
  3004. package/components/TopBar/TopBarDivider/TopBarDivider.js.map +0 -1
  3005. package/components/TopBar/TopBarDivider/package.json +0 -6
  3006. package/components/TopBar/TopBarDivider.d.ts +0 -11
  3007. package/components/TopBar/TopBarDropdown/TopBarDropdown.js +0 -84
  3008. package/components/TopBar/TopBarDropdown/TopBarDropdown.js.map +0 -1
  3009. package/components/TopBar/TopBarDropdown/package.json +0 -6
  3010. package/components/TopBar/TopBarDropdown.d.ts +0 -29
  3011. package/components/TopBar/TopBarEnd/TopBarEnd.js +0 -15
  3012. package/components/TopBar/TopBarEnd/TopBarEnd.js.map +0 -1
  3013. package/components/TopBar/TopBarEnd/package.json +0 -6
  3014. package/components/TopBar/TopBarEnd.d.ts +0 -7
  3015. package/components/TopBar/TopBarItem/TopBarItem.js +0 -76
  3016. package/components/TopBar/TopBarItem/TopBarItem.js.map +0 -1
  3017. package/components/TopBar/TopBarItem/package.json +0 -6
  3018. package/components/TopBar/TopBarItem.d.ts +0 -32
  3019. package/components/TopBar/TopBarLogout/TopBarLogout.js +0 -39
  3020. package/components/TopBar/TopBarLogout/TopBarLogout.js.map +0 -1
  3021. package/components/TopBar/TopBarLogout/package.json +0 -6
  3022. package/components/TopBar/TopBarLogout.d.ts +0 -15
  3023. package/components/TopBar/TopBarOrganizations/TopBarOrganizations.js +0 -113
  3024. package/components/TopBar/TopBarOrganizations/TopBarOrganizations.js.map +0 -1
  3025. package/components/TopBar/TopBarOrganizations/package.json +0 -6
  3026. package/components/TopBar/TopBarOrganizations.d.ts +0 -30
  3027. package/components/TopBar/TopBarStart/TopBarStart.js +0 -15
  3028. package/components/TopBar/TopBarStart/TopBarStart.js.map +0 -1
  3029. package/components/TopBar/TopBarStart/package.json +0 -6
  3030. package/components/TopBar/TopBarStart.d.ts +0 -7
  3031. package/components/TopBar/TopBarUser/TopBarUser.js +0 -72
  3032. package/components/TopBar/TopBarUser/TopBarUser.js.map +0 -1
  3033. package/components/TopBar/TopBarUser/package.json +0 -6
  3034. package/components/TopBar/TopBarUser.d.ts +0 -26
  3035. package/components/TopBar/index/index.js +0 -10
  3036. package/components/TopBar/index/index.js.map +0 -1
  3037. package/components/TopBar/index/package.json +0 -6
  3038. package/components/TopBar/index.d.ts +0 -10
  3039. package/components/TopBar/locale/index/index.js +0 -8
  3040. package/components/TopBar/locale/index/index.js.map +0 -1
  3041. package/components/TopBar/locale/index/package.json +0 -6
  3042. package/components/TopBar/locale/index.d.ts +0 -4
  3043. package/components/TopBar/locale/locales/en/en.js +0 -6
  3044. package/components/TopBar/locale/locales/en/en.js.map +0 -1
  3045. package/components/TopBar/locale/locales/en/package.json +0 -6
  3046. package/components/TopBar/locale/locales/en.d.ts +0 -2
  3047. package/components/TopBar/locale/locales/ru/package.json +0 -6
  3048. package/components/TopBar/locale/locales/ru/ru.js +0 -6
  3049. package/components/TopBar/locale/locales/ru/ru.js.map +0 -1
  3050. package/components/TopBar/locale/locales/ru.d.ts +0 -2
  3051. package/components/TopBar/locale/package.json +0 -6
  3052. package/components/TopBar/locale/types/package.json +0 -6
  3053. package/components/TopBar/locale/types/types.js +0 -0
  3054. package/components/TopBar/locale/types.d.ts +0 -6
  3055. package/components/TopBar/package.json +0 -6
  3056. package/internal/MaskedInput/mask-char-font/font.eot +0 -0
  3057. package/internal/MaskedInput/mask-char-font/font.woff +0 -0
  3058. package/internal/MaskedInput/mask-char-font/font.woff2 +0 -0
  3059. package/internal/PopupMenu/PopupMenuPositions/PopupMenuPositions.js +0 -1
  3060. package/internal/PopupMenu/PopupMenuPositions/PopupMenuPositions.js.map +0 -1
  3061. package/internal/PopupMenu/PopupMenuPositions/package.json +0 -6
  3062. package/internal/PopupMenu/PopupMenuPositions.d.ts +0 -2
  3063. package/internal/SpinnerOld/SpinnerOld/SpinnerOld.js +0 -112
  3064. package/internal/SpinnerOld/SpinnerOld/SpinnerOld.js.map +0 -1
  3065. package/internal/SpinnerOld/SpinnerOld/package.json +0 -6
  3066. package/internal/SpinnerOld/SpinnerOld.d.ts +0 -47
  3067. package/internal/SpinnerOld/SpinnerOld.styles/SpinnerOld.styles.js +0 -163
  3068. package/internal/SpinnerOld/SpinnerOld.styles/SpinnerOld.styles.js.map +0 -1
  3069. package/internal/SpinnerOld/SpinnerOld.styles/package.json +0 -6
  3070. package/internal/SpinnerOld/SpinnerOld.styles.d.ts +0 -14
  3071. package/internal/SpinnerOld/SpinnerOldFallback/SpinnerOldFallback.js +0 -126
  3072. package/internal/SpinnerOld/SpinnerOldFallback/SpinnerOldFallback.js.map +0 -1
  3073. package/internal/SpinnerOld/SpinnerOldFallback/package.json +0 -6
  3074. package/internal/SpinnerOld/SpinnerOldFallback.d.ts +0 -30
  3075. package/internal/SpinnerOld/fallback_circle.png +0 -0
  3076. package/internal/SpinnerOld/fallback_circle_dimmed.png +0 -0
  3077. package/internal/SpinnerOld/fallback_cloud_big.png +0 -0
  3078. package/internal/SpinnerOld/fallback_cloud_normal.png +0 -0
  3079. package/internal/SpinnerOld/index/index.js +0 -1
  3080. package/internal/SpinnerOld/index/index.js.map +0 -1
  3081. package/internal/SpinnerOld/index/package.json +0 -6
  3082. package/internal/SpinnerOld/index.d.ts +0 -1
  3083. package/internal/SpinnerOld/locale/index/index.js +0 -8
  3084. package/internal/SpinnerOld/locale/index/index.js.map +0 -1
  3085. package/internal/SpinnerOld/locale/index/package.json +0 -6
  3086. package/internal/SpinnerOld/locale/index.d.ts +0 -4
  3087. package/internal/SpinnerOld/locale/locales/en/en.js +0 -3
  3088. package/internal/SpinnerOld/locale/locales/en/en.js.map +0 -1
  3089. package/internal/SpinnerOld/locale/locales/en/package.json +0 -6
  3090. package/internal/SpinnerOld/locale/locales/en.d.ts +0 -2
  3091. package/internal/SpinnerOld/locale/locales/ru/package.json +0 -6
  3092. package/internal/SpinnerOld/locale/locales/ru/ru.js +0 -3
  3093. package/internal/SpinnerOld/locale/locales/ru/ru.js.map +0 -1
  3094. package/internal/SpinnerOld/locale/locales/ru.d.ts +0 -2
  3095. package/internal/SpinnerOld/locale/package.json +0 -6
  3096. package/internal/SpinnerOld/locale/types/package.json +0 -6
  3097. package/internal/SpinnerOld/locale/types/types.js +0 -0
  3098. package/internal/SpinnerOld/locale/types.d.ts +0 -4
  3099. package/internal/SpinnerOld/package.json +0 -6
  3100. package/internal/icons/20px/Kontur-Iconic-eco-20px.eot +0 -0
  3101. package/internal/icons/20px/Kontur-Iconic-eco-20px.woff +0 -0
  3102. package/internal/icons/20px/Kontur-Iconic-eco-20px.woff2 +0 -0
  3103. package/internal/icons/SpinnerOldIcon/SpinnerOldIcon.js +0 -46
  3104. package/internal/icons/SpinnerOldIcon/SpinnerOldIcon.js.map +0 -1
  3105. package/internal/icons/SpinnerOldIcon/package.json +0 -6
  3106. package/internal/icons/SpinnerOldIcon.d.ts +0 -11
  3107. package/internal/themes/FlatTheme/FlatTheme.js +0 -422
  3108. package/internal/themes/FlatTheme/FlatTheme.js.map +0 -1
  3109. package/internal/themes/FlatTheme/package.json +0 -6
  3110. package/internal/themes/FlatTheme.d.ts +0 -210
  3111. package/lib/MockDate/MockDate.js +0 -28
  3112. package/lib/MockDate/MockDate.js.map +0 -1
  3113. package/lib/MockDate/package.json +0 -6
  3114. package/lib/MockDate.d.ts +0 -8
  3115. package/lib/dom/getFocusableElements/getFocusableElements.js +0 -103
  3116. package/lib/dom/getFocusableElements/getFocusableElements.js.map +0 -1
  3117. package/lib/dom/getFocusableElements/package.json +0 -6
  3118. package/lib/dom/getFocusableElements.d.ts +0 -41
  3119. package/lib/polyfillPlaceholder/package.json +0 -6
  3120. package/lib/polyfillPlaceholder/polyfillPlaceholder.js +0 -11
  3121. package/lib/polyfillPlaceholder/polyfillPlaceholder.js.map +0 -1
  3122. package/lib/polyfillPlaceholder.d.ts +0 -1
  3123. package/lib/theming/themes/FlatTheme/FlatTheme.js +0 -3
  3124. package/lib/theming/themes/FlatTheme/FlatTheme.js.map +0 -1
  3125. package/lib/theming/themes/FlatTheme/package.json +0 -6
  3126. package/lib/theming/themes/FlatTheme.d.ts +0 -1
  3127. /package/cjs/components/{Fias → Autocomplete}/locale/types.js.map +0 -0
  3128. /package/cjs/components/{Logotype → FileUploader}/locale/types.js.map +0 -0
  3129. /package/cjs/components/{TopBar/locale → ResponsiveLayout}/types.js.map +0 -0
  3130. /package/cjs/internal/{SpinnerOld/locale → Popup}/types.js.map +0 -0
  3131. /package/components/{Fias → Autocomplete}/locale/types/types.js.map +0 -0
  3132. /package/components/{Logotype → FileUploader}/locale/types/types.js.map +0 -0
  3133. /package/components/{TopBar/locale → ResponsiveLayout}/types/types.js.map +0 -0
  3134. /package/internal/{SpinnerOld/locale → Popup}/types/types.js.map +0 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,3094 @@
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
+ ## [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)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **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))
12
+ * **TokenInput:** remove empty tokens on paste ([#3124](https://github.com/skbkontur/retail-ui/issues/3124)) ([a326d92](https://github.com/skbkontur/retail-ui/commit/a326d92e1578e0e901b91c38ecbfc27c9a23b231))
13
+
14
+
15
+
16
+
17
+
18
+ ## [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)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * **MenuMessage:** pass ref ([#3113](https://github.com/skbkontur/retail-ui/issues/3113)) ([3864e08](https://github.com/skbkontur/retail-ui/commit/3864e08017a0f88309ec3e6cb86304e4508c124c))
24
+
25
+
26
+
27
+
28
+
29
+ # [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)
30
+
31
+
32
+ ### Features
33
+
34
+ * **ScrollContainer:** add `hideScrollBar` prop ([#3106](https://github.com/skbkontur/retail-ui/issues/3106)) ([609739b](https://github.com/skbkontur/retail-ui/commit/609739b8cc8586bd32b37de9d96dc8288ea8aff4))
35
+ * add aria-describedby attribute to elements ([#3094](https://github.com/skbkontur/retail-ui/issues/3094)) ([8f37e81](https://github.com/skbkontur/retail-ui/commit/8f37e817b86cee94fca5e7f37a8fdcb9928f289e))
36
+ * **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))
37
+ * **RadioGroup:** add roles for a11y ([#3096](https://github.com/skbkontur/retail-ui/issues/3096)) ([069b588](https://github.com/skbkontur/retail-ui/commit/069b58860e1254da1818bd28d3a17ecba334a702))
38
+
39
+
40
+
41
+
42
+
43
+ # [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)
44
+
45
+
46
+ ### Bug Fixes
47
+
48
+ * **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))
49
+
50
+
51
+ ### Features
52
+
53
+ * **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))
54
+ * **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))
55
+
56
+
57
+
58
+
59
+
60
+ # [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)
61
+
62
+
63
+ ### Bug Fixes
64
+
65
+ * **Modal:** forced scroll on mobile devices ([#3070](https://github.com/skbkontur/retail-ui/issues/3070)) ([a6262de](https://github.com/skbkontur/retail-ui/commit/a6262ded4a727f63fb15a800e432669d27a01df9))
66
+ * **ThemeFactory:** correct `overrideDefaultTheme` method ([#3073](https://github.com/skbkontur/retail-ui/issues/3073)) ([9f9b31e](https://github.com/skbkontur/retail-ui/commit/9f9b31ea961de245b8de1d6986359a918db8f739))
67
+
68
+
69
+ ### Features
70
+
71
+ * **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))
72
+
73
+
74
+
75
+
76
+
77
+ # [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)
78
+
79
+
80
+ ### Features
81
+
82
+ * **Menu:** add theme variable `menuOffsetY` ([#3078](https://github.com/skbkontur/retail-ui/issues/3078)) ([75c0637](https://github.com/skbkontur/retail-ui/commit/75c0637565a13bad2eed7b0d0e1490784011c08d))
83
+
84
+
85
+
86
+
87
+
88
+ ## [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)
89
+
90
+
91
+ ### Bug Fixes
92
+
93
+ * **FileUploader:** validation tooltip position ([#3055](https://github.com/skbkontur/retail-ui/issues/3055)) ([c66886a](https://github.com/skbkontur/retail-ui/commit/c66886aeaed8d8c0cae59435cf5509ba8151c358))
94
+ * **SidePage:** return cross icon on mobile ([#3057](https://github.com/skbkontur/retail-ui/issues/3057)) ([7e29a08](https://github.com/skbkontur/retail-ui/commit/7e29a081feb018704e283e2c39f710d484fa8a35))
95
+
96
+
97
+
98
+
99
+
100
+ ## [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)
101
+
102
+
103
+ ### Bug Fixes
104
+
105
+ * **icons:** add aria-hidden attribute ([#3048](https://github.com/skbkontur/retail-ui/issues/3048)) ([4d2f69b](https://github.com/skbkontur/retail-ui/commit/4d2f69bb08ee00a1798688985013af02d7313b35))
106
+ * **ResponsiveLayout:** configure to work with SSR ([#3052](https://github.com/skbkontur/retail-ui/issues/3052)) ([bd36596](https://github.com/skbkontur/retail-ui/commit/bd365967948b4d5dc525bb8a30c22312b90bc0ce))
107
+ * **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))
108
+ * **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))
109
+
110
+
111
+
112
+
113
+
114
+ # [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)
115
+
116
+
117
+ ### Bug Fixes
118
+
119
+ * **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))
120
+ * **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))
121
+ * export ColorFunctions and DimensionFunctions ([#3043](https://github.com/skbkontur/retail-ui/issues/3043)) ([b3f2c24](https://github.com/skbkontur/retail-ui/commit/b3f2c242fa07f5d7e11dad292bf34e86c932ef9d))
122
+
123
+
124
+ ### Features
125
+
126
+ * **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))
127
+ * **Switcher:** add `renderItem` prop ([#3021](https://github.com/skbkontur/retail-ui/issues/3021)) ([2e6e2a9](https://github.com/skbkontur/retail-ui/commit/2e6e2a907673482cb5678e4ae7e88bfd37b60eee))
128
+
129
+
130
+
131
+
132
+
133
+ # [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)
134
+
135
+
136
+ ### Bug Fixes
137
+
138
+ * **CurrencyInput:** clearing value ([#3025](https://github.com/skbkontur/retail-ui/issues/3025)) ([b30a14f](https://github.com/skbkontur/retail-ui/commit/b30a14f844af0cee0bc8837ff5468a6cede88531))
139
+ * **MenuItem:** icon offset in mobile version ([#3010](https://github.com/skbkontur/retail-ui/issues/3010)) ([6494538](https://github.com/skbkontur/retail-ui/commit/649453816fd86b937590722deadafb9533446bd4))
140
+
141
+
142
+ ### Features
143
+
144
+ * **Switcher:** add buttonProps field to items ([#3017](https://github.com/skbkontur/retail-ui/issues/3017)) ([25c330e](https://github.com/skbkontur/retail-ui/commit/25c330e7020dcd6f58f3e083ddc73bff97ad178c))
145
+
146
+
147
+
148
+
149
+
150
+ # [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)
151
+
152
+
153
+ ### Bug Fixes
154
+
155
+ * **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))
156
+ * **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))
157
+ * **Paging:** visual appearance of disabled state ([#3020](https://github.com/skbkontur/retail-ui/issues/3020)) ([801d630](https://github.com/skbkontur/retail-ui/commit/801d630883f2d3f7723a3ddd32cd9270f96a185f))
158
+ * **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))
159
+ * **toggle:** improve a11y of toggle component ([#3014](https://github.com/skbkontur/retail-ui/issues/3014)) ([e7d97df](https://github.com/skbkontur/retail-ui/commit/e7d97dfa419051bb542e2538bfa6cc85d69826e9))
160
+
161
+
162
+ ### Features
163
+
164
+ * **ComboBox:** add prop `itemWrapper` ([#3016](https://github.com/skbkontur/retail-ui/issues/3016)) ([bdb48bb](https://github.com/skbkontur/retail-ui/commit/bdb48bbfa425e743ebbafb4f0d079b0979ccdee7))
165
+
166
+
167
+
168
+
169
+
170
+ ## [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)
171
+
172
+
173
+ ### Bug Fixes
174
+
175
+ * **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))
176
+
177
+
178
+ ### Reverts
179
+
180
+ * 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)
181
+
182
+
183
+
184
+
185
+
186
+ # [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)
187
+
188
+
189
+ ### Bug Fixes
190
+
191
+ * **DropdownMenu:** apply MenuSeparator instead css ([#2997](https://github.com/skbkontur/retail-ui/issues/2997)) ([a56844f](https://github.com/skbkontur/retail-ui/commit/a56844f2c1b1610f3cc8660ffab8e3a286afe96d))
192
+ * **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))
193
+ * **isNullable:** error in types ([#3005](https://github.com/skbkontur/retail-ui/issues/3005)) ([f6a4411](https://github.com/skbkontur/retail-ui/commit/f6a4411f72aac17a8b887d3ef8287747099f6be8))
194
+
195
+
196
+ ### Features
197
+
198
+ * **CurrencyLabel:** new prop 'hideTrailingZeros' ([#2994](https://github.com/skbkontur/retail-ui/issues/2994)) ([57c3e3a](https://github.com/skbkontur/retail-ui/commit/57c3e3af9c52f7ad896b67e45e6a3391cdefbd5c))
199
+ * **MenuItem:** add rel attribute ([#2998](https://github.com/skbkontur/retail-ui/issues/2998)) ([80f022d](https://github.com/skbkontur/retail-ui/commit/80f022d23c999b9bd3c2e1c3c121890a1d35e067))
200
+ * **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))
201
+ * **SidePage:** update layout on resize SidePageBody ([#3004](https://github.com/skbkontur/retail-ui/issues/3004)) ([09445e2](https://github.com/skbkontur/retail-ui/commit/09445e2a6412b1f20f9e44a7ebd780dde15e740c))
202
+ * **SidePage:** update layout on resize SidePageBody ([#3007](https://github.com/skbkontur/retail-ui/issues/3007)) ([1888bf9](https://github.com/skbkontur/retail-ui/commit/1888bf9f214eb5ce58c2ea72a6f4318e28996b78))
203
+
204
+
205
+
206
+
207
+
208
+ ## [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)
209
+
210
+
211
+ ### Bug Fixes
212
+
213
+ * **Select:** use input's background color ([#2978](https://github.com/skbkontur/retail-ui/issues/2978)) ([560ad55](https://github.com/skbkontur/retail-ui/commit/560ad55f7fe1fa8459e875fdf6bec58bb4658930))
214
+
215
+
216
+
217
+
218
+
219
+ ## [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)
220
+
221
+
222
+ ### Bug Fixes
223
+
224
+ * **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))
225
+ * **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))
226
+
227
+
228
+
229
+
230
+
231
+ ## [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)
232
+
233
+
234
+ ### Bug Fixes
235
+
236
+ * **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))
237
+
238
+
239
+
240
+
241
+
242
+ # [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)
243
+
244
+
245
+ ### Bug Fixes
246
+
247
+ * **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))
248
+ * **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))
249
+ * **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))
250
+ * **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))
251
+
252
+
253
+ ### Features
254
+
255
+ * **ResponsiveLayout,useResponsiveLayout:** custom media queries ([#2957](https://github.com/skbkontur/retail-ui/issues/2957)) ([7befaf9](https://github.com/skbkontur/retail-ui/commit/7befaf9d9222c95d99150aba37988cec9a5b0326))
256
+
257
+
258
+
259
+
260
+
261
+ # [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)
262
+
263
+ **Note:** Version bump due significan refactoring
264
+
265
+
266
+
267
+
268
+
269
+ ## [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)
270
+
271
+
272
+ ### Bug Fixes
273
+
274
+ * **CurrencyInput:** add support comma aliases ([#2974](https://github.com/skbkontur/retail-ui/issues/2974)) ([82bf20b](https://github.com/skbkontur/retail-ui/commit/82bf20b4b5bedc9d24d5f8f8070ee4d598a67287))
275
+ * **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))
276
+ * **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))
277
+ * **Popup:** accept SVG as anchor ([#2946](https://github.com/skbkontur/retail-ui/issues/2946)) ([a5f7283](https://github.com/skbkontur/retail-ui/commit/a5f72836dd0d31d4a109ac2bb0d6d6a4e3109d19))
278
+ * **theme:** add missing units to values ([#2968](https://github.com/skbkontur/retail-ui/issues/2968)) ([b79f626](https://github.com/skbkontur/retail-ui/commit/b79f6264cd9af4ffd21ea3c57d5f849be9504409))
279
+ * **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))
280
+
281
+
282
+
283
+
284
+
285
+ # [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)
286
+
287
+
288
+ ### Bug Fixes
289
+
290
+ * 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))
291
+ * **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))
292
+
293
+
294
+ ### Features
295
+
296
+ * make props with default values truly optional in types ([72d02d5](https://github.com/skbkontur/retail-ui/commit/72d02d511a6ca0ea1a3569942f8cbde2f4c07d25))
297
+
298
+
299
+
300
+
301
+
302
+ ## [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)
303
+
304
+
305
+ ### Bug Fixes
306
+
307
+ * **Modal:** fix paddings flickering ([#2949](https://github.com/skbkontur/retail-ui/issues/2949)) ([d81d152](https://github.com/skbkontur/retail-ui/commit/d81d152e409b3af8cccd9e0f9af9105c8336a2ec))
308
+ * **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)
309
+ * **TooltipMenu:** prevent double scroll ([#2950](https://github.com/skbkontur/retail-ui/issues/2950)) ([42b3f2f](https://github.com/skbkontur/retail-ui/commit/42b3f2f363141ccc1e3b5526cbeab1bc8b5073be))
310
+
311
+
312
+
313
+
314
+
315
+ ## [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)
316
+
317
+
318
+ ### Bug Fixes
319
+
320
+ * **ResponsiveLayout:** fix memory leak ([#2948](https://github.com/skbkontur/retail-ui/issues/2948)) ([29e3243](https://github.com/skbkontur/retail-ui/commit/29e3243f388588e9945da3b1079f4aa2f8a2b0fc))
321
+ * **Tooltip:** fix click outside detection ([#2941](https://github.com/skbkontur/retail-ui/issues/2941)) ([3a560bb](https://github.com/skbkontur/retail-ui/commit/3a560bb9021b796cf72c5c2a54f09f71b339e029))
322
+
323
+
324
+
325
+
326
+
327
+ # [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)
328
+
329
+
330
+ ### Bug Fixes
331
+
332
+ * 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))
333
+ * warnings and mistakes in propTypes ([#2911](https://github.com/skbkontur/retail-ui/issues/2911)) ([74b1071](https://github.com/skbkontur/retail-ui/commit/74b1071d320998081b8ad0d30155867072d003a0))
334
+ * **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))
335
+
336
+
337
+ ### Features
338
+
339
+ * add export data-tids ([#2900](https://github.com/skbkontur/retail-ui/issues/2900)) ([627e841](https://github.com/skbkontur/retail-ui/commit/627e84104cf0b289fcb05d6f73afae4baf38856c))
340
+ * add toKey into RadioGroup ([#2929](https://github.com/skbkontur/retail-ui/issues/2929)) ([45a2697](https://github.com/skbkontur/retail-ui/commit/45a2697139de96233c0c8570b378178b6d59d11e))
341
+
342
+
343
+
344
+
345
+
346
+ ## [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)
347
+
348
+
349
+ ### Bug Fixes
350
+
351
+ * **Checkbox:** fix checking with pressed shift ([#2894](https://github.com/skbkontur/retail-ui/issues/2894)) ([2a3ee39](https://github.com/skbkontur/retail-ui/commit/2a3ee395bcc2844abdf992c9e594ea3ec2d0f593))
352
+ * **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))
353
+ * **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))
354
+ * **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))
355
+
356
+
357
+ ### Features
358
+
359
+ * **tokeninput:** add renderTotalCount and totalCount props ([#2887](https://github.com/skbkontur/retail-ui/issues/2887)) ([e745f07](https://github.com/skbkontur/retail-ui/commit/e745f07f6524df4b1810aa1de304363f249d80c7))
360
+
361
+
362
+
363
+
364
+
365
+ ## [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)
366
+
367
+
368
+ ### Bug Fixes
369
+
370
+ * **MaskedInput:** accept null as value ([#2902](https://github.com/skbkontur/retail-ui/issues/2902)) ([e3414eb](https://github.com/skbkontur/retail-ui/commit/e3414ebfd3934995c415c68df44bb5afd9ecd8c2))
371
+ * **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)
372
+ * **storybook:** StoryFn.story deprecated annotation ([#2798](https://github.com/skbkontur/retail-ui/issues/2798)) ([4c2bd8a](https://github.com/skbkontur/retail-ui/commit/4c2bd8ae93dc8e4a79f25de5baefe7a7c85b0b41))
373
+ * **Tabs:** active tab underline ([839043d](https://github.com/skbkontur/retail-ui/commit/839043d5a78eda18ddba9610134fb4955a91dd43))
374
+ * **TooltipMenu:** add onClose/onOpen props ([#2890](https://github.com/skbkontur/retail-ui/issues/2890)) ([92d4888](https://github.com/skbkontur/retail-ui/commit/92d48880c8feec11a00c8641c59e839a84e31fd2))
375
+
376
+
377
+
378
+
379
+
380
+ # [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)
381
+
382
+
383
+ ### Bug Fixes
384
+
385
+ * **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))
386
+ * **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))
387
+ * **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))
388
+ * **Select:** add menuBorderRadius theme var ([#2864](https://github.com/skbkontur/retail-ui/issues/2864)) ([d7d7827](https://github.com/skbkontur/retail-ui/commit/d7d78271b7945bd22ccbf6a4ff78a3ad61d5041a))
389
+
390
+
391
+ ### Features
392
+
393
+ * 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))
394
+
395
+
396
+
397
+
398
+
399
+ ## [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)
400
+
401
+
402
+ ### Bug Fixes
403
+
404
+ * **Button:** add btnLinkActiveColor theme var ([#2871](https://github.com/skbkontur/retail-ui/issues/2871)) ([0588d56](https://github.com/skbkontur/retail-ui/commit/0588d5699d07668aeb0ba25bece9fb95ea2ca89e))
405
+ * **Popup:** use content container as rootNode instead of anchorElement ([4eed6a0](https://github.com/skbkontur/retail-ui/commit/4eed6a06eaee691a3f2e0c8e474dc9a5b139ac5b))
406
+ * **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)
407
+ * **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))
408
+
409
+
410
+ ### Reverts
411
+
412
+ * 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)
413
+
414
+
415
+
416
+
417
+
418
+ ## [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)
419
+
420
+
421
+ ### Bug Fixes
422
+
423
+ * **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)
424
+
425
+
426
+
427
+
428
+
429
+ ## [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)
430
+
431
+
432
+ ### Bug Fixes
433
+
434
+ * **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))
435
+ * corrected ThemeFactory.overrideDefaultTheme ([#2845](https://github.com/skbkontur/retail-ui/issues/2845)) ([2cc964f](https://github.com/skbkontur/retail-ui/commit/2cc964f5a7f052a442893e1312de1cf9115e131f))
436
+
437
+
438
+
439
+
440
+
441
+ ## [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)
442
+
443
+
444
+ ### Bug Fixes
445
+
446
+ * **SidePage:** fix animation styles ([#2837](https://github.com/skbkontur/retail-ui/issues/2837)) ([2eeebb0](https://github.com/skbkontur/retail-ui/commit/2eeebb00fb651da8062d6b672f8bd71ae0fa7587))
447
+
448
+
449
+
450
+
451
+
452
+ ## [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)
453
+
454
+
455
+ ### Bug Fixes
456
+
457
+ * **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))
458
+ * **SidePage,Toast:** fix animation bugs ([#2835](https://github.com/skbkontur/retail-ui/issues/2835)) ([3c8e77d](https://github.com/skbkontur/retail-ui/commit/3c8e77dc67710b342d8df96043333f2cbf012c73))
459
+
460
+
461
+
462
+
463
+
464
+ ## [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)
465
+
466
+
467
+ ### Bug Fixes
468
+
469
+ * **DatePicker:** scroll to date ([#2829](https://github.com/skbkontur/retail-ui/issues/2829)) ([3f3366d](https://github.com/skbkontur/retail-ui/commit/3f3366dbf16b7348eef3981976cf2d07d0b54e2d))
470
+ * dropdownContainer position (master) ([#2827](https://github.com/skbkontur/retail-ui/issues/2827)) ([81467af](https://github.com/skbkontur/retail-ui/commit/81467af568ff519dd362b32dc8db360856f0ef7a))
471
+ * **Modal:** fix lodash import ([#2824](https://github.com/skbkontur/retail-ui/issues/2824)) ([0f15b5e](https://github.com/skbkontur/retail-ui/commit/0f15b5eb041337eda552d096a34914ed86aad79b))
472
+
473
+
474
+
475
+
476
+
477
+ # [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)
478
+
479
+
480
+ ### Bug Fixes
481
+
482
+ * **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)
483
+ * **Checkbox:** fix baseline ([3571ee3](https://github.com/skbkontur/retail-ui/commit/3571ee3877fd554201b5e901a581207b513c2f20))
484
+ * **GlobalLoader:** Доработали поведение и поправили мелкие баги ([#2767](https://github.com/skbkontur/retail-ui/issues/2767)) ([17a666d](https://github.com/skbkontur/retail-ui/commit/17a666d94acbcebb41c69563a8b489ca0f43da45))
485
+ * **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))
486
+ * **Radio:** fix baseline ([fcb021d](https://github.com/skbkontur/retail-ui/commit/fcb021d1ee63df6a8fecc9d5757c072c6863df28))
487
+ * **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))
488
+ * **react-ui:** don't depend on global line-height ([98cb4dc](https://github.com/skbkontur/retail-ui/commit/98cb4dcb8f71417c89e1fc61b4f1f45ba3119943))
489
+ * **ResponsiveLayout:** fallback for ie11 ([956f723](https://github.com/skbkontur/retail-ui/commit/956f7239c08bdb08d86e6056b2f6b71b540eaf22))
490
+ * **Spinner:** add inline type ([f7a0f35](https://github.com/skbkontur/retail-ui/commit/f7a0f3505b90777424da60d137c32ea25500c81b))
491
+ * **Toggle:** add vars for font-size and line-height ([911f1df](https://github.com/skbkontur/retail-ui/commit/911f1dfd89495265baa6cac2df45a1c52281ac8e))
492
+ * **Toggle:** fix baseline ([1d3960b](https://github.com/skbkontur/retail-ui/commit/1d3960b496fbfec9796e3eb72614b79be7436374))
493
+ * **Tooltip:** add vars for font-size and line-height ([3f27477](https://github.com/skbkontur/retail-ui/commit/3f274776c89ef194383de84f9cd5dbda3c0f6c1b))
494
+
495
+
496
+ ### Features
497
+
498
+ * **FileUploader:** new component FileUploader ([#2542](https://github.com/skbkontur/retail-ui/issues/2542)) ([18d009a](https://github.com/skbkontur/retail-ui/commit/18d009a8ebeafa2379d5fb46a564ead97c3da6a5))
499
+ * **GlobalLoader:** new component GlobalLoader ([#2554](https://github.com/skbkontur/retail-ui/issues/2554)) ([dfeef98](https://github.com/skbkontur/retail-ui/commit/dfeef98098932ee12d8f3591536f51b5add811c6))
500
+ * **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))
501
+ * **Modal:** add mobile version ([#2682](https://github.com/skbkontur/retail-ui/issues/2682)) ([10324c6](https://github.com/skbkontur/retail-ui/commit/10324c69505e11c1638aab7f128e8d0537cd4289))
502
+ * **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)
503
+ * **react-ui:** add lab grotesque compensation ([b1920bb](https://github.com/skbkontur/retail-ui/commit/b1920bbc5534161e686c2147979f47b7bc36b049))
504
+ * **react-ui:** add new theme ([#2592](https://github.com/skbkontur/retail-ui/issues/2592)) ([1aaaf17](https://github.com/skbkontur/retail-ui/commit/1aaaf17785bb624b730e26c525d019ae22acecd0))
505
+ * **react-ui:** dark theme ([#2698](https://github.com/skbkontur/retail-ui/issues/2698)) ([8047743](https://github.com/skbkontur/retail-ui/commit/8047743c1572e753b327a5323c9f4481b0c1db45))
506
+ * **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))
507
+ * **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))
508
+ * **Select,ComboBox,Autocomplete:** add responsive mobile layouts ([861f23a](https://github.com/skbkontur/retail-ui/commit/861f23affdc93e283a7dfdeaddd6b3af7cb27287))
509
+ * **SidePage:** add mobile version ([#2695](https://github.com/skbkontur/retail-ui/issues/2695)) ([46d469b](https://github.com/skbkontur/retail-ui/commit/46d469bcfa57ee2a85f9014f7fa8b56b10406062))
510
+
511
+
512
+ ### BREAKING CHANGES
513
+
514
+ * **react-ui:** update, rename and remove some themes, see #2592
515
+ * **Radio, Switcher, Checkbox:** rename label to caption
516
+
517
+
518
+
519
+
520
+
521
+ # [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)
522
+
523
+
524
+ ### Bug Fixes
525
+
526
+ * **Select:** fix menuAlign right ([#2693](https://github.com/skbkontur/retail-ui/issues/2693)) ([6428498](https://github.com/skbkontur/retail-ui/commit/6428498b8cb895f0bcfe853959b26caa41b53189))
527
+ * **SidePage:** Исправил ошибку `Maximum update`, когда скролишь второй SidePage ([74134d8](https://github.com/skbkontur/retail-ui/commit/74134d8bf5d8a4aaed5aa554e41bb50e44d3836d))
528
+ * **SidePage:** Исправил положение залипшего заголовка после закрытия второго SidePage ([76c6ff4](https://github.com/skbkontur/retail-ui/commit/76c6ff40eac3c76bb86e9118c4727b5bf6a442ae))
529
+
530
+
531
+ ### Features
532
+
533
+ * **Sticky:** Сделал метод `ref.reflow()` публичным ([bdfc991](https://github.com/skbkontur/retail-ui/commit/bdfc991e20317d6da68191357a9ecd554990ef9b))
534
+
535
+
536
+
537
+
538
+
539
+ # [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)
540
+
541
+
542
+ ### Bug Fixes
543
+
544
+ * **ScrollContainer:** consider scaling cases in browsers ([#2705](https://github.com/skbkontur/retail-ui/issues/2705)) ([e64d3de](https://github.com/skbkontur/retail-ui/commit/e64d3de80f12cdb7c2329d0b38d2531f84237f55))
545
+ * **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))
546
+ * **Spinner:** refactor animation for Safari ([#2748](https://github.com/skbkontur/retail-ui/issues/2748)) ([1698a4a](https://github.com/skbkontur/retail-ui/commit/1698a4a5542d9884f3e6deb833161a6219b9d72a))
547
+ * **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))
548
+
549
+
550
+ ### Features
551
+
552
+ * **Spinner:** add width and color props ([4ea170d](https://github.com/skbkontur/retail-ui/commit/4ea170d4f1cc30091c30e0ee637e38494ad79f0a))
553
+
554
+
555
+
556
+
557
+
558
+ # [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)
559
+
560
+
561
+ ### Bug Fixes
562
+
563
+ * **react-ui:** [StrictMode] give up findDomNode ([#2518](https://github.com/skbkontur/retail-ui/issues/2518)) ([8028cdd](https://github.com/skbkontur/retail-ui/commit/8028cdd3c2289fd48816bdaf92da6a28892f40a7))
564
+ * **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))
565
+ * **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))
566
+ * **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))
567
+ * **TokenInput:** handle Enter for TokenInputType.WithoutReference ([#2738](https://github.com/skbkontur/retail-ui/issues/2738)) ([2ee48cc](https://github.com/skbkontur/retail-ui/commit/2ee48cc31342dc13fd4596020d73e352311bdb82))
568
+
569
+
570
+ ### Features
571
+
572
+ * support React.StrictMode ([04a4bc9](https://github.com/skbkontur/retail-ui/commit/04a4bc9f2dd35fa98ea4d9526ddd775dd1017b71))
573
+ * **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))
574
+
575
+
576
+
577
+
578
+
579
+ ## [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)
580
+
581
+
582
+ ### Bug Fixes
583
+
584
+ * **Gapped:** correctly filter falsy childs ([#2692](https://github.com/skbkontur/retail-ui/issues/2692)) ([8e21e60](https://github.com/skbkontur/retail-ui/commit/8e21e60a7b7899945c2c101e48ede1a6e3360406))
585
+ * **Loader:** use `forEach` from `Array` ([#2702](https://github.com/skbkontur/retail-ui/issues/2702)) ([167a07a](https://github.com/skbkontur/retail-ui/commit/167a07ac3b8057396ce292d79f5bb21b9f1c7bd6))
586
+ * **RadioGroup:** fix types inference ([#2703](https://github.com/skbkontur/retail-ui/issues/2703)) ([4d410ab](https://github.com/skbkontur/retail-ui/commit/4d410ab8cf9d6d8b56f927e3b7efd698abf83920))
587
+
588
+
589
+
590
+
591
+
592
+ ## [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)
593
+
594
+
595
+ ### Bug Fixes
596
+
597
+ * **Button:** disable focus in loading state ([#2661](https://github.com/skbkontur/retail-ui/issues/2661)) ([1c910c1](https://github.com/skbkontur/retail-ui/commit/1c910c16a11ba81b6799d74106c74bc2afc1fd57))
598
+ * **Checkbox,Radio:** firing events onChange manually for Firefox ([6c19412](https://github.com/skbkontur/retail-ui/commit/6c19412b1c348666c802191ca851e4670df8edcc))
599
+ * **CurrencyInput:** refactor Input scroll on cursor is moving ([4e2e8d1](https://github.com/skbkontur/retail-ui/commit/4e2e8d135a05025454a213b77697b419bf7e1aca))
600
+ * **select:** add handleKey to search div ([#2660](https://github.com/skbkontur/retail-ui/issues/2660)) ([310b963](https://github.com/skbkontur/retail-ui/commit/310b963a510b134b391f6cae773a7b4940986623))
601
+ * **SidePage:** use `isTestEnv` by default for `disableAnimations` ([b4035e8](https://github.com/skbkontur/retail-ui/commit/b4035e8d2beb0a1886ba0b6590838ac363c79210))
602
+
603
+
604
+
605
+
606
+
607
+ ## [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)
608
+
609
+
610
+ ### Bug Fixes
611
+
612
+ * **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))
613
+
614
+
615
+
616
+
617
+
618
+ ## [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)
619
+
620
+
621
+ ### Bug Fixes
622
+
623
+ * **ComboBox:** fix blur in Chrome ([#2665](https://github.com/skbkontur/retail-ui/issues/2665)) ([dab2ef0](https://github.com/skbkontur/retail-ui/commit/dab2ef0a16f878e179dd1ae98cebc3d69a6b7987))
624
+ * **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))
625
+ * **SidePage:** add offset prop ([#2626](https://github.com/skbkontur/retail-ui/issues/2626)) ([59b0257](https://github.com/skbkontur/retail-ui/commit/59b0257634a82bde15bca415e4f803076c89cf7a))
626
+
627
+
628
+
629
+
630
+
631
+ # [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)
632
+
633
+
634
+ ### Bug Fixes
635
+
636
+ * **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))
637
+
638
+
639
+ ### Features
640
+
641
+ * **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))
642
+
643
+
644
+
645
+
646
+
647
+ ## [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)
648
+
649
+
650
+ ### Bug Fixes
651
+
652
+ * **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))
653
+ * **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)
654
+ * **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))
655
+
656
+
657
+
658
+
659
+
660
+ ## [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)
661
+
662
+
663
+ ### Bug Fixes
664
+
665
+ * **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))
666
+ * **RadioGroup:** problem with value type inference ([#2607](https://github.com/skbkontur/retail-ui/issues/2607)) ([d6136e4](https://github.com/skbkontur/retail-ui/commit/d6136e45a311b00f39bc5c741cef07aacf8d2f4f))
667
+ * **Select:** add vars for disabled state ([#2610](https://github.com/skbkontur/retail-ui/issues/2610)) ([7300141](https://github.com/skbkontur/retail-ui/commit/73001417ba004754c8f52da377ceff1fff0b6027))
668
+
669
+
670
+
671
+
672
+
673
+ ## [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)
674
+
675
+
676
+ ### Bug Fixes
677
+
678
+ * **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))
679
+ * **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)
680
+
681
+
682
+
683
+
684
+
685
+ ## [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)
686
+
687
+
688
+ ### Bug Fixes
689
+
690
+ * **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))
691
+ * **Toggle:** add id prop ([#2597](https://github.com/skbkontur/retail-ui/issues/2597)) ([82846db](https://github.com/skbkontur/retail-ui/commit/82846dbacff71a844867b88f7acb1c33eaef8bb9))
692
+ * **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))
693
+
694
+
695
+
696
+
697
+
698
+ ## [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)
699
+
700
+
701
+ ### Bug Fixes
702
+
703
+ * **Checkbox:** remove user-select:none ([#2586](https://github.com/skbkontur/retail-ui/issues/2586)) ([4da5f0c](https://github.com/skbkontur/retail-ui/commit/4da5f0cdc09d8e01f7d4ab7a7b01e58fdbad56b3))
704
+ * **Kebab:** restore menuMaxHeight prop ([#2588](https://github.com/skbkontur/retail-ui/issues/2588)) ([20b82ce](https://github.com/skbkontur/retail-ui/commit/20b82ce8a4e7a411e42f6b2c848de1308617cbdb))
705
+ * **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))
706
+ * **Toggle:** recover disabled caption styles ([#2582](https://github.com/skbkontur/retail-ui/issues/2582)) ([ef9fe96](https://github.com/skbkontur/retail-ui/commit/ef9fe969e0b59afe5ebe5c22827aa5bcdbd653f1))
707
+
708
+
709
+
710
+
711
+
712
+ # [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)
713
+
714
+
715
+ ### Bug Fixes
716
+
717
+ * **ComboBox:** handle falsy values correctly ([#2563](https://github.com/skbkontur/retail-ui/issues/2563)) ([2df7e09](https://github.com/skbkontur/retail-ui/commit/2df7e09ec6fd8f4ab9e999654263acbe8d989803))
718
+ * **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))
719
+ * **ThemePlayground:** computed vars are visible in the ThemeEditor ([62f191e](https://github.com/skbkontur/retail-ui/commit/62f191efa0234cc72175e05dcb543284fada7d7e))
720
+ * **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))
721
+
722
+
723
+ ### Features
724
+
725
+ * **Upgrades:** abillity to customize classNames prefix ([#2561](https://github.com/skbkontur/retail-ui/issues/2561)) ([fbc9ced](https://github.com/skbkontur/retail-ui/commit/fbc9ceda8d9cb9c2be7d69a7fa199cf7c9745cee))
726
+
727
+
728
+
729
+
730
+
731
+ ## [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)
732
+
733
+
734
+ ### Bug Fixes
735
+
736
+ * **Button:** add btnBackgroundClip theme var ([72708f9](https://github.com/skbkontur/retail-ui/commit/72708f9c1f58f248bf53dd0f2e75088a100711d4))
737
+ * **Button:** add title prop ([#2569](https://github.com/skbkontur/retail-ui/issues/2569)) ([5140e96](https://github.com/skbkontur/retail-ui/commit/5140e96fbd33c57aa15a720935f6904e02b1f315))
738
+ * **Paging:** use default cursor style for disabled paging link ([788f70a](https://github.com/skbkontur/retail-ui/commit/788f70a3dd3385165f3ffa0de0eb02cca887e584))
739
+ * **TokenInput:** add public focus/blur methods ([0137266](https://github.com/skbkontur/retail-ui/commit/0137266810f09f139974a3480650587bb4b69d15))
740
+
741
+
742
+
743
+
744
+
745
+ ## [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)
746
+
747
+
748
+ ### Bug Fixes
749
+
750
+ * **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)
751
+ * **FxInput:** remove refInput prop from spread ([c5f403d](https://github.com/skbkontur/retail-ui/commit/c5f403dec7342b8ce29bdb9571fba0569eefc6a6))
752
+ * **HideBodyVerticalScroll:** now scrollbar hiding always ([#2540](https://github.com/skbkontur/retail-ui/issues/2540)) ([c93db68](https://github.com/skbkontur/retail-ui/commit/c93db684f2954b075794c2ac26db761b72953614))
753
+ * **PopupMenu:** move width property from internalMenu to Popup ([20643a4](https://github.com/skbkontur/retail-ui/commit/20643a437cf302a3f017822c54320827f869932d))
754
+ * **SidePage:** replace icon close tag from link to button ([4458332](https://github.com/skbkontur/retail-ui/commit/4458332a79a143295e42ec9388ea27d0b94a7b21))
755
+ * **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))
756
+ * **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))
757
+
758
+
759
+
760
+
761
+
762
+ # [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)
763
+
764
+
765
+ ### Bug Fixes
766
+
767
+ * **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)
768
+ * **Loader:** fix focus disabling ([fcc5e1e](https://github.com/skbkontur/retail-ui/commit/fcc5e1e42dcacffcb5d0abcb79998c3e0a107e2e))
769
+ * **radio:** remove focus styles on mouse click ([876a1b8](https://github.com/skbkontur/retail-ui/commit/876a1b87ce5b0a16fe212b5a74680be7e20e1b3b))
770
+ * **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))
771
+ * **theme:** remove color variables from 8px theme ([c86ed5d](https://github.com/skbkontur/retail-ui/commit/c86ed5dd754affd93e1727305eb1f34189a5d98d))
772
+ * **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))
773
+
774
+
775
+ ### Features
776
+
777
+ * **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)
778
+
779
+
780
+
781
+
782
+
783
+ # [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)
784
+
785
+
786
+ ### Bug Fixes
787
+
788
+ * **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))
789
+ * **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)
790
+
791
+
792
+ ### Features
793
+
794
+ * **Button:** add `btnWarningSecondary` theme var and * ([#2512](https://github.com/skbkontur/retail-ui/issues/2512)) ([8a75266](https://github.com/skbkontur/retail-ui/commit/8a75266d65b73f159461313b7ec35f014ce02b37))
795
+ * **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)
796
+
797
+
798
+
799
+
800
+
801
+ # [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)
802
+
803
+
804
+ ### Bug Fixes
805
+
806
+ * **DateInput:** open keyboard on mobile devices ([#2474](https://github.com/skbkontur/retail-ui/issues/2474)) ([0a68e1c](https://github.com/skbkontur/retail-ui/commit/0a68e1c5479c95df96ad17afc2617e9444e37bf2))
807
+ * **Input:** fix disabled border on error ([#2510](https://github.com/skbkontur/retail-ui/issues/2510)) ([97619a1](https://github.com/skbkontur/retail-ui/commit/97619a18f08df130700439b503b0b29e1ec703b1))
808
+
809
+
810
+ ### Features
811
+
812
+ * **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)
813
+
814
+
815
+
816
+
817
+
818
+ # [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)
819
+
820
+
821
+ ### Bug Fixes
822
+
823
+ * **CurrencyInput:** fix delimiter for Safari ([#2495](https://github.com/skbkontur/retail-ui/issues/2495)) ([1b8789e](https://github.com/skbkontur/retail-ui/commit/1b8789ec9447fb775fb409d219105145280b05e7))
824
+ * **Tab:** fix low height artefact ([20cdc0b](https://github.com/skbkontur/retail-ui/commit/20cdc0bbbd792b6be53bb123d1f8442d3840c2d6)), closes [#2500](https://github.com/skbkontur/retail-ui/issues/2500)
825
+ * **Tooltip:** add closure workaround for Firefox and IE11 ([1236b0b](https://github.com/skbkontur/retail-ui/commit/1236b0ba35c6bff6a73b439e17db75ec91d5db6b))
826
+
827
+
828
+ ### Features
829
+
830
+ * **react-ui:** fix unstable styles ([#2488](https://github.com/skbkontur/retail-ui/issues/2488)) ([b01898d](https://github.com/skbkontur/retail-ui/commit/b01898de589e6d146618867f476fb8803a78e91c))
831
+ * **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)
832
+ * **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)
833
+
834
+
835
+
836
+
837
+
838
+ ## [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)
839
+
840
+
841
+ ### Bug Fixes
842
+
843
+ * **Select:** fix highlighting of selected item ([#2483](https://github.com/skbkontur/retail-ui/issues/2483)) ([6b5412b](https://github.com/skbkontur/retail-ui/commit/6b5412bf74bd0d9651aa0ea064c9dea7389a2b21))
844
+
845
+
846
+
847
+
848
+
849
+ # [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)
850
+
851
+
852
+ ### Bug Fixes
853
+
854
+ * **Button:** update background and border color* ([ee617bb](https://github.com/skbkontur/retail-ui/commit/ee617bb8bb2285e9ba863a7768fd666c4d0a936a))
855
+ * **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))
856
+ * **HBVS:** fix styles restoration ([89eed10](https://github.com/skbkontur/retail-ui/commit/89eed10a3efa7b049ebed87de9b634137634a0bb))
857
+ * **hint:** add hintBgColor var ([#2457](https://github.com/skbkontur/retail-ui/issues/2457)) ([3f828e6](https://github.com/skbkontur/retail-ui/commit/3f828e60d0708da94f66d1b65409e330100126d7))
858
+
859
+
860
+ ### Features
861
+
862
+ * **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)
863
+ * **SidePage:** add FocusLock ([#2467](https://github.com/skbkontur/retail-ui/issues/2467)) ([fe6ca6a](https://github.com/skbkontur/retail-ui/commit/fe6ca6af4da4b39e3973fa937fdbf09b6731d033))
864
+ * **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)
865
+
866
+
867
+
868
+
869
+
870
+ ## [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)
871
+
872
+
873
+ ### Bug Fixes
874
+
875
+ * **Modal,SidePage,HideBodyVerticalScroll:** fix performance issue ([7bd9ce6](https://github.com/skbkontur/retail-ui/commit/7bd9ce6974c2eea18537b15c6a6ee1a6e6a0a351))
876
+ * **react-ui:** add new env vars for animation disabling ([9840822](https://github.com/skbkontur/retail-ui/commit/98408221c0d80ce24cf8da8a5cdbc96fee365519))
877
+
878
+
879
+
880
+
881
+
882
+ # [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)
883
+
884
+
885
+ ### Bug Fixes
886
+
887
+ * **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))
888
+ * **Modal:** fix shadows and footer color ([#2442](https://github.com/skbkontur/retail-ui/issues/2442)) ([94064bc](https://github.com/skbkontur/retail-ui/commit/94064bc8ea613f0caac806e25eb6584849ae7d95))
889
+ * **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))
890
+ * **SidePage:** fix shadows and footer color ([#2446](https://github.com/skbkontur/retail-ui/issues/2446)) ([6b925e6](https://github.com/skbkontur/retail-ui/commit/6b925e6464f01323172e27b692dbc2278efa902d))
891
+
892
+
893
+ ### Features
894
+
895
+ * **Kebab:** add custom icon ([da3a23c](https://github.com/skbkontur/retail-ui/commit/da3a23c9f2863565120d98cb43bbad5e57303e85))
896
+ * **react-ui:** support webpack 5 ([3b20af0](https://github.com/skbkontur/retail-ui/commit/3b20af0a0b9b9455fd7f7594b27f6bf41c09eb80))
897
+
898
+
899
+
900
+
901
+
902
+ # [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)
903
+
904
+
905
+ ### Bug Fixes
906
+
907
+ * **Button:** remove middle line on arrows ([51f9395](https://github.com/skbkontur/retail-ui/commit/51f93953ff3f1e9a9afaecf866184e8c7e704dda))
908
+ * **Checkbox:** fix not triggered onFocus handler ([c8b1247](https://github.com/skbkontur/retail-ui/commit/c8b12479ce9f74c26a936bf05b2a5a65bc87453d))
909
+ * **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))
910
+ * **Radio, Checkbox:** remove borders in flat theme ([a927027](https://github.com/skbkontur/retail-ui/commit/a927027d3482f60c2e18ab38cfb269b0dc79bff6))
911
+ * **Tabs:** add resize detector in tab for updating indicator place ([347e672](https://github.com/skbkontur/retail-ui/commit/347e672e9cd964541ec0d6d1c2da5fbaef2a6b21))
912
+ * **Textarea:** skip tab focus on iframe ([6f5aa39](https://github.com/skbkontur/retail-ui/commit/6f5aa39c77eb47e21654284c106c104bdf49e0d5))
913
+
914
+
915
+ ### Features
916
+
917
+ * **Combobox:** add right icon ([#2431](https://github.com/skbkontur/retail-ui/issues/2431)) ([2c0d2c9](https://github.com/skbkontur/retail-ui/commit/2c0d2c9c990c1200d52e521434495e91f34bd9b0))
918
+
919
+
920
+
921
+
922
+
923
+ # [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)
924
+
925
+
926
+ ### Bug Fixes
927
+
928
+ * **react-ui:** update default text color ([57189e6](https://github.com/skbkontur/retail-ui/commit/57189e6bebbfa63e293844c77c43b52153d13ea6))
929
+ * **ThemeFactory:** create themes based on 8px by default ([141cf24](https://github.com/skbkontur/retail-ui/commit/141cf24b91a084c11fa641df0b3faf8dd3ea1612))
930
+ * 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)
931
+ * 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)
932
+ * **Button:** add white-space: nowrap for linkbutton ([b5ceeed](https://github.com/skbkontur/retail-ui/commit/b5ceeedeb2216281f86e1c34a85a6ecbb16fd666))
933
+ * **Button:** fix icon padding with empty children ([476a05d](https://github.com/skbkontur/retail-ui/commit/476a05de13f7276905bf4ac0081bf34d4dde32eb))
934
+ * **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))
935
+ * **Theme:** improve themes markers, no need to replicate them anymore ([f635939](https://github.com/skbkontur/retail-ui/commit/f6359395fb7a20129c24ad8bb17f424368094fe7))
936
+ * **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)
937
+ * **Tooltip,Hint:** change popup margin ([7c32369](https://github.com/skbkontur/retail-ui/commit/7c32369f12cb73fc0c77a46a10db2313e1dbfc43))
938
+
939
+
940
+ ### Features
941
+
942
+ * **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))
943
+ * **Button:** new loading state ([#2256](https://github.com/skbkontur/retail-ui/issues/2256)) ([c4d6537](https://github.com/skbkontur/retail-ui/commit/c4d65379f382c6fe5ddd4293ff9974443a3cae76))
944
+ * **Fias:** remove component ([cd3ecdf](https://github.com/skbkontur/retail-ui/commit/cd3ecdf7d8c2bc3b7a1ce583efc786773db606d4))
945
+ * **LocaleContext:** allow usage with any component ([cb074f6](https://github.com/skbkontur/retail-ui/commit/cb074f6231748b9a54d382c78561a00fb0c16a68))
946
+ * **LocaleProvider:** remove component ([906b485](https://github.com/skbkontur/retail-ui/commit/906b48532150409b96643460d02265315caeb84b))
947
+ * **Logotype:** remove component ([9455ffa](https://github.com/skbkontur/retail-ui/commit/9455ffad8d528ec312c0879622ec2c2e8032880a))
948
+ * **MenuItem:** remove alkoLink prop ([a69ae24](https://github.com/skbkontur/retail-ui/commit/a69ae24c215ac17c1e3dd914b8c623f86553258c))
949
+ * **react-ui:** new arrow icons ([#2331](https://github.com/skbkontur/retail-ui/issues/2331)) ([cf9e76f](https://github.com/skbkontur/retail-ui/commit/cf9e76ff124f4286d4b1bffe242807537c10d578))
950
+ * **react-ui:** rename themes ([#2391](https://github.com/skbkontur/retail-ui/issues/2391)) ([ed2bd19](https://github.com/skbkontur/retail-ui/commit/ed2bd1959b488a97aa9d3ab96cbf40c504ca0a8a))
951
+ * **react-ui:** turn on 8px theme by default ([b2e0087](https://github.com/skbkontur/retail-ui/commit/b2e00876762bf7ec4d40a3424110aee713ef33d6))
952
+ * **Select, Dropdown:** remove diadocLinkIcon prop ([0374bad](https://github.com/skbkontur/retail-ui/commit/0374badf35daabae1984167a2a41751af2c18524))
953
+ * **Spinner, Loader:** remove cloud prop ([923a57c](https://github.com/skbkontur/retail-ui/commit/923a57c9aac9aa1dff1775dca29f6dc548c5d358))
954
+ * **SpinnerOld:** remove component ([8c76fac](https://github.com/skbkontur/retail-ui/commit/8c76fac129e503eb9e0a49f5f09e3adb90dec8a1))
955
+ * **ThemeConsumer:** remove component ([9c01ab9](https://github.com/skbkontur/retail-ui/commit/9c01ab9e0e117fdaac03b12d49adc03db05ddba7))
956
+ * **ThemeProvider:** remove component ([c932bb7](https://github.com/skbkontur/retail-ui/commit/c932bb75f5b2ba14238aa363e2f7756bae38adda))
957
+ * **Toggle:** deprecate 'color' prop ([f7b9b22](https://github.com/skbkontur/retail-ui/commit/f7b9b22d154b5cdf9225a62815f94a05cc9dec77))
958
+ * **Toggle:** implement error and warning states via shadows ([c67f8a5](https://github.com/skbkontur/retail-ui/commit/c67f8a5b81b1d5a11f0637e49ee565485effe4aa))
959
+ * **Tooltip,Hint:** set useWrapper prop to false by default ([74bdb29](https://github.com/skbkontur/retail-ui/commit/74bdb299c19744f2c46052c3ed98b438bf1a221d))
960
+ * **TopBar:** remove component ([5a67478](https://github.com/skbkontur/retail-ui/commit/5a67478751145fcd2445e283762ab48b729ddc23))
961
+
962
+
963
+ ### Reverts
964
+
965
+ * Revert "test(Button): change size of screenshot" ([25887e6](https://github.com/skbkontur/retail-ui/commit/25887e688fb7c1a4d203baaf020c78e56d24486b))
966
+
967
+
968
+ ### BREAKING CHANGES
969
+
970
+ * **react-ui:** default text color has been changed to #333333
971
+ * **react-ui:** themes have been renamed (see migration.md)
972
+ * **react-ui:** default theme has changed
973
+ * Color of focus border and background of active menu items changed from `#5199db` to `#1D85D0`
974
+ * **Tooltip,Hint:** It may affect position of Tooltips and Hints over your element due default wrapper removal. Also default offsets were changed.
975
+ * **ThemeProvider:** component `ThemeProvider` was removed please use `ThemeContext` instead. See [ThemeContext](https://tech.skbkontur.ru/react-ui/#/Customization/ThemeContext).
976
+ * **ThemeConsumer:** component `ThemeConsumer` was deprecated and removed please use `ThemeContext` instead
977
+ * **Select, Dropdown:** Prop `diadocLinkIcon` was deprecated use prop `_renderButton` instead
978
+ * **MenuItem:** Prop `alkoLink` was deprecated please use `link` instead
979
+ * **LocaleProvider:** Component `LocaleProvider` has been removed, please use `LocaleContext` instead
980
+ * **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).
981
+ * **SpinnerOld:** Component `SpinnerOld` has been removed, please use component from @skbkontur/react-ui-addons
982
+ * **Logotype:** Component `Logotype` has been removed, please use component from @skbkontur/react-ui-addons
983
+ * **Fias:** Component `Fias` has been removed, please use component from @skbkontur/react-ui-addons
984
+ * **TopBar:** Component `TopBar` has been removed, please use component from `@skbkontur/react-ui-addons`
985
+
986
+
987
+
988
+
989
+
990
+ # [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)
991
+
992
+
993
+ ### Features
994
+
995
+ * support React 17 ([#2360](https://github.com/skbkontur/retail-ui/issues/2360)) ([066ff68](https://github.com/skbkontur/retail-ui/commit/066ff681477d415177a6312c218e49ed5baa4c44))
996
+ * **DropdownMenu:** add prop width ([b49e8c0](https://github.com/skbkontur/retail-ui/commit/b49e8c0d05d085ac7e175899ec064d5cc7192507))
997
+
998
+
999
+
1000
+
1001
+
1002
+ ## [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)
1003
+
1004
+
1005
+ ### Bug Fixes
1006
+
1007
+ * **Hint:** clear opening timer ([0a03c36](https://github.com/skbkontur/retail-ui/commit/0a03c36eef19dbaff51a774cee066a3255db5d3d))
1008
+ * **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)
1009
+
1010
+
1011
+
1012
+
1013
+
1014
+ ## [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)
1015
+
1016
+
1017
+ ### Bug Fixes
1018
+
1019
+ * **SidePage:** fix sidepage counting for adding margins and shadows ([bb24bf6](https://github.com/skbkontur/retail-ui/commit/bb24bf6f08d953ba0cd935bbf17f88c125fcef8a))
1020
+
1021
+
1022
+
1023
+
1024
+
1025
+ # [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)
1026
+
1027
+
1028
+ ### Bug Fixes
1029
+
1030
+ * **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)
1031
+ * **Toast:** increase z-index to always render on top of everything ([23d5178](https://github.com/skbkontur/retail-ui/commit/23d5178b96013768df751a2936bb1d81046747c1))
1032
+
1033
+
1034
+ ### Features
1035
+
1036
+ * **ComboBox:** support "inputMode" prop ([259ea32](https://github.com/skbkontur/retail-ui/commit/259ea32c2e3107d6f81bbd0da57969a1a49ca307))
1037
+ * **react-ui:** complete 8px theme ([#2322](https://github.com/skbkontur/retail-ui/issues/2322)) ([f6ac143](https://github.com/skbkontur/retail-ui/commit/f6ac1431c49191b6b151eace72b81eba0f23a6ff))
1038
+ * **TokenInput:** support "inputMode" prop ([452eb0c](https://github.com/skbkontur/retail-ui/commit/452eb0c995e80858467e235c480d04f54e685320))
1039
+
1040
+
1041
+
1042
+
1043
+
1044
+ # [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)
1045
+
1046
+
1047
+ ### Bug Fixes
1048
+
1049
+ * **Autocomplete:** use prop `active` from `RenderLayer` ([031940a](https://github.com/skbkontur/retail-ui/commit/031940ad30cbe84547741313017bfe04de52cfc3))
1050
+ * **Checkbox:** fix indeterminate state in IE11/Edge ([ff62f26](https://github.com/skbkontur/retail-ui/commit/ff62f2655e45ce20e1b151cdb08e570ab5d3c40d))
1051
+
1052
+
1053
+ ### Features
1054
+
1055
+ * **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)
1056
+
1057
+
1058
+
1059
+
1060
+
1061
+ ## [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)
1062
+
1063
+
1064
+ ### Bug Fixes
1065
+
1066
+ * **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)
1067
+
1068
+
1069
+
1070
+
1071
+
1072
+ # [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)
1073
+
1074
+
1075
+ ### Bug Fixes
1076
+
1077
+ * **Sticky:** avoid margins collapsing ([a39f3fc](https://github.com/skbkontur/retail-ui/commit/a39f3fcd24e2ffb2f163d86c6dbda4320f681f79))
1078
+ * **TokenInput:** don't call onBlur until focus is really lost ([7a6c856](https://github.com/skbkontur/retail-ui/commit/7a6c8563dd991d63511fe06561ee61a62d804c5e))
1079
+
1080
+
1081
+ ### Features
1082
+
1083
+ * **Loader:** add component prop ([40ea9b2](https://github.com/skbkontur/retail-ui/commit/40ea9b2b6e050927e503763e7ec33436dfa704df))
1084
+ * forward common props (className, style, data-*) ([#2257](https://github.com/skbkontur/retail-ui/issues/2257)) ([626ac07](https://github.com/skbkontur/retail-ui/commit/626ac07178e4d2139b03e6a6cb3e04a8e69475de))
1085
+ * **TokenInput:** onUnexpectedInput prop added ([cba1d76](https://github.com/skbkontur/retail-ui/commit/cba1d769a37620b25061b1e60541b67cf4fbb701))
1086
+
1087
+
1088
+
1089
+
1090
+
1091
+ # [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)
1092
+
1093
+
1094
+ ### Bug Fixes
1095
+
1096
+ * **Select:** fix typo in placeholder ([#2275](https://github.com/skbkontur/retail-ui/issues/2275)) ([bf1beb8](https://github.com/skbkontur/retail-ui/commit/bf1beb8288dd0376f43edf487c96267ef19e723a))
1097
+ * **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)
1098
+ * **Textarea:** fix line breaks inside Gapped in IE; add story ([2cec37c](https://github.com/skbkontur/retail-ui/commit/2cec37cccb9c0b3c02e0436d28cbd4d361f07e6d))
1099
+
1100
+
1101
+ ### Features
1102
+
1103
+ * **Link:** new loading state ([#2271](https://github.com/skbkontur/retail-ui/issues/2271)) ([f494fd8](https://github.com/skbkontur/retail-ui/commit/f494fd844b50eeed0cbf60a1da27e213976c143f))
1104
+
1105
+
1106
+
1107
+
1108
+
1109
+ ## [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)
1110
+
1111
+
1112
+ ### Bug Fixes
1113
+
1114
+ * **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))
1115
+
1116
+
1117
+
1118
+
1119
+
1120
+ # [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)
1121
+
1122
+
1123
+ ### Features
1124
+
1125
+ * ssr support ([#2103](https://github.com/skbkontur/retail-ui/issues/2103)) ([506a7f6](https://github.com/skbkontur/retail-ui/commit/506a7f63337cc4ca2567581495959b1656fedd18))
1126
+
1127
+
1128
+
1129
+
1130
+
1131
+ # [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)
1132
+
1133
+
1134
+ ### Bug Fixes
1135
+
1136
+ * **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)
1137
+ * **Modal.Header:** fix right padding with noClose ([50115db](https://github.com/skbkontur/retail-ui/commit/50115db98f4bf2ca70398b20504ce7ef04d71510))
1138
+ * **RadioGroup:** fix gaps between radios for 8px theme ([ef95117](https://github.com/skbkontur/retail-ui/commit/ef9511755a8869d75c52633148f5ef8d90ddad2b))
1139
+ * **ScrollContainer:** properly handle scroll's state change ([e61d825](https://github.com/skbkontur/retail-ui/commit/e61d825dcac36460fa56a7cb33907c277f32b78f))
1140
+
1141
+
1142
+ ### Features
1143
+
1144
+ * **Textarea:** add chars counter ([5580592](https://github.com/skbkontur/retail-ui/commit/558059275c6a563b5f9348570b7193b400ec3c00)), closes [#2208](https://github.com/skbkontur/retail-ui/issues/2208)
1145
+
1146
+
1147
+
1148
+
1149
+
1150
+ # [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)
1151
+
1152
+
1153
+ ### Bug Fixes
1154
+
1155
+ * **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)
1156
+ * **Input:** fix disabled color in Safari ([5b35688](https://github.com/skbkontur/retail-ui/commit/5b356880aea96fbe716eaf3cb8d0cedf72f51542))
1157
+ * **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)
1158
+ * **Modal:** fix cross's box-sizing ([e734022](https://github.com/skbkontur/retail-ui/commit/e7340220f6bfabaed5c5b74fd094767a47c8c4e0))
1159
+ * **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)
1160
+ * **Textarea:** correct onCut and onPaste handlers ([ee04b65](https://github.com/skbkontur/retail-ui/commit/ee04b65f6b0421df06f08014de6a226c428cb49c))
1161
+
1162
+
1163
+ ### Features
1164
+
1165
+ * **ComboBox:** add leftIcon prop ([d7a4904](https://github.com/skbkontur/retail-ui/commit/d7a49047717a2a5acefdc2136e3edccc0a56a703))
1166
+ * **TopBarItem:** accept ReactElement as icon ([4fa4609](https://github.com/skbkontur/retail-ui/commit/4fa460994a0e1043cddfbb1f485cb761b801f3e2))
1167
+
1168
+
1169
+
1170
+
1171
+
1172
+ # [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)
1173
+
1174
+
1175
+ ### Features
1176
+
1177
+ * **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)
1178
+
1179
+
1180
+
1181
+
1182
+
1183
+ # [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)
1184
+
1185
+
1186
+ ### Bug Fixes
1187
+
1188
+ * **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)
1189
+ * **ModalStack:** add fallback for `fbemitter` from old versions ([c1ece9c](https://github.com/skbkontur/retail-ui/commit/c1ece9ce279a113c82fa325a3001d0067db18436))
1190
+ * **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)
1191
+ * **ScrollContainer:** fix scroll state calculation ([4eb0142](https://github.com/skbkontur/retail-ui/commit/4eb0142844ca9145da1aae4c5a9a1b3cd5045310)), closes [#2190](https://github.com/skbkontur/retail-ui/issues/2190)
1192
+ * **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)
1193
+ * **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)
1194
+ * **TokenInput:** refresh items after paste from clipboard ([fcf09c6](https://github.com/skbkontur/retail-ui/commit/fcf09c6000da720a3f585b288edc8157a92d8de7))
1195
+ * **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)
1196
+
1197
+
1198
+ ### Features
1199
+
1200
+ * **DateInput:** add prop `autoFocus` ([2960ab9](https://github.com/skbkontur/retail-ui/commit/2960ab9af4fc2519e15caf5782418999efcb9270))
1201
+
1202
+
1203
+
1204
+
1205
+
1206
+ # [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)
1207
+
1208
+
1209
+ ### Bug Fixes
1210
+
1211
+ * **Autocomplete:** support relative width ([#2104](https://github.com/skbkontur/retail-ui/issues/2104)) ([3bd9a13](https://github.com/skbkontur/retail-ui/commit/3bd9a13b2309b9051054c419500786d98196e6c9))
1212
+ * **ComboBox:** support () => null in renderNotFound ([bb7a01a](https://github.com/skbkontur/retail-ui/commit/bb7a01ae96436baca900651378545adb6138a4c1))
1213
+ * **modal:** fix crossicon into svg ([996dc90](https://github.com/skbkontur/retail-ui/commit/996dc90a15d45d13ff7d98129a863579a05ec915))
1214
+ * **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)
1215
+ * **modalclose:** up in Zindex, now upper than ModalHeader ([de8d81c](https://github.com/skbkontur/retail-ui/commit/de8d81cc343d31a4a6c49b6cc065086f817a216b))
1216
+
1217
+
1218
+ ### Features
1219
+
1220
+ * **modalbody:** add prop noPadding ([7163909](https://github.com/skbkontur/retail-ui/commit/71639091d9fa2e96fe4bd803245fd22a09045e8d))
1221
+
1222
+
1223
+
1224
+
1225
+
1226
+
1227
+ # [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)
1228
+
1229
+
1230
+ ### Bug Fixes
1231
+
1232
+ * **customization:** replace textareaHeight with textareaMinHeight ([42e3d4f](https://github.com/skbkontur/retail-ui/commit/42e3d4f04956235572c967f1891615bf409b5ed8))
1233
+ * **DatePicker:** return TodayLink's border ([9206bee](https://github.com/skbkontur/retail-ui/commit/9206bee72389bfa00885c8ab5d0d7431e11e0d1a))
1234
+ * **Textarea:** fix background color regress ([#2170](https://github.com/skbkontur/retail-ui/issues/2170)) ([d206ff2](https://github.com/skbkontur/retail-ui/commit/d206ff2bbfb174e7799241fabcac9123a607950b))
1235
+ * **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)
1236
+
1237
+
1238
+ ### Features
1239
+
1240
+ * **Toggle:** add use 'children' ([33e725c](https://github.com/skbkontur/retail-ui/commit/33e725c69373cd44dc7a2ec6fd2d4c1855b456fb)), closes [#1723](https://github.com/skbkontur/retail-ui/issues/1723)
1241
+ * **Tooltip:** add manual control ([ad0d0a2](https://github.com/skbkontur/retail-ui/commit/ad0d0a29da1f13628cc54c92b36b38dfb45156a6)), closes [#914](https://github.com/skbkontur/retail-ui/issues/914)
1242
+
1243
+
1244
+
1245
+
1246
+
1247
+
1248
+ # [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)
1249
+
1250
+
1251
+ ### Bug Fixes
1252
+
1253
+ * **Button:** checked + disabled кнопка сдвигает текст на 1 px ([da2e822](https://github.com/skbkontur/retail-ui/commit/da2e822df3d12c2afb743e941120bc52f910efe5))
1254
+ * **spinner:** fix spinner fallback mini ([9a766e3](https://github.com/skbkontur/retail-ui/commit/9a766e3b9110dfa19babf3446555f5d8da68b182))
1255
+ * **Tab:** return operability with links from react-router-dom ([8da96a9](https://github.com/skbkontur/retail-ui/commit/8da96a97511459f8164862a1dc61d4a591fff466))
1256
+
1257
+
1258
+ ### Features
1259
+
1260
+ * **Switcher:** Добавляет disabled состояние ([d5b13a8](https://github.com/skbkontur/retail-ui/commit/d5b13a8d0c345fc5bba97f6b407b9b2df0f78d2c))
1261
+
1262
+
1263
+
1264
+
1265
+
1266
+ ## [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)
1267
+
1268
+
1269
+ ### Bug Fixes
1270
+
1271
+ * **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)
1272
+ * **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)
1273
+ * **PasswordInput:** change eye icon ([e36c1ba](https://github.com/skbkontur/retail-ui/commit/e36c1baa647993450e9f88e7e48f2f6f24066745)), closes [#2111](https://github.com/skbkontur/retail-ui/issues/2111)
1274
+ * **Popup:** prevent wrong styles order ([08c7c4c](https://github.com/skbkontur/retail-ui/commit/08c7c4ce45238f72357b1ab2210dccda337f5f45)), closes [#2005](https://github.com/skbkontur/retail-ui/issues/2005)
1275
+ * **Select.styles:** fix span width with left icon ([e2dceec](https://github.com/skbkontur/retail-ui/commit/e2dceec963c9c2b038abc13e8012666635b18098))
1276
+ * **theme:** add var 'tokenInputTextColor' ([cbad454](https://github.com/skbkontur/retail-ui/commit/cbad454a701f31fb97f33da423c0317e8340f429)), closes [#2099](https://github.com/skbkontur/retail-ui/issues/2099)
1277
+
1278
+
1279
+
1280
+
1281
+
1282
+ ## [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)
1283
+
1284
+
1285
+ ### Bug Fixes
1286
+
1287
+ * **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)
1288
+ * **Loader:** обновление позиции лоадера при переключении active на true ([acb5bbe](https://github.com/skbkontur/retail-ui/commit/acb5bbe31a9d2d1132d88862a6be94bb8ef227c1)), closes [#2092](https://github.com/skbkontur/retail-ui/issues/2092)
1289
+ * **MenuItem:** pass state into custom component ([073f1fa](https://github.com/skbkontur/retail-ui/commit/073f1fa6e542e06cc4f830e418118ace8cb4648f))
1290
+
1291
+
1292
+
1293
+
1294
+
1295
+ ## [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)
1296
+
1297
+
1298
+ ### Bug Fixes
1299
+
1300
+ * **Input:** fix disabled bg color for 8px theme ([a4c8b28](https://github.com/skbkontur/retail-ui/commit/a4c8b286ebbf732a8c919527243beb76674647db))
1301
+ * **react-ui:** fix controlHeight vars for non-8px themes ([db08994](https://github.com/skbkontur/retail-ui/commit/db089943e6e342551bcc1e4ae3b1a31e10e99a1c))
1302
+ * **Switcher:** add button vars ([2b932df](https://github.com/skbkontur/retail-ui/commit/2b932df248da61bee182af96c208ec6626338cdb))
1303
+ * **Switcher:** add variables for label ([fe0f8d1](https://github.com/skbkontur/retail-ui/commit/fe0f8d16c76f4cc636c9729ba71c66021e885291))
1304
+ * **Switcher:** adjust button's paddings for 8px theme ([3d4ad29](https://github.com/skbkontur/retail-ui/commit/3d4ad29975cc0aa11c1a057e438f956513fceee7))
1305
+ * **Tab:** fix Indicator position for 8px theme ([19b5b7f](https://github.com/skbkontur/retail-ui/commit/19b5b7fc71b02f3030ac4aac9e251f418a611955))
1306
+ * **Tab:** use large size values in 8px theme ([a2a1f0d](https://github.com/skbkontur/retail-ui/commit/a2a1f0d28195c0bbd1f2cde585c99f66a26935ab))
1307
+ * **TokenInput:** fix styles issue ([5ce5578](https://github.com/skbkontur/retail-ui/commit/5ce55783b10ae676afe47ccfea5f0d952f1c7981)), closes [#1952](https://github.com/skbkontur/retail-ui/issues/1952)
1308
+ * **TokenInput:** use font-size and line-height vars; align tokens ([8a9dc0b](https://github.com/skbkontur/retail-ui/commit/8a9dc0b9bdd3d2fc42279035935f34a11f404bb6))
1309
+
1310
+
1311
+
1312
+
1313
+
1314
+ # [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)
1315
+
1316
+
1317
+ ### Bug Fixes
1318
+
1319
+ * **ThemeEditor:** restore scroll to variable by link click ([0454ae6](https://github.com/skbkontur/retail-ui/commit/0454ae6d2b92cd61935fc2ded857b79aef86e9bc))
1320
+ * **ThemeFactory:** don't ignore computed properties in factory methods ([9eb6cd8](https://github.com/skbkontur/retail-ui/commit/9eb6cd844a38ed182d35dde58bb443abcb1ffd23))
1321
+ * **ThemePlayground:** fix ThemeEditor's styles ([0ab8225](https://github.com/skbkontur/retail-ui/commit/0ab82253bfa26f65a4998a51cbf0742a1d0f90a5))
1322
+
1323
+
1324
+ ### Features
1325
+
1326
+ * **react-ui:** add 8px theme ([652f193](https://github.com/skbkontur/retail-ui/commit/652f193c244fcf6bc82afe324c46ccec1f63bff1))
1327
+ * **ThemePlayground:** add 8px toggle ([7cd6681](https://github.com/skbkontur/retail-ui/commit/7cd668178b5a65bd5564e86254bf8c4f5faf8839))
1328
+
1329
+
1330
+
1331
+
1332
+
1333
+ ## [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)
1334
+
1335
+
1336
+ ### Bug Fixes
1337
+
1338
+ * **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)
1339
+ * **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)
1340
+
1341
+
1342
+
1343
+
1344
+
1345
+ ## [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)
1346
+
1347
+
1348
+ ### Bug Fixes
1349
+
1350
+ * **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)
1351
+ * **Gapped:** fix left margin for single child ([7bf690a](https://github.com/skbkontur/retail-ui/commit/7bf690afabfff99095e2b1d183c9744e886d7917))
1352
+ * **react-ui:** use NODE_ENV=test for animations disabling ([d1fda47](https://github.com/skbkontur/retail-ui/commit/d1fda4755e3b38248aa51d9e06a4a068c13b770e))
1353
+
1354
+
1355
+
1356
+
1357
+
1358
+ # [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)
1359
+
1360
+
1361
+ ### Bug Fixes
1362
+
1363
+ * **[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)
1364
+ * **Checkbox:** change variable theme `chbCheckedActiveBg` ([7fd2464](https://github.com/skbkontur/retail-ui/commit/7fd2464d4f63bc2ef0bea7561146ab7907e0255e)), closes [#1935](https://github.com/skbkontur/retail-ui/issues/1935)
1365
+ * **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)
1366
+ * **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)
1367
+ * **react-ui:** fix tree-shaking that isn't working ([9545add](https://github.com/skbkontur/retail-ui/commit/9545add7748119fcb252e45188ebab953c47bf8e))
1368
+ * **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)
1369
+ * **tooltip:** fix active props to RenderLayer ([347004e](https://github.com/skbkontur/retail-ui/commit/347004eb52ef52cd637379062ea8ca6c0cab7849))
1370
+ * **tooltip:** only hover&focus ([b61fb3b](https://github.com/skbkontur/retail-ui/commit/b61fb3bbadb2dca467ac42d5aef773f1f293a4ff))
1371
+
1372
+
1373
+ ### Features
1374
+
1375
+ * **Checkbox:** add variable theme `chbCheckedActiveShadow` ([183d198](https://github.com/skbkontur/retail-ui/commit/183d198bfc4885eb0fbcd7dcda34f6245f22d2f7))
1376
+ * **Link:** fill rel attr with 'noopener noreferrer' ([8f3b79b](https://github.com/skbkontur/retail-ui/commit/8f3b79b82e3a0c5f63761f7f25b02914735808ac))
1377
+
1378
+
1379
+
1380
+
1381
+
1382
+ # [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)
1383
+
1384
+
1385
+ ### Bug Fixes
1386
+
1387
+ * **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)
1388
+ * **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)
1389
+ * **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)
1390
+ * **Select:** set width to 100% ([b924d00](https://github.com/skbkontur/retail-ui/commit/b924d00aa6d01ffbe528f2223ffa2f4c7128ae3d)), closes [#1994](https://github.com/skbkontur/retail-ui/issues/1994)
1391
+ * **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)
1392
+ * **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)
1393
+ * **TopBar:** fix noShadow prop ([4ba47af](https://github.com/skbkontur/retail-ui/commit/4ba47af14eb2baf05383bf9270ae99a6195e0e4f)), closes [#1997](https://github.com/skbkontur/retail-ui/issues/1997)
1394
+
1395
+
1396
+ ### Features
1397
+
1398
+ * **TokenInput:** new parameter 'onAddItem' in 'renderAddButton' prop ([6bcfcc6](https://github.com/skbkontur/retail-ui/commit/6bcfcc6a1a2c32592d361b657b0888402219681e))
1399
+
1400
+
1401
+
1402
+
1403
+
1404
+ ## [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)
1405
+
1406
+
1407
+ ### Bug Fixes
1408
+
1409
+ * **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)
1410
+ * **Toggle:** add custom boxShadow for toggle ([1922285](https://github.com/skbkontur/retail-ui/commit/1922285bd65cca03b79047f8b09f484ec433bba2))
1411
+
1412
+
1413
+
1414
+
1415
+
1416
+ # [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)
1417
+
1418
+
1419
+ ### Bug Fixes
1420
+
1421
+ * **logotype:** paddings, icon with figma ([6a84800](https://github.com/skbkontur/retail-ui/commit/6a848008b7f431b7294786f5e36155be5b433565))
1422
+ * **textarea:** fix react warning ([647f9f4](https://github.com/skbkontur/retail-ui/commit/647f9f4ca0fa7484d974a4ea7a11a0b49d087bd0))
1423
+
1424
+
1425
+ ### Features
1426
+
1427
+ * **Modal:** add 'disableFocusLock' prop ([c046c38](https://github.com/skbkontur/retail-ui/commit/c046c386d1439044ba7ee869e9ce57b203841b90))
1428
+ * **ThemeFactory:** accept a base theme as a second arg of create method ([b92b20b](https://github.com/skbkontur/retail-ui/commit/b92b20bcac53face9280dd5951e0cb467b34d4a4))
1429
+ * **TokenInput:** new prop 'renderAddButton' ([06a2010](https://github.com/skbkontur/retail-ui/commit/06a201064db9f929aa8b7ff8e35f291457f328c8))
1430
+ * **TokenInput:** new prop "onInputValueChange" ([b621c8d](https://github.com/skbkontur/retail-ui/commit/b621c8d8eadbdbb88a7d6fcfd88522fc5ed879a4))
1431
+ * **TokenInput:** new public api method 'reset' ([14df810](https://github.com/skbkontur/retail-ui/commit/14df810b1b53896c62c18d16dc0a1d1aef94ee2f))
1432
+
1433
+
1434
+
1435
+
1436
+
1437
+ # 2.0.0 (2020-03-24)
1438
+
1439
+
1440
+ ### Bug Fixes
1441
+
1442
+ * button/checkbox theme styles actualize ([10ddc66](https://github.com/skbkontur/retail-ui/commit/10ddc668e84bc997a0a332dedace75982d5ba9bf))
1443
+ * **checkbox:** sync styles between defalt and flat themes ([e0dcc7b](https://github.com/skbkontur/retail-ui/commit/e0dcc7bc02c281df74e0b7bf841d66065156ea14))
1444
+ * **fias:** warning throw exeption ([bb5aa2c](https://github.com/skbkontur/retail-ui/commit/bb5aa2cce8ae33f42fa9fc80b5708b9b5be211df))
1445
+ * **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)
1446
+
1447
+
1448
+ ### Code Refactoring
1449
+
1450
+ * **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)
1451
+ * **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)
1452
+ * **Tab:** use latest Context API instead of HOC ([10e6c32](https://github.com/skbkontur/retail-ui/commit/10e6c3213d039bc18251af0b38e20a263b00019b))
1453
+ * **TopBar:** rename inner classes ([ff974b4](https://github.com/skbkontur/retail-ui/commit/ff974b46879d8f8e27a0e3679699db4863eaecc3)), closes [#1883](https://github.com/skbkontur/retail-ui/issues/1883)
1454
+
1455
+
1456
+ ### Features
1457
+
1458
+ * move all theme variables inside js, remove less support ([e219505](https://github.com/skbkontur/retail-ui/commit/e2195058c70424dc7e097cc8d174afbb05a9fd7d))
1459
+ * **localecontext:** add to export ([ad7bb41](https://github.com/skbkontur/retail-ui/commit/ad7bb41316378fe37af8cc6ad9efe15537804f7a))
1460
+ * **ThemeContext:** add to export ([bdeb112](https://github.com/skbkontur/retail-ui/commit/bdeb1123e6eb393b56c27c50ddff2f6721d54850))
1461
+
1462
+
1463
+ ### Performance Improvements
1464
+
1465
+ * **Button:** memoize css-in-js styles ([a7934d0](https://github.com/skbkontur/retail-ui/commit/a7934d0a00fe68a1d8fea55737669394730f6fe2))
1466
+ * **calendar:** memoize css-in-js styles ([7865514](https://github.com/skbkontur/retail-ui/commit/7865514f6849088aa4665ff85bfec4825d932147))
1467
+ * **center:** memoize css-in-js styles ([275593a](https://github.com/skbkontur/retail-ui/commit/275593ab15eaa84b75412163956b45c7203a91ce))
1468
+ * **checkbox:** memoize css-in-js styles ([d808cd0](https://github.com/skbkontur/retail-ui/commit/d808cd02dae9ba9a46efb01033b203f33b3259c8))
1469
+ * **customcombobox:** memoize css-in-js styles ([984d565](https://github.com/skbkontur/retail-ui/commit/984d565adb51588f1d8ff0fbd50197a51064f169))
1470
+ * **DateFragmentsView:** memoize css-in-js styles ([49c8897](https://github.com/skbkontur/retail-ui/commit/49c8897437b79987f2b0c78b8f4ec331d74c7fb9))
1471
+ * **datepicker:** memoize css-in-js styles ([364d49e](https://github.com/skbkontur/retail-ui/commit/364d49eb8a836423ab1e4df5c69af14deb0c1187))
1472
+ * **dateselect:** memoize css-in-js styles ([7d4c1ac](https://github.com/skbkontur/retail-ui/commit/7d4c1ac3587568a6ffd5b1e32b55eb7b8db8f4c5))
1473
+ * **Fias:** memoize css-in-js styles ([02a3d4e](https://github.com/skbkontur/retail-ui/commit/02a3d4e6639fffee9302ef6791e6d3185bd18037))
1474
+ * **group:** memoize css-in-js styles ([b68f50b](https://github.com/skbkontur/retail-ui/commit/b68f50bdfa427abea6b1860dbcf4753670a02c83))
1475
+ * **hint:** memoize css-in-js styles ([c3117bb](https://github.com/skbkontur/retail-ui/commit/c3117bb1ec60ee350c28d74a957c37e8cbdafe06))
1476
+ * **icon16px:** memoize css-in-js styles ([a2e5ae5](https://github.com/skbkontur/retail-ui/commit/a2e5ae5072769c4805cf4b3ced90b9eccd047079))
1477
+ * **icon20px:** memoize css-in-js styles ([83fa890](https://github.com/skbkontur/retail-ui/commit/83fa8909ada6927bcb4dc26c65d9b9d1fbc1a143))
1478
+ * **Input:** memoize css-in-js styles ([05c8344](https://github.com/skbkontur/retail-ui/commit/05c8344489f6929b1246c08c498b49304229080a))
1479
+ * **InputLikeText:** memoize css-in-js styles ([fb5527d](https://github.com/skbkontur/retail-ui/commit/fb5527dacf63545004387d4d8f194cd2efc60485))
1480
+ * **internalmenu:** memoize css-in-js styles ([5ca5d8f](https://github.com/skbkontur/retail-ui/commit/5ca5d8f5693da7bbfd2f2b53b96eb50e0cdb25f2))
1481
+ * **kebab:** memoize css-in-js styles ([c95a77a](https://github.com/skbkontur/retail-ui/commit/c95a77a5a1b2ac172d54b9c67e93bb32fb96ed66))
1482
+ * **link:** memoize css-in-js styles ([e204263](https://github.com/skbkontur/retail-ui/commit/e2042636ac17b988c098a8ca7f0a26fdd99d7506))
1483
+ * **loader:** memoize css-in-js styles ([0fcab14](https://github.com/skbkontur/retail-ui/commit/0fcab14f19dcfa87aff058e1470efe1c69bc5559))
1484
+ * **logotype:** memoize css-in-js styles ([16449a1](https://github.com/skbkontur/retail-ui/commit/16449a154cd090ad367caeffb49df23dc50a6b88))
1485
+ * **MaskedInput:** memoize css-in-js styles ([7cd3695](https://github.com/skbkontur/retail-ui/commit/7cd3695162faa7b5d2ebdf5f7b40c6586aeeaf60))
1486
+ * **menu:** memoize css-in-js styles ([ad46309](https://github.com/skbkontur/retail-ui/commit/ad46309ccf6e47946be7f087402d289d6c1a1274))
1487
+ * **menuheader:** memoize css-in-js styles ([eff22b1](https://github.com/skbkontur/retail-ui/commit/eff22b16114d5e030ec258c29a6032f9ba9604bd))
1488
+ * **menuitem:** memoize css-in-js styles ([02a2275](https://github.com/skbkontur/retail-ui/commit/02a227505fc55b6b16c9429ae70d29b8407d8739))
1489
+ * **menuseparator:** memoize css-in-js styles ([e9ac810](https://github.com/skbkontur/retail-ui/commit/e9ac8102b814aa3377dec2c011d66f1e2aa43882))
1490
+ * **modal:** memoize css-in-js styles ([f51e7bf](https://github.com/skbkontur/retail-ui/commit/f51e7bf87d5b66b0c5038b893369beb6b0b7dc41))
1491
+ * **paging:** memoize css-in-js styles ([56f247c](https://github.com/skbkontur/retail-ui/commit/56f247c5f367f3576f1443b8647516a1af873f37))
1492
+ * **PasswordInput:** memoize css-in-js styles ([f09a61e](https://github.com/skbkontur/retail-ui/commit/f09a61e0c7e23452425ce7abb89dc698aded8946))
1493
+ * **popup:** memoize css-in-js styles ([da09c09](https://github.com/skbkontur/retail-ui/commit/da09c098264afe2780b927cd8811a9fba9835703))
1494
+ * **radio:** memoize css-in-js styles ([ca776fa](https://github.com/skbkontur/retail-ui/commit/ca776fa9bc1a42fd501d87a17a90e21170f0b8d8))
1495
+ * **radiogroup:** memoize css-in-js styles ([c3dcc1d](https://github.com/skbkontur/retail-ui/commit/c3dcc1dbee94759806636e54bfda31f073862405))
1496
+ * **resizedetector:** memoize css-in-js styles ([1c72573](https://github.com/skbkontur/retail-ui/commit/1c72573622c541d599a7ce9611dd382d26bed595))
1497
+ * **scrollcontainer:** memoize css-in-js styles ([3e0e58f](https://github.com/skbkontur/retail-ui/commit/3e0e58f46df6ca42affaadbedda18f94ad80b237))
1498
+ * **Select:** memoize css-in-js styles ([1424478](https://github.com/skbkontur/retail-ui/commit/142447824bf212d4b44cac09fe5e791ee9d96139))
1499
+ * **sidepage:** memoize css-in-js styles ([4dd2a2a](https://github.com/skbkontur/retail-ui/commit/4dd2a2a269cb1759ba45b1134f32bbbfc488ef9a))
1500
+ * **spinner:** memoize css-in-js styles ([edb1835](https://github.com/skbkontur/retail-ui/commit/edb1835821ceb2e8f103484cf705f443e1d7400f))
1501
+ * **spinnericon:** memoize css-in-js styles ([7802c51](https://github.com/skbkontur/retail-ui/commit/7802c510f212b5eff44aa10ceaddecd5690fea45))
1502
+ * **sticky:** memoize css-in-js styles ([9882179](https://github.com/skbkontur/retail-ui/commit/988217911bcc3ebe39af440d23549eeed10e5d3b))
1503
+ * **switcher:** memoize css-in-js styles ([f93bf4c](https://github.com/skbkontur/retail-ui/commit/f93bf4c5674b530237c792a44ba067750626c7db))
1504
+ * **tabs:** memoize css-in-js styles ([5a7b13a](https://github.com/skbkontur/retail-ui/commit/5a7b13a995122d2d5f203f0baeed026f211b74a8))
1505
+ * **textarea:** memoize css-in-js styles ([b4dec2b](https://github.com/skbkontur/retail-ui/commit/b4dec2be3a080bcf20592013557b4873361a4f34))
1506
+ * **themeplayground:** memoize css-in-js styles ([c522503](https://github.com/skbkontur/retail-ui/commit/c52250362fe6a434e9ccbca8e66b22107741a397))
1507
+ * **themeshowcase:** memoize css-in-js styles ([89bd313](https://github.com/skbkontur/retail-ui/commit/89bd313fe8292d2854d46b1239adbc1325b454ec))
1508
+ * **toast:** memoize css-in-js styles ([20538cf](https://github.com/skbkontur/retail-ui/commit/20538cf272435401f0965904fc3dca37fc479a7f))
1509
+ * **toggle:** memoize css-in-js styles ([af43674](https://github.com/skbkontur/retail-ui/commit/af4367448c4f8c62362de50afb4f130324ca7f03))
1510
+ * **Token:** memoize css-in-js styles ([426a7fb](https://github.com/skbkontur/retail-ui/commit/426a7fb76f0b4fc31ec2c261e84ee32c5fb90608))
1511
+ * **TokenInput:** memoize css-in-js styles ([26f97b5](https://github.com/skbkontur/retail-ui/commit/26f97b5550224b10755020dada2b4bd84d0bee4d))
1512
+ * **tooltip:** memoize css-in-js styles ([84d5966](https://github.com/skbkontur/retail-ui/commit/84d59663e910c649bfe4631ba263f0d7d3916404))
1513
+ * **TopBar:** memoize css-in-js styles ([291e395](https://github.com/skbkontur/retail-ui/commit/291e39515608ab6f76f5970a4551a53b6b8d73dd))
1514
+
1515
+
1516
+ ### BREAKING CHANGES
1517
+
1518
+ * **TopBar:** Item/ButtonItem/Devider/Logout/Organizations/User have been renamed with 'TopBar'-prefix, e.g.: TopBarItem, etc.
1519
+ * **Tab:** use Context API from react@16.6
1520
+ * **SidePage:** use Context API from react@16.6
1521
+ * **Modal:** Header/Footer/Body classes and props inside Modal have been renamed, e.g.: Header
1522
+ -> ModalHeader, HeaderProps -> ModalHeaderProps, etc.
1523
+
1524
+
1525
+
1526
+
1527
+
1528
+ # [1.11.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.10.0...retail-ui@1.11.0) (2020-03-24)
1529
+
1530
+
1531
+ ### Bug Fixes
1532
+
1533
+ * **DatePicker:** fix autoFocus behavior ([f4bbce5](https://github.com/skbkontur/retail-ui/commit/f4bbce5))
1534
+
1535
+
1536
+ ### Features
1537
+
1538
+ * **TokenInput:** new prop 'maxMenuHeight' ([ea1da66](https://github.com/skbkontur/retail-ui/commit/ea1da66))
1539
+
1540
+
1541
+
1542
+
1543
+
1544
+ # [1.10.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.9.0...retail-ui@1.10.0) (2020-03-11)
1545
+
1546
+
1547
+ ### Bug Fixes
1548
+
1549
+ * **Input:** disable user select mask [#1917](https://github.com/skbkontur/retail-ui/issues/1917) ([ef7038f](https://github.com/skbkontur/retail-ui/commit/ef7038f))
1550
+ * **SidePage:** make non-blocking SidePage responsive ([#1904](https://github.com/skbkontur/retail-ui/issues/1904)) ([1c6e71a](https://github.com/skbkontur/retail-ui/commit/1c6e71a))
1551
+ * **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)
1552
+
1553
+
1554
+ ### Features
1555
+
1556
+ * **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)
1557
+
1558
+
1559
+
1560
+
1561
+
1562
+ # [1.9.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.8.1...retail-ui@1.9.0) (2020-02-13)
1563
+
1564
+
1565
+ ### Features
1566
+
1567
+ * **CurrencyInput:** new prop 'hideTrailingZeros' ([#1869](https://github.com/skbkontur/retail-ui/issues/1869)) ([1823370](https://github.com/skbkontur/retail-ui/commit/1823370))
1568
+
1569
+
1570
+
1571
+
1572
+
1573
+ ## [1.8.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.8.0...retail-ui@1.8.1) (2020-02-06)
1574
+
1575
+
1576
+ ### Bug Fixes
1577
+
1578
+ * **Loader:** пофиксил высоту дочерних компонентов по родителю ([25d45e2](https://github.com/skbkontur/retail-ui/commit/25d45e2)), closes [#1855](https://github.com/skbkontur/retail-ui/issues/1855)
1579
+
1580
+
1581
+ ### Reverts
1582
+
1583
+ * inline 'stylis-plugin-extra-scope' ([79f0399](https://github.com/skbkontur/retail-ui/commit/79f0399)), closes [#1873](https://github.com/skbkontur/retail-ui/issues/1873)
1584
+ * 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)
1585
+
1586
+
1587
+
1588
+
1589
+
1590
+ # [1.8.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.7.0...retail-ui@1.8.0) (2020-01-20)
1591
+
1592
+
1593
+ ### Bug Fixes
1594
+
1595
+ * remove jquery downloading ([687ad9d](https://github.com/skbkontur/retail-ui/commit/687ad9d))
1596
+
1597
+
1598
+ ### Features
1599
+
1600
+ * **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)
1601
+ * **Tooltip:** add onOpen prop ([90b89d7](https://github.com/skbkontur/retail-ui/commit/90b89d7)), closes [#1832](https://github.com/skbkontur/retail-ui/issues/1832)
1602
+
1603
+
1604
+
1605
+
1606
+
1607
+ # [1.7.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.9...retail-ui@1.7.0) (2019-12-27)
1608
+
1609
+
1610
+ ### Bug Fixes
1611
+
1612
+ * **Modal:** don't create stacking context inside Footer ([3b314a8](https://github.com/skbkontur/retail-ui/commit/3b314a8))
1613
+
1614
+
1615
+ ### Features
1616
+
1617
+ * **Gapped:** add `wrap` prop, change default prop values ([2ac9e8b](https://github.com/skbkontur/retail-ui/commit/2ac9e8b))
1618
+
1619
+
1620
+ ### Reverts
1621
+
1622
+ * **Gapped:** don't cover other elements with horizontal layout ([652983d](https://github.com/skbkontur/retail-ui/commit/652983d))
1623
+
1624
+
1625
+
1626
+
1627
+
1628
+ ## [1.6.9](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.8...retail-ui@1.6.9) (2019-12-24)
1629
+
1630
+
1631
+ ### Bug Fixes
1632
+
1633
+ * **Checkbox:** adjust baseline if row is high ([52a71b0](https://github.com/skbkontur/retail-ui/commit/52a71b0))
1634
+ * **ComboBoxOld:** close tooltip on blur ([94a5630](https://github.com/skbkontur/retail-ui/commit/94a5630)), closes [#1669](https://github.com/skbkontur/retail-ui/issues/1669)
1635
+ * **Gapped:** don't cover other elements with horizontal layout ([e622933](https://github.com/skbkontur/retail-ui/commit/e622933))
1636
+ * **Modal:** fix issue with cross ([e599455](https://github.com/skbkontur/retail-ui/commit/e599455)), closes [#180](https://github.com/skbkontur/retail-ui/issues/180)
1637
+
1638
+
1639
+
1640
+
1641
+
1642
+ ## [1.6.8](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.7...retail-ui@1.6.8) (2019-12-16)
1643
+
1644
+
1645
+ ### Bug Fixes
1646
+
1647
+ * **SidePageHeader:** fix maximum update depth ([548b894](https://github.com/skbkontur/retail-ui/commit/548b894))
1648
+
1649
+
1650
+
1651
+
1652
+
1653
+ ## [1.6.7](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.6...retail-ui@1.6.7) (2019-12-10)
1654
+
1655
+
1656
+ ### Bug Fixes
1657
+
1658
+ * **TokenInput:** fix module import ([440d199](https://github.com/skbkontur/retail-ui/commit/440d199))
1659
+
1660
+
1661
+
1662
+
1663
+
1664
+ ## [1.6.6](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.5...retail-ui@1.6.6) (2019-12-02)
1665
+
1666
+
1667
+ ### Bug Fixes
1668
+
1669
+ * **Loader:** correctly work with Sticky ([493cd18](https://github.com/skbkontur/retail-ui/commit/493cd18))
1670
+ * **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))
1671
+ * **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)
1672
+ * **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)
1673
+
1674
+
1675
+
1676
+
1677
+
1678
+ ## [1.6.5](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.4...retail-ui@1.6.5) (2019-11-26)
1679
+
1680
+
1681
+ ### Bug Fixes
1682
+
1683
+ * **Popup:** disable call findDOMNode when location is null ([da7cd1c](https://github.com/skbkontur/retail-ui/commit/da7cd1c))
1684
+
1685
+
1686
+
1687
+
1688
+
1689
+ ## [1.6.4](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.3...retail-ui@1.6.4) (2019-11-25)
1690
+
1691
+
1692
+ ### Bug Fixes
1693
+
1694
+ * **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)
1695
+ * **Popup:** don't render portal container on closed state ([bee3a28](https://github.com/skbkontur/retail-ui/commit/bee3a28))
1696
+
1697
+
1698
+
1699
+
1700
+
1701
+ ## [1.6.3](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.2...retail-ui@1.6.3) (2019-11-18)
1702
+
1703
+
1704
+ ### Bug Fixes
1705
+
1706
+ * **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)
1707
+ * **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)
1708
+ * **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)
1709
+ * **Tooltip:** added clear timeout to unmount method ([37fb81a](https://github.com/skbkontur/retail-ui/commit/37fb81a))
1710
+
1711
+
1712
+
1713
+
1714
+
1715
+ ## [1.6.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.1...retail-ui@1.6.2) (2019-11-06)
1716
+
1717
+
1718
+ ### Bug Fixes
1719
+
1720
+ * **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)
1721
+ * **Toast:** show above Loader ([5b6ccf7](https://github.com/skbkontur/retail-ui/commit/5b6ccf7)), closes [#1706](https://github.com/skbkontur/retail-ui/issues/1706)
1722
+
1723
+
1724
+
1725
+
1726
+
1727
+ ## [1.6.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.0...retail-ui@1.6.1) (2019-10-30)
1728
+
1729
+
1730
+ ### Bug Fixes
1731
+
1732
+ * **MonthView:** wrong import colorFunctions ([24eeb1e](https://github.com/skbkontur/retail-ui/commit/24eeb1e))
1733
+
1734
+
1735
+
1736
+
1737
+
1738
+ # [1.6.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.5.0...retail-ui@1.6.0) (2019-10-30)
1739
+
1740
+
1741
+ ### Bug Fixes
1742
+
1743
+ * **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)
1744
+ * **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)
1745
+ * **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)
1746
+ * **MenuItem:** call onMouseEnter/Leave in cloned element ([ff397c9](https://github.com/skbkontur/retail-ui/commit/ff397c9))
1747
+ * **RadioGroup:** pass onBlur into Radio ([20f9dcb](https://github.com/skbkontur/retail-ui/commit/20f9dcb)), closes [#1670](https://github.com/skbkontur/retail-ui/issues/1670)
1748
+ * **Select:** add missing comment type ([bf89513](https://github.com/skbkontur/retail-ui/commit/bf89513))
1749
+ * **Select:** fix color placeholder ([5e35c59](https://github.com/skbkontur/retail-ui/commit/5e35c59))
1750
+ * **Sticky:** infinity render loop in IE ([85180dd](https://github.com/skbkontur/retail-ui/commit/85180dd))
1751
+ * **Sticky:** maximum update depth exceeded ([75fb581](https://github.com/skbkontur/retail-ui/commit/75fb581)), closes [#1485](https://github.com/skbkontur/retail-ui/issues/1485)
1752
+ * **Tooltip:** reset position on close ([4d03a22](https://github.com/skbkontur/retail-ui/commit/4d03a22)), closes [#1673](https://github.com/skbkontur/retail-ui/issues/1673)
1753
+ * **TopBar:** fix noShadow prop ([1af4648](https://github.com/skbkontur/retail-ui/commit/1af4648)), closes [#1672](https://github.com/skbkontur/retail-ui/issues/1672)
1754
+
1755
+
1756
+ ### Features
1757
+
1758
+ * **ColorFunctions:** add fade function ([a10dcb9](https://github.com/skbkontur/retail-ui/commit/a10dcb9))
1759
+ * **DefaultTheme:** add variable 'chbCheckedShadow' ([b2531b3](https://github.com/skbkontur/retail-ui/commit/b2531b3))
1760
+ * **Emotion:** add 'prefixer' for classes ([6043228](https://github.com/skbkontur/retail-ui/commit/6043228))
1761
+ * **FlatTheme:** add variables 'chbCheckedShadow' and 'chbBorderRadius' ([e3424e7](https://github.com/skbkontur/retail-ui/commit/e3424e7))
1762
+ * **FlatTheme:** add vars 'chbShadowHover' and 'chbCheckedHoverShadow' ([62dad9c](https://github.com/skbkontur/retail-ui/commit/62dad9c))
1763
+ * **FocusTrap:** add component FocusTrap ([1baf0c3](https://github.com/skbkontur/retail-ui/commit/1baf0c3))
1764
+ * **Theme:** remove calendarMonthTitleBorderBottom ([3dcfb6f](https://github.com/skbkontur/retail-ui/commit/3dcfb6f))
1765
+ * **ZIndex:** add layers priority ([68ea45b](https://github.com/skbkontur/retail-ui/commit/68ea45b)), closes [#776](https://github.com/skbkontur/retail-ui/issues/776)
1766
+
1767
+
1768
+
1769
+
1770
+
1771
+ # [1.5.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.4.0...retail-ui@1.5.0) (2019-10-09)
1772
+
1773
+
1774
+ ### Bug Fixes
1775
+
1776
+ * **ComboBox:** add offsetX for DropDownContainer ([6cbea25](https://github.com/skbkontur/retail-ui/commit/6cbea25)), closes [#1005](https://github.com/skbkontur/retail-ui/issues/1005)
1777
+ * **CurrencyLabel:** fix defaultProps definition ([2794e1a](https://github.com/skbkontur/retail-ui/commit/2794e1a))
1778
+ * **customization:** change 'blinkColor' ([03fd81f](https://github.com/skbkontur/retail-ui/commit/03fd81f)), closes [#1646](https://github.com/skbkontur/retail-ui/issues/1646)
1779
+ * **Select:** fix calls prop onKeyDown ([6720eff](https://github.com/skbkontur/retail-ui/commit/6720eff)), closes [#1665](https://github.com/skbkontur/retail-ui/issues/1665)
1780
+ * **TopBarDropDown:** make 'use' prop required ([fcea8b1](https://github.com/skbkontur/retail-ui/commit/fcea8b1))
1781
+
1782
+
1783
+ ### Features
1784
+
1785
+ * **Paging:** deprecate 'strings' prop ([6c84288](https://github.com/skbkontur/retail-ui/commit/6c84288))
1786
+ * **Paging:** remove 'strings' prop ([58cabb7](https://github.com/skbkontur/retail-ui/commit/58cabb7)), closes [#1232](https://github.com/skbkontur/retail-ui/issues/1232)
1787
+ * **ThemeContext:** exports ThemeContext ([ef0579b](https://github.com/skbkontur/retail-ui/commit/ef0579b)), closes [#1656](https://github.com/skbkontur/retail-ui/issues/1656)
1788
+ * **TopBarDropDown:** added "default" "use" option ([74ef3b3](https://github.com/skbkontur/retail-ui/commit/74ef3b3))
1789
+ * **TopBarDropDown:** added flow types ([f3909be](https://github.com/skbkontur/retail-ui/commit/f3909be))
1790
+
1791
+
1792
+
1793
+
1794
+
1795
+ # [1.4.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.3.1...retail-ui@1.4.0) (2019-10-02)
1796
+
1797
+
1798
+ ### Bug Fixes
1799
+
1800
+ * **Button:** isButton is undefined when use adapter ([0e41da9](https://github.com/skbkontur/retail-ui/commit/0e41da9))
1801
+ * **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)
1802
+ * **DatePicker:** prepare PR to fork ([832fb7b](https://github.com/skbkontur/retail-ui/commit/832fb7b))
1803
+ * **DatePicker:** remove console.log ([67951d7](https://github.com/skbkontur/retail-ui/commit/67951d7))
1804
+ * **DatePicker:** simplify fallback structure for ie ([f9e27ed](https://github.com/skbkontur/retail-ui/commit/f9e27ed))
1805
+ * **DatePicker:** Баг с кликом на день календаря в Edge [#1557](https://github.com/skbkontur/retail-ui/issues/1557) ([7b24f69](https://github.com/skbkontur/retail-ui/commit/7b24f69))
1806
+ * **DatePicker:** Привел в порядок типизацию в DateInputFallback [#1557](https://github.com/skbkontur/retail-ui/issues/1557) ([dcebd76](https://github.com/skbkontur/retail-ui/commit/dcebd76))
1807
+ * **docs:** fix code formatter of the ThemeShowcase ([42b99c2](https://github.com/skbkontur/retail-ui/commit/42b99c2))
1808
+ * **Fias:** escape regexp spec chars ([cace4b6](https://github.com/skbkontur/retail-ui/commit/cace4b6)), closes [#1636](https://github.com/skbkontur/retail-ui/issues/1636)
1809
+ * **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)
1810
+ * **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)
1811
+
1812
+
1813
+ ### Features
1814
+
1815
+ * **Combobox:** add prop onInputKeyDown ([b804b84](https://github.com/skbkontur/retail-ui/commit/b804b84))
1816
+ * **lib:** add key identification tools ([73479fe](https://github.com/skbkontur/retail-ui/commit/73479fe)), closes [#1429](https://github.com/skbkontur/retail-ui/issues/1429)
1817
+ * **Select:** add prop onKeyDown ([ba41e73](https://github.com/skbkontur/retail-ui/commit/ba41e73))
1818
+
1819
+
1820
+
1821
+
1822
+
1823
+ ## [1.3.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.3.0...retail-ui@1.3.1) (2019-09-24)
1824
+
1825
+
1826
+ ### Bug Fixes
1827
+
1828
+ * **Dropdown:** sync type of `width` prop type with proptypes checks ([47a5612](https://github.com/skbkontur/retail-ui/commit/47a5612))
1829
+ * **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)
1830
+ * **Popup:** deterministic open/close animation ([0415fa4](https://github.com/skbkontur/retail-ui/commit/0415fa4)), closes [#1372](https://github.com/skbkontur/retail-ui/issues/1372)
1831
+ * **RenderContainer:** getRootId changed ([b0ce223](https://github.com/skbkontur/retail-ui/commit/b0ce223))
1832
+ * **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)
1833
+
1834
+
1835
+
1836
+
1837
+
1838
+ # [1.3.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.2.0...retail-ui@1.3.0) (2019-09-11)
1839
+
1840
+
1841
+ ### Bug Fixes
1842
+
1843
+ * **Button:** change disabled bg & shadow for the FlatTheme ([765e9d4](https://github.com/skbkontur/retail-ui/commit/765e9d4))
1844
+ * **Button:** fix emotion className interpolation warning ([ad5d2a2](https://github.com/skbkontur/retail-ui/commit/ad5d2a2))
1845
+ * **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)
1846
+ * **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)
1847
+
1848
+
1849
+ ### Features
1850
+
1851
+ * **Logotype:** add props size and onArrowClick ([94fc027](https://github.com/skbkontur/retail-ui/commit/94fc027))
1852
+
1853
+
1854
+
1855
+
1856
+
1857
+ # [1.2.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.1.2...retail-ui@1.2.0) (2019-09-03)
1858
+
1859
+
1860
+ ### Bug Fixes
1861
+
1862
+ * **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)
1863
+ * **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)
1864
+ * **ComboBox:** spinner position by baseline ([5f144e8](https://github.com/skbkontur/retail-ui/commit/5f144e8)), closes [#1333](https://github.com/skbkontur/retail-ui/issues/1333)
1865
+ * **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)
1866
+ * **Icon20px:** prevent from selecting ([763b5b8](https://github.com/skbkontur/retail-ui/commit/763b5b8))
1867
+ * **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)
1868
+ * **react-ui:** support CRA css-modules convention: variables ([aace330](https://github.com/skbkontur/retail-ui/commit/aace330))
1869
+ * **Token:** import react as namespace ([8b10014](https://github.com/skbkontur/retail-ui/commit/8b10014)), closes [#1519](https://github.com/skbkontur/retail-ui/issues/1519)
1870
+
1871
+
1872
+ ### Features
1873
+
1874
+ * **Fias:** render additional fields in the search results ([37fa2db](https://github.com/skbkontur/retail-ui/commit/37fa2db))
1875
+ * **Fias:** search streets through not only direct parent ([7729fd7](https://github.com/skbkontur/retail-ui/commit/7729fd7))
1876
+ * **ScrollContainer:** add scrollBehaviour prop ([ad4c7c9](https://github.com/skbkontur/retail-ui/commit/ad4c7c9))
1877
+
1878
+
1879
+
1880
+
1881
+
1882
+ ## [1.1.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.1.1...retail-ui@1.1.2) (2019-08-07)
1883
+
1884
+
1885
+ ### Bug Fixes
1886
+
1887
+ * **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)
1888
+ * **Group:** removed vertical-align ([2f8cad6](https://github.com/skbkontur/retail-ui/commit/2f8cad6))
1889
+
1890
+
1891
+
1892
+
1893
+
1894
+ ## [1.1.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.1.0...retail-ui@1.1.1) (2019-07-31)
1895
+
1896
+
1897
+ ### Bug Fixes
1898
+
1899
+ * **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)
1900
+ * **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)
1901
+ * **Radio:** decrease types checking time ([f18c74b](https://github.com/skbkontur/retail-ui/commit/f18c74b)), closes [#1518](https://github.com/skbkontur/retail-ui/issues/1518)
1902
+
1903
+
1904
+
1905
+
1906
+
1907
+ # [1.1.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.0.1...retail-ui@1.1.0) (2019-07-23)
1908
+
1909
+
1910
+ ### Bug Fixes
1911
+
1912
+ * **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)
1913
+ * **TokenInput:** add input's box-shadow ([6f0789f](https://github.com/skbkontur/retail-ui/commit/6f0789f))
1914
+ * **TokenInput:** fix flat styles ([0fa0d52](https://github.com/skbkontur/retail-ui/commit/0fa0d52)), closes [#1493](https://github.com/skbkontur/retail-ui/issues/1493)
1915
+ * **TokenInput:** remove hardcoded dataTid ([9e5151f](https://github.com/skbkontur/retail-ui/commit/9e5151f))
1916
+
1917
+
1918
+ ### Features
1919
+
1920
+ * **Switcher:** add prop 'size' ([a5e16ae](https://github.com/skbkontur/retail-ui/commit/a5e16ae)), closes [#1492](https://github.com/skbkontur/retail-ui/issues/1492)
1921
+
1922
+
1923
+
1924
+
1925
+
1926
+ ## [1.0.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.0.0...retail-ui@1.0.1) (2019-07-16)
1927
+
1928
+
1929
+ ### Bug Fixes
1930
+
1931
+ * **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)
1932
+ * **Tab:** add error/warning/primary hover borders to vertical tabs ([29f4bc2](https://github.com/skbkontur/retail-ui/commit/29f4bc2))
1933
+ * **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)
1934
+ * **Textarea:** add blocking Enter after reaching 'maxLength' ([2a862f5](https://github.com/skbkontur/retail-ui/commit/2a862f5))
1935
+ * **ThemeShowcase:** make it fit enough to squize into styleguidist ([12f184b](https://github.com/skbkontur/retail-ui/commit/12f184b))
1936
+ * **ThemeShowcase:** source code tooltip contents in production mode ([89c5183](https://github.com/skbkontur/retail-ui/commit/89c5183))
1937
+
1938
+
1939
+
1940
+
1941
+
1942
+ # [1.0.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.53.0...retail-ui@1.0.0) (2019-07-02)
1943
+
1944
+
1945
+ ### Features
1946
+
1947
+ * Customization ([#1333](https://github.com/skbkontur/retail-ui/issues/1333)) ([15e9e8f](https://github.com/skbkontur/retail-ui/commit/15e9e8f))
1948
+
1949
+
1950
+ ### BREAKING CHANGES
1951
+
1952
+ * Upgrades.enableSizeMedium16px is no longer working: redefine fontSizeMedium
1953
+ variable via ThemeProvider or by calling ThemeFactory.overrideDefaultTheme()
1954
+
1955
+ * refactor(ColorObject): remove require call
1956
+
1957
+ * style(Upgrades): fix lint error
1958
+
1959
+ * chore(storybook): use ThemeProvider instead of overrideDefaultTheme
1960
+
1961
+ * refactor(ThemeFactory): remove ThemesCache
1962
+
1963
+ * refactor(ThemeEditor): clear timeout on unmount
1964
+
1965
+ * refactor(variables.less): prepare for Date* controls convertion
1966
+
1967
+ * feat(DateSelect): customize with css-in-js
1968
+
1969
+ * refactor(DatePickerOld): rename less file to prevent confusion
1970
+
1971
+ * feat(DatePicker): customize with css-in-js
1972
+
1973
+ * refactor(DateInput): properly separate styles between components
1974
+
1975
+ * feat(DateInput): customize with css-in-js
1976
+
1977
+ * feat(Calendar): customize with css-in-js
1978
+
1979
+ * refactor(TokenInput): add -webkit-text-fill-color
1980
+
1981
+ * refactor(styles): remove rt-ie8, rt-ie9
1982
+
1983
+ * refactor(Calendar): rename classnames to cx
1984
+
1985
+ * refactor(variables.less): move mixins into separate file
1986
+
1987
+ * style(CustomComboBox): specify px for padding-bottom
1988
+
1989
+ * style(SidePage): fix variable typo
1990
+
1991
+ * refactor(styles): remove unnecessary imports
1992
+
1993
+ * refactor(FormatSourceCode): rewrite code in more readable way
1994
+
1995
+ * test(ComboBoxView): approve screens with new spinner gray color
1996
+
1997
+ * fix(Button): fix sizeMedium baseline regress
1998
+
1999
+ * test(Button): approve screenshots with 14px medium font-size
2000
+
2001
+ * test(ComboBox): approve darker spinner color while loading items
2002
+
2003
+ * refactor(TokenInput): simplify styles
2004
+
2005
+ * refactor(TokenInput): fix firefox placeholder opacity
2006
+
2007
+ * refactor(DateSelect): make active prevail over selected
2008
+
2009
+ * refactor(DatePicker): fix red color bug
2010
+
2011
+ * refactor(DatePicker): make weekend prevail over today
2012
+
2013
+ * refactor(DateFragmentsView): fix .delimiter.filled combination style
2014
+
2015
+ * style(AnotherInputsPlayground): remove underscores from private methods
2016
+
2017
+ * test(AnotherInputsPlayground): stable date for screenshots
2018
+
2019
+ * test(Customization): approve actual screenshots
2020
+
2021
+ * refactor(customization): separate ThemeProviderPlayground component
2022
+
2023
+ * docs(ThemeProviderPlayground ): add README
2024
+
2025
+ * docs(customization): add core README
2026
+
2027
+ # copied from PR
2028
+
2029
+ * build(styleguide): add customization section to config
2030
+
2031
+ * chore(ThemeProviderPlayground): fix import
2032
+
2033
+ * test(Button): approve 14px font-size for medium size in flat theme
2034
+
2035
+ * refactor(customization): introduce derived font sizes for button/input
2036
+
2037
+ * refactor(Button): use fontSize=16px for size=medium in flat theme
2038
+
2039
+ * test(Button): approve 16px font-size for medium size in flat theme
2040
+
2041
+ * test(Customization): approve 16px font-size in flat theme
2042
+
2043
+ * refactor(DateInput): remove isSizeMedium16pxEnabled() in favor of theme
2044
+
2045
+ * refactor(Upgrades): cleanup deprecated methods
2046
+
2047
+ * docs(customization): fix styleguide's components and sections
2048
+
2049
+ * docs(customization): hack-fix ordered lists
2050
+
2051
+ * docs(customization): remove broken links
2052
+
2053
+ * docs(customization): fix less formatting
2054
+
2055
+ * docs(customization): add some line-breaks
2056
+
2057
+ * docs(customization): emphasize inline <code> the way it's done at github
2058
+
2059
+ * docs(customization): switch 'jsx static' to 'typescript' for some blocks
2060
+
2061
+ * docs(customization): use monospace font for inline <code>
2062
+
2063
+ * chore(Button): fix baseline of flat medium Button
2064
+
2065
+ * docs(customization): fix typo
2066
+
2067
+ * style: format with prettier
2068
+
2069
+ * style: make stylelint ignore *.ts
2070
+
2071
+
2072
+
2073
+
2074
+
2075
+ # [0.53.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.52.1...retail-ui@0.53.0) (2019-07-02)
2076
+
2077
+
2078
+ ### Bug Fixes
2079
+
2080
+ * **CurrencyInput:** add 15-digit limit and warning about it ([b523ddf](https://github.com/skbkontur/retail-ui/commit/b523ddf))
2081
+ * **CurrencyLabel:** add warning about 15-digit limit for fractionDigits ([adba185](https://github.com/skbkontur/retail-ui/commit/adba185))
2082
+ * **DateInputFallback:** remove unnecessary call 'emitChange' ([cf28a56](https://github.com/skbkontur/retail-ui/commit/cf28a56)), closes [#1466](https://github.com/skbkontur/retail-ui/issues/1466)
2083
+ * **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)
2084
+ * **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)
2085
+
2086
+
2087
+ ### Features
2088
+
2089
+ * **Fias:** expose FiasSearch ([075bd36](https://github.com/skbkontur/retail-ui/commit/075bd36))
2090
+
2091
+
2092
+
2093
+
2094
+
2095
+ ## [0.52.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.52.0...retail-ui@0.52.1) (2019-06-18)
2096
+
2097
+ **Note:** Version bump only for package retail-ui
2098
+
2099
+
2100
+
2101
+
2102
+
2103
+ # [0.52.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.51.1...retail-ui@0.52.0) (2019-06-13)
2104
+
2105
+
2106
+ ### Bug Fixes
2107
+
2108
+ * **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)
2109
+ * **DropdownMenu:** added missing flow types props ([#1462](https://github.com/skbkontur/retail-ui/issues/1462)) ([eb1bc3e](https://github.com/skbkontur/retail-ui/commit/eb1bc3e))
2110
+ * **MaskedInput:** add support prop 'defaultValue' ([e8b9436](https://github.com/skbkontur/retail-ui/commit/e8b9436))
2111
+ * **RenderLayer:** add touchstart handling ([567f80b](https://github.com/skbkontur/retail-ui/commit/567f80b)), closes [#1439](https://github.com/skbkontur/retail-ui/issues/1439)
2112
+ * **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))
2113
+ * **Spinner:** baseline and height are equal to icons ([996c365](https://github.com/skbkontur/retail-ui/commit/996c365))
2114
+
2115
+
2116
+ ### Features
2117
+
2118
+ * **DatePicker:** add localization ([10d30d0](https://github.com/skbkontur/retail-ui/commit/10d30d0))
2119
+ * **DateSelect:** add localization ([00a5ea7](https://github.com/skbkontur/retail-ui/commit/00a5ea7))
2120
+ * **Fias:** add localization ([cc5a7ef](https://github.com/skbkontur/retail-ui/commit/cc5a7ef))
2121
+ * **lib:** add lib `MouseDrag` ([9e7d329](https://github.com/skbkontur/retail-ui/commit/9e7d329))
2122
+ * **lib:** add tools for internationalizing dates ([aac2c0d](https://github.com/skbkontur/retail-ui/commit/aac2c0d))
2123
+ * **LocaleHelper:** add getting locale with default langCode ([d25d2a3](https://github.com/skbkontur/retail-ui/commit/d25d2a3))
2124
+ * **Tooltip:** add trigger type hover&focus ([422915e](https://github.com/skbkontur/retail-ui/commit/422915e))
2125
+
2126
+
2127
+
2128
+
2129
+
2130
+ ## [0.51.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.51.0...retail-ui@0.51.1) (2019-06-04)
2131
+
2132
+
2133
+ ### Bug Fixes
2134
+
2135
+ * **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)
2136
+
2137
+
2138
+
2139
+
2140
+
2141
+ # [0.51.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.50.0...retail-ui@0.51.0) (2019-05-28)
2142
+
2143
+
2144
+ ### Bug Fixes
2145
+
2146
+ * **DatePicker:** fix icon style ([3e092ef](https://github.com/skbkontur/retail-ui/commit/3e092ef))
2147
+ * **MenuItem:** fix triggered `MouseEnter` from disabled button ([1c88969](https://github.com/skbkontur/retail-ui/commit/1c88969))
2148
+ * **Tabs:** replace check on existence `focus` ([87e0443](https://github.com/skbkontur/retail-ui/commit/87e0443))
2149
+
2150
+
2151
+ ### Features
2152
+
2153
+ * **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)
2154
+
2155
+
2156
+
2157
+
2158
+
2159
+ # [0.50.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.49.1...retail-ui@0.50.0) (2019-05-22)
2160
+
2161
+
2162
+ ### Bug Fixes
2163
+
2164
+ * **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)
2165
+
2166
+
2167
+ ### Features
2168
+
2169
+ * **Toast:** toast is testable ([#1403](https://github.com/skbkontur/retail-ui/issues/1403)) ([5dcdf32](https://github.com/skbkontur/retail-ui/commit/5dcdf32))
2170
+
2171
+
2172
+
2173
+
2174
+
2175
+ ## [0.49.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.49.0...retail-ui@0.49.1) (2019-05-16)
2176
+
2177
+
2178
+ ### Bug Fixes
2179
+
2180
+ * **Select:** bind public focus function to component instance ([5909b9e](https://github.com/skbkontur/retail-ui/commit/5909b9e))
2181
+ * **Toggle:** fix overflow issue in Safari ([#1411](https://github.com/skbkontur/retail-ui/issues/1411)) ([7073cb5](https://github.com/skbkontur/retail-ui/commit/7073cb5))
2182
+
2183
+
2184
+
2185
+
2186
+
2187
+ # [0.49.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.48.0...retail-ui@0.49.0) (2019-05-14)
2188
+
2189
+
2190
+ ### Bug Fixes
2191
+
2192
+ * **flow:** update props ([c652880](https://github.com/skbkontur/retail-ui/commit/c652880))
2193
+ * **Paging:** add autofocus for IE11 ([e434d80](https://github.com/skbkontur/retail-ui/commit/e434d80)), closes [#1358](https://github.com/skbkontur/retail-ui/issues/1358)
2194
+ * **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)
2195
+
2196
+
2197
+ ### Features
2198
+
2199
+ * **TokenInput:** add prop `valueToString` ([9e7bf50](https://github.com/skbkontur/retail-ui/commit/9e7bf50))
2200
+
2201
+
2202
+
2203
+
2204
+
2205
+ # [0.48.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.47.0...retail-ui@0.48.0) (2019-04-30)
2206
+
2207
+
2208
+ ### Bug Fixes
2209
+
2210
+ * **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)
2211
+ * **Fias:** search postal Code through all fields ([7433d12](https://github.com/skbkontur/retail-ui/commit/7433d12))
2212
+ * **Fias:** validate all fields ([8d126f9](https://github.com/skbkontur/retail-ui/commit/8d126f9))
2213
+ * **flow:** add children to Modal props ([1e7e420](https://github.com/skbkontur/retail-ui/commit/1e7e420))
2214
+ * **flow:** add missed props ([5538a61](https://github.com/skbkontur/retail-ui/commit/5538a61))
2215
+ * **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)
2216
+ * **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)
2217
+ * **Popup:** remove hardcoded maxWidth ([721b751](https://github.com/skbkontur/retail-ui/commit/721b751)), closes [#1343](https://github.com/skbkontur/retail-ui/issues/1343)
2218
+ * **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)
2219
+
2220
+
2221
+ ### Features
2222
+
2223
+ * **ComboBox:** add prop `renderAddButton` ([#1365](https://github.com/skbkontur/retail-ui/issues/1365)) ([55345e1](https://github.com/skbkontur/retail-ui/commit/55345e1))
2224
+ * **DropdownMenu:** add positions prop ([7fc607d](https://github.com/skbkontur/retail-ui/commit/7fc607d))
2225
+ * **MenuItem:** add `link` prop ([d705f19](https://github.com/skbkontur/retail-ui/commit/d705f19))
2226
+
2227
+
2228
+
2229
+
2230
+
2231
+ # [0.47.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.46.2...retail-ui@0.47.0) (2019-04-22)
2232
+
2233
+
2234
+ ### Bug Fixes
2235
+
2236
+ * **Button:** add border radius & background styles in flat theme ([59486e3](https://github.com/skbkontur/retail-ui/commit/59486e3))
2237
+ * **Button:** fix arrow position in flat version for small button ([2ce7b42](https://github.com/skbkontur/retail-ui/commit/2ce7b42))
2238
+ * **Button:** fix border color at checked + focused state on hover ([bad4f08](https://github.com/skbkontur/retail-ui/commit/bad4f08))
2239
+ * **Button:** fix border overlap in visually focused state with error/warning ([72d2787](https://github.com/skbkontur/retail-ui/commit/72d2787))
2240
+ * **Button:** fix stylelint `eol-whitespace` error ([461850f](https://github.com/skbkontur/retail-ui/commit/461850f))
2241
+ * **Button:** fixed disabled state shadow styles at flat version ([ad5db6f](https://github.com/skbkontur/retail-ui/commit/ad5db6f))
2242
+ * **Button:** fixed flat styles in IE ([ad3f558](https://github.com/skbkontur/retail-ui/commit/ad3f558))
2243
+ * **Input:** add background & border color styles in flat theme ([b106eb2](https://github.com/skbkontur/retail-ui/commit/b106eb2))
2244
+ * **Paging:** changed detecting of pressed key ([f7b5f24](https://github.com/skbkontur/retail-ui/commit/f7b5f24))
2245
+ * **Radio:** fixed outline padding in flat styles ([0baf333](https://github.com/skbkontur/retail-ui/commit/0baf333))
2246
+ * **Textarea:** add background & border color styles in flat theme ([003c268](https://github.com/skbkontur/retail-ui/commit/003c268))
2247
+ * **Toggle:** add white outline to focused box-shadow ([7b7a3c9](https://github.com/skbkontur/retail-ui/commit/7b7a3c9))
2248
+
2249
+
2250
+ ### Features
2251
+
2252
+ * **Button:** add arrow styles in flat version ([8e1d268](https://github.com/skbkontur/retail-ui/commit/8e1d268))
2253
+ * **Button:** add arrows shadow & border styles in flat theme ([1889232](https://github.com/skbkontur/retail-ui/commit/1889232))
2254
+ * **Button, Checkbox, Radio, Toggle:** add common outline color variable ([58fac79](https://github.com/skbkontur/retail-ui/commit/58fac79))
2255
+
2256
+
2257
+
2258
+
2259
+
2260
+ ## [0.46.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.46.1...retail-ui@0.46.2) (2019-04-17)
2261
+
2262
+
2263
+ ### Bug Fixes
2264
+
2265
+ * **Tabs:** context provider render children for reac@15 ([f0df170](https://github.com/skbkontur/retail-ui/commit/f0df170))
2266
+
2267
+
2268
+
2269
+
2270
+
2271
+ ## [0.46.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.46.0...retail-ui@0.46.1) (2019-04-16)
2272
+
2273
+
2274
+ ### Bug Fixes
2275
+
2276
+ * **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)
2277
+ * **ComboBox:** add missing callbacks ([fab3ff6](https://github.com/skbkontur/retail-ui/commit/fab3ff6))
2278
+ * **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)
2279
+ * **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)
2280
+ * **Hint:** render popup even if no text provided ([cf4a473](https://github.com/skbkontur/retail-ui/commit/cf4a473))
2281
+ * **Tabs:** correct work with FunctionalComponents ([93163db](https://github.com/skbkontur/retail-ui/commit/93163db)), closes [#1337](https://github.com/skbkontur/retail-ui/issues/1337)
2282
+ * **Tabs:** error findDOMNode on unmounted active tab component ([90142cb](https://github.com/skbkontur/retail-ui/commit/90142cb))
2283
+ * **TopBarDropdown:** added methods open & close ([9e7ddcc](https://github.com/skbkontur/retail-ui/commit/9e7ddcc))
2284
+
2285
+
2286
+
2287
+
2288
+
2289
+ # [0.46.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.45.0...retail-ui@0.46.0) (2019-04-08)
2290
+
2291
+
2292
+ ### Bug Fixes
2293
+
2294
+ * **Button:** compare elements reliable way ([0d7843e](https://github.com/skbkontur/retail-ui/commit/0d7843e)), closes [#1267](https://github.com/skbkontur/retail-ui/issues/1267)
2295
+ * preventDefault inside passive event listener ([055eb48](https://github.com/skbkontur/retail-ui/commit/055eb48)), closes [#1326](https://github.com/skbkontur/retail-ui/issues/1326)
2296
+ * safe components usage for SSR ([#1312](https://github.com/skbkontur/retail-ui/issues/1312)) ([0c8c91e](https://github.com/skbkontur/retail-ui/commit/0c8c91e))
2297
+ * **ComboBoxOld:** args types for renderTotalCount and onInputChange ([4ddd480](https://github.com/skbkontur/retail-ui/commit/4ddd480))
2298
+ * **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)
2299
+ * **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)
2300
+ * **Modal:** compare elements reliable way ([fdba164](https://github.com/skbkontur/retail-ui/commit/fdba164)), closes [#1267](https://github.com/skbkontur/retail-ui/issues/1267)
2301
+
2302
+
2303
+ ### Features
2304
+
2305
+ * **Fias:** add rooms search ([10843e1](https://github.com/skbkontur/retail-ui/commit/10843e1))
2306
+
2307
+
2308
+
2309
+
2310
+
2311
+ # [0.45.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.44.3...retail-ui@0.45.0) (2019-04-01)
2312
+
2313
+
2314
+ ### Bug Fixes
2315
+
2316
+ * **Autocomplete:** handle concurrent requests ([dd07ef4](https://github.com/skbkontur/retail-ui/commit/dd07ef4)), closes [#1299](https://github.com/skbkontur/retail-ui/issues/1299)
2317
+ * **Logotype:** async load products widget script ([85312d9](https://github.com/skbkontur/retail-ui/commit/85312d9))
2318
+ * **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)
2319
+ * **ScrollContainer:** multiple scrollbars on OSX ([#827](https://github.com/skbkontur/retail-ui/issues/827)) ([118b347](https://github.com/skbkontur/retail-ui/commit/118b347))
2320
+ * **Tooltip:** deactivate RenderLayer by default ([0818973](https://github.com/skbkontur/retail-ui/commit/0818973)), closes [#1304](https://github.com/skbkontur/retail-ui/issues/1304)
2321
+
2322
+
2323
+ ### Features
2324
+
2325
+ * **flow:** add typings ([42f8fed](https://github.com/skbkontur/retail-ui/commit/42f8fed))
2326
+
2327
+
2328
+ ### Reverts
2329
+
2330
+ * **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)
2331
+ * **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)
2332
+
2333
+
2334
+
2335
+
2336
+
2337
+ ## [0.44.3](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.44.2...retail-ui@0.44.3) (2019-03-27)
2338
+
2339
+
2340
+ ### Bug Fixes
2341
+
2342
+ * **Input:** don't show placeholder if mask is visible ([1c40f1d](https://github.com/skbkontur/retail-ui/commit/1c40f1d))
2343
+ * **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)
2344
+
2345
+
2346
+
2347
+
2348
+
2349
+ ## [0.44.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.44.1...retail-ui@0.44.2) (2019-03-26)
2350
+
2351
+
2352
+ ### Bug Fixes
2353
+
2354
+ * **ComboBoxOld:** bring typings back ([65d26cd](https://github.com/skbkontur/retail-ui/commit/65d26cd))
2355
+ * **hint:** add pin offset ([9c68d44](https://github.com/skbkontur/retail-ui/commit/9c68d44)), closes [#1265](https://github.com/skbkontur/retail-ui/issues/1265)
2356
+ * **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)
2357
+ * **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)
2358
+ * **Tooltip:** correct render invalid react element ([d49b9fd](https://github.com/skbkontur/retail-ui/commit/d49b9fd))
2359
+ * **Tooltip:** loosing focus on show/hide content ([83b86f7](https://github.com/skbkontur/retail-ui/commit/83b86f7))
2360
+
2361
+
2362
+ ### Performance Improvements
2363
+
2364
+ * **Popup:** bind instead of field initializer ([e1bfba1](https://github.com/skbkontur/retail-ui/commit/e1bfba1))
2365
+ * **Popup:** do not renderContent if closed ([49b03a6](https://github.com/skbkontur/retail-ui/commit/49b03a6))
2366
+ * **Popup:** less event subscriptions ([eb30481](https://github.com/skbkontur/retail-ui/commit/eb30481))
2367
+ * **Popup:** remove RenderLayer/onCloseRequest ([1763036](https://github.com/skbkontur/retail-ui/commit/1763036))
2368
+ * **RenderContainer:** lazy domContainer ([7a193fe](https://github.com/skbkontur/retail-ui/commit/7a193fe))
2369
+ * **RenderLayer:** bind instead of field initializer ([a7a940b](https://github.com/skbkontur/retail-ui/commit/a7a940b))
2370
+ * **RenderLayer:** less event subscriptions ([f095eca](https://github.com/skbkontur/retail-ui/commit/f095eca))
2371
+ * **Tooltip:** bind instead of field initializer ([e4a1ef5](https://github.com/skbkontur/retail-ui/commit/e4a1ef5))
2372
+ * **Tooltip:** skip RenderLayer if unneeded ([9719e45](https://github.com/skbkontur/retail-ui/commit/9719e45))
2373
+
2374
+
2375
+
2376
+
2377
+
2378
+ ## [0.44.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.44.0...retail-ui@0.44.1) (2019-03-19)
2379
+
2380
+
2381
+ ### Bug Fixes
2382
+
2383
+ * **retail-ui:** fix some imports for `[@skbkontur](https://github.com/skbkontur)/react-ui` ([d4c19a8](https://github.com/skbkontur/retail-ui/commit/d4c19a8))
2384
+
2385
+
2386
+
2387
+
2388
+
2389
+ # [0.44.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.43.0...retail-ui@0.44.0) (2019-03-19)
2390
+
2391
+
2392
+ ### Bug Fixes
2393
+
2394
+ * **ComboBox:** typings issues ([d51d66d](https://github.com/skbkontur/retail-ui/commit/d51d66d))
2395
+ * **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)
2396
+ * **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)
2397
+ * **retail-ui:** add optional for some props and default for generic ([07003a4](https://github.com/skbkontur/retail-ui/commit/07003a4))
2398
+ * **SidePage:** change header paddings according to the guides ([722d00f](https://github.com/skbkontur/retail-ui/commit/722d00f))
2399
+ * **SidePage:** fix scrollbar overlapping by the footer with wrong width ([f3468b1](https://github.com/skbkontur/retail-ui/commit/f3468b1))
2400
+ * **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)
2401
+
2402
+
2403
+ ### Features
2404
+
2405
+ * **ComboBox:** add props `searchOnFocus` and `drawArrow` ([a605c22](https://github.com/skbkontur/retail-ui/commit/a605c22))
2406
+
2407
+
2408
+
2409
+
2410
+
2411
+ # [0.43.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.42.0...retail-ui@0.43.0) (2019-03-12)
2412
+
2413
+
2414
+ ### Bug Fixes
2415
+
2416
+ * **Button:** fix disabled link background ([9c2cdae](https://github.com/skbkontur/retail-ui/commit/9c2cdae)), closes [#1213](https://github.com/skbkontur/retail-ui/issues/1213)
2417
+ * **ComboBox:** correct import specific icon, not all ([9f0fcbf](https://github.com/skbkontur/retail-ui/commit/9f0fcbf))
2418
+ * **ComboBox:** repair blur when menu is not open ([0861a90](https://github.com/skbkontur/retail-ui/commit/0861a90))
2419
+ * **ComboBoxMenu:** unique keys warning ([7ead9fc](https://github.com/skbkontur/retail-ui/commit/7ead9fc))
2420
+ * **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)
2421
+ * **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)
2422
+ * **Tooltip:** handleClickOutside detects content ([c69773b](https://github.com/skbkontur/retail-ui/commit/c69773b)), closes [#1210](https://github.com/skbkontur/retail-ui/issues/1210)
2423
+
2424
+
2425
+ ### Features
2426
+
2427
+ * **ComboBox:** add localization ([2bc0300](https://github.com/skbkontur/retail-ui/commit/2bc0300))
2428
+ * **LocaleContext:** localization controls ([4d5a412](https://github.com/skbkontur/retail-ui/commit/4d5a412))
2429
+ * **Logotype:** add localization ([47fa21e](https://github.com/skbkontur/retail-ui/commit/47fa21e))
2430
+ * **Paging:** add localization ([ef982db](https://github.com/skbkontur/retail-ui/commit/ef982db))
2431
+ * **Select:** add localization ([8a539be](https://github.com/skbkontur/retail-ui/commit/8a539be))
2432
+ * **Spinner:** add localization ([265deee](https://github.com/skbkontur/retail-ui/commit/265deee))
2433
+ * **TokenInput:** add localization ([49d7742](https://github.com/skbkontur/retail-ui/commit/49d7742))
2434
+ * **TopBar:** add `TopBar.Logout` for localization ([18533e9](https://github.com/skbkontur/retail-ui/commit/18533e9))
2435
+ * **TopBar:** add localization ([50accaf](https://github.com/skbkontur/retail-ui/commit/50accaf))
2436
+
2437
+
2438
+
2439
+
2440
+
2441
+ # [0.42.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.41.1...retail-ui@0.42.0) (2019-03-05)
2442
+
2443
+ ### Bug Fixes
2444
+
2445
+ - **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)
2446
+ - **Fias:** fix textarea import ([2a1dd51](https://github.com/skbkontur/retail-ui/commit/2a1dd51))
2447
+ - **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)
2448
+ - **Tooltip:** reposition changed content ([39b641f](https://github.com/skbkontur/retail-ui/commit/39b641f)), closes [#962](https://github.com/skbkontur/retail-ui/issues/962)
2449
+
2450
+ ### Features
2451
+
2452
+ - **DropdownMenu:** add header and footer props ([db8a428](https://github.com/skbkontur/retail-ui/commit/db8a428))
2453
+ - **ScrollContainer:** add `onScrollStateChange` prop ([18366b7](https://github.com/skbkontur/retail-ui/commit/18366b7))
2454
+ - **TooltipMenu:** add header and footer props ([578125d](https://github.com/skbkontur/retail-ui/commit/578125d))
2455
+
2456
+ ## [0.41.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.41.0...retail-ui@0.41.1) (2019-02-27)
2457
+
2458
+ ### Bug Fixes
2459
+
2460
+ - **Popup:** remove ambient types ([72fb736](https://github.com/skbkontur/retail-ui/commit/72fb736))
2461
+
2462
+ # [0.41.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.40.1...retail-ui@0.41.0) (2019-02-26)
2463
+
2464
+ ### Bug Fixes
2465
+
2466
+ - **ComboBox:** fix `focusNextElement` call condition ([da8e007](https://github.com/skbkontur/retail-ui/commit/da8e007))
2467
+ - **ComboBox:** fix open if blured ([6a63937](https://github.com/skbkontur/retail-ui/commit/6a63937))
2468
+ - **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))
2469
+ - **ComboBox:** use requestStatus and repeatRequest to highlight menu item properly ([c5dfd8f](https://github.com/skbkontur/retail-ui/commit/c5dfd8f))
2470
+ - **DateInput:** add handle action `separator` ([c532008](https://github.com/skbkontur/retail-ui/commit/c532008)), closes [#1059](https://github.com/skbkontur/retail-ui/issues/1059)
2471
+ - **Hint:** don't render Popup if text is empty ([f4b2e03](https://github.com/skbkontur/retail-ui/commit/f4b2e03))
2472
+ - **PasswordInput:** remove not DOM prop `detectCapsLock` ([7d49446](https://github.com/skbkontur/retail-ui/commit/7d49446))
2473
+ - **Popup:** closing 'hover' after dropdown selection ([c021e04](https://github.com/skbkontur/retail-ui/commit/c021e04))
2474
+ - **Popup:** possible memory leak fix ([bd1bca4](https://github.com/skbkontur/retail-ui/commit/bd1bca4))
2475
+ - **retail-ui:** fix input and button baseline (according to the guides) ([085d6af](https://github.com/skbkontur/retail-ui/commit/085d6af))
2476
+ - **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)
2477
+ - **Tooltip:** don't render Popup without content ([a9fbdb5](https://github.com/skbkontur/retail-ui/commit/a9fbdb5))
2478
+
2479
+ ### Features
2480
+
2481
+ - **ComboBox:** add `cancelSearch` public method ([dcafb27](https://github.com/skbkontur/retail-ui/commit/dcafb27))
2482
+ - **ComboBox:** public blur method ([e3e3a8e](https://github.com/skbkontur/retail-ui/commit/e3e3a8e))
2483
+ - **Fias:** support foreign addresses ([2641ca2](https://github.com/skbkontur/retail-ui/commit/2641ca2))
2484
+
2485
+ ## [0.40.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.40.0...retail-ui@0.40.1) (2019-02-19)
2486
+
2487
+ ### Bug Fixes
2488
+
2489
+ - **SidePage:** dynamic resolved types `Body` and `Footer` with context ([4ec286b](https://github.com/skbkontur/retail-ui/commit/4ec286b))
2490
+
2491
+ # [0.40.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.39.0...retail-ui@0.40.0) (2019-02-19)
2492
+
2493
+ ### Bug Fixes
2494
+
2495
+ - **RenderContainer:** unique keys warning ([b2279b3](https://github.com/skbkontur/retail-ui/commit/b2279b3)), closes [#1149](https://github.com/skbkontur/retail-ui/issues/1149)
2496
+ - **Tooltip:** fixed closing for `hoverAnchor` ([fd932f2](https://github.com/skbkontur/retail-ui/commit/fd932f2)), closes [#973](https://github.com/skbkontur/retail-ui/issues/973)
2497
+
2498
+ ### Features
2499
+
2500
+ - **flow:** add typings ([#1160](https://github.com/skbkontur/retail-ui/issues/1160)) ([55d79c9](https://github.com/skbkontur/retail-ui/commit/55d79c9))
2501
+ - **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)
2502
+ - **Popup:** add `ignoreHover` prop ([869f556](https://github.com/skbkontur/retail-ui/commit/869f556))
2503
+ - **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))
2504
+
2505
+ <a name="0.39.0"></a>
2506
+
2507
+ # [0.39.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.38.0...retail-ui@0.39.0) (2019-02-12)
2508
+
2509
+ ### Bug Fixes
2510
+
2511
+ - **DropdownContainer:** fixed initial position ([8eed80e](https://github.com/skbkontur/retail-ui/commit/8eed80e))
2512
+ - **Menu:** not call `setState` after unmount ([dfd5152](https://github.com/skbkontur/retail-ui/commit/dfd5152))
2513
+
2514
+ ### Features
2515
+
2516
+ - **ComboBox:** минимальное время показа лоадера ([279afac](https://github.com/skbkontur/retail-ui/commit/279afac))
2517
+ - **Fias:** add fields settings ([31ea3d3](https://github.com/skbkontur/retail-ui/commit/31ea3d3))
2518
+ - **Fias:** add postalCode field ([02f1498](https://github.com/skbkontur/retail-ui/commit/02f1498))
2519
+ - **Fias:** move fields labels to the locale ([0bae0fd](https://github.com/skbkontur/retail-ui/commit/0bae0fd))
2520
+ - **retail-ui:** add more flow typings ([#1137](https://github.com/skbkontur/retail-ui/issues/1137)) ([e72b3eb](https://github.com/skbkontur/retail-ui/commit/e72b3eb))
2521
+
2522
+ <a name="0.38.0"></a>
2523
+
2524
+ # [0.38.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.37.0...retail-ui@0.38.0) (2019-02-05)
2525
+
2526
+ ### Bug Fixes
2527
+
2528
+ - **Button:** reset text styles ([0b7eec5](https://github.com/skbkontur/retail-ui/commit/0b7eec5)), closes [#1108](https://github.com/skbkontur/retail-ui/issues/1108)
2529
+ - **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)
2530
+ - **Combobox:** fix non-closing menu with disablePortal prop ([c5b5288](https://github.com/skbkontur/retail-ui/commit/c5b5288))
2531
+ - **DateInput:** remove unecessary wrapper element ([908941e](https://github.com/skbkontur/retail-ui/commit/908941e)), closes [#1119](https://github.com/skbkontur/retail-ui/issues/1119)
2532
+ - **Input:** reset text styles ([b7bd90b](https://github.com/skbkontur/retail-ui/commit/b7bd90b)), closes [#1108](https://github.com/skbkontur/retail-ui/issues/1108)
2533
+ - **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)
2534
+ - **Kladr:** recover TypeScript typings ([948212d](https://github.com/skbkontur/retail-ui/commit/948212d)), closes [#1058](https://github.com/skbkontur/retail-ui/issues/1058)
2535
+ - **RenderLayer:** disable catch events ([#1127](https://github.com/skbkontur/retail-ui/issues/1127)) ([f0a447c](https://github.com/skbkontur/retail-ui/commit/f0a447c))
2536
+ - **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))
2537
+
2538
+ ### Features
2539
+
2540
+ - add flow typings ([9577790](https://github.com/skbkontur/retail-ui/commit/9577790))
2541
+ - **Logotype:** add locale prop ([e39c7f7](https://github.com/skbkontur/retail-ui/commit/e39c7f7))
2542
+
2543
+ <a name="0.37.0"></a>
2544
+
2545
+ # [0.37.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.36.0...retail-ui@0.37.0) (2019-01-30)
2546
+
2547
+ ### Bug Fixes
2548
+
2549
+ - **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)
2550
+
2551
+ ### Features
2552
+
2553
+ - **Input:** поддержка префикса и суффикса ([fe9a1d8](https://github.com/skbkontur/retail-ui/commit/fe9a1d8))
2554
+ - **Input:** флекс-верска инпута ([64deabc](https://github.com/skbkontur/retail-ui/commit/64deabc))
2555
+ - **InputLikeText:** интерфейс пропсов наследуется от InputProps ([b4b7dce](https://github.com/skbkontur/retail-ui/commit/b4b7dce))
2556
+
2557
+ <a name="0.36.0"></a>
2558
+
2559
+ # [0.36.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.35.0...retail-ui@0.36.0) (2019-01-21)
2560
+
2561
+ ### Bug Fixes
2562
+
2563
+ - **Hint:** fix unnecessary re-render ([c9160d4](https://github.com/skbkontur/retail-ui/commit/c9160d4)), closes [#1053](https://github.com/skbkontur/retail-ui/issues/1053)
2564
+ - **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)
2565
+ - **TopBar.Item:** при onlyIcon={true} не рендерятся дети, fix [#1019](https://github.com/skbkontur/retail-ui/issues/1019) ([49f52d2](https://github.com/skbkontur/retail-ui/commit/49f52d2))
2566
+
2567
+ ### Features
2568
+
2569
+ - **Kebab:** add size medium ([9ea2d17](https://github.com/skbkontur/retail-ui/commit/9ea2d17))
2570
+ - **Select:** add public focus method ([8f317e1](https://github.com/skbkontur/retail-ui/commit/8f317e1)), closes [#1063](https://github.com/skbkontur/retail-ui/issues/1063)
2571
+ - **Select:** компонент принимает пропсы onFocus/onBlur ([2d4ba50](https://github.com/skbkontur/retail-ui/commit/2d4ba50))
2572
+ - **SidePage:** add updateLayout method ([7fe9290](https://github.com/skbkontur/retail-ui/commit/7fe9290))
2573
+
2574
+ <a name="0.35.0"></a>
2575
+
2576
+ # [0.35.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.34.0...retail-ui@0.35.0) (2019-01-14)
2577
+
2578
+ ### Bug Fixes
2579
+
2580
+ - **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)
2581
+ - **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)
2582
+ - **ComboBoxOld:** fix click on disabled arrow ([031281b](https://github.com/skbkontur/retail-ui/commit/031281b))
2583
+ - **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)
2584
+ - **Input:** pass formatChars to ReactInputMask ([747badf](https://github.com/skbkontur/retail-ui/commit/747badf))
2585
+ - **Modal:** скрыта нативная рамка фокуса в ff ([f9fecb2](https://github.com/skbkontur/retail-ui/commit/f9fecb2))
2586
+ - **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))
2587
+
2588
+ ### Features
2589
+
2590
+ - **Icon:** remove component ([cd229d3](https://github.com/skbkontur/retail-ui/commit/cd229d3)), closes [#1037](https://github.com/skbkontur/retail-ui/issues/1037)
2591
+ - **retail-ui:** add brand color variables ([072f2f5](https://github.com/skbkontur/retail-ui/commit/072f2f5))
2592
+ - **retail-ui:** add TokenInput component ([402c9bc](https://github.com/skbkontur/retail-ui/commit/402c9bc)), closes [#650](https://github.com/skbkontur/retail-ui/issues/650)
2593
+
2594
+ ### BREAKING CHANGES
2595
+
2596
+ - **Icon:** Component `Icon` has been removed, please use icons from `@skbkontur/react-icons`
2597
+
2598
+ <a name="0.34.0"></a>
2599
+
2600
+ # [0.34.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.33.0...retail-ui@0.34.0) (2018-12-26)
2601
+
2602
+ ### Bug Fixes
2603
+
2604
+ - **Autocomplete:** исправлен многократный вызов `source` ([6a73bc5](https://github.com/skbkontur/retail-ui/commit/6a73bc5)), closes [#937](https://github.com/skbkontur/retail-ui/issues/937)
2605
+ - **ComboBox:** always close on clickOutside ([1715695](https://github.com/skbkontur/retail-ui/commit/1715695))
2606
+ - **ComboBox:** run empty search on input click if closed ([75670b4](https://github.com/skbkontur/retail-ui/commit/75670b4))
2607
+ - **CurrencyInput:** починено поведение фокуса ([ce3e1e9](https://github.com/skbkontur/retail-ui/commit/ce3e1e9)), closes [#932](https://github.com/skbkontur/retail-ui/issues/932)
2608
+ - **DatePicker:** close if picker became disabled ([2b98084](https://github.com/skbkontur/retail-ui/commit/2b98084))
2609
+ - **DatePicker:** do not open on focus if disabled ([03fb67d](https://github.com/skbkontur/retail-ui/commit/03fb67d))
2610
+ - **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)
2611
+ - **DatePickerOld:** can't blur in safari ([194adca](https://github.com/skbkontur/retail-ui/commit/194adca))
2612
+ - **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)
2613
+ - **Fias:** [FiasComboBox] update searchText on value change ([55cb808](https://github.com/skbkontur/retail-ui/commit/55cb808))
2614
+ - **Fias:** disallow search through all parents for Street and lower ([09966ec](https://github.com/skbkontur/retail-ui/commit/09966ec))
2615
+ - **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)
2616
+ - **Fias:** open list on focus after validation (if has items) ([7972960](https://github.com/skbkontur/retail-ui/commit/7972960))
2617
+ - **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)
2618
+ - **Logotype:** always render dropdown container ([dfc26cb](https://github.com/skbkontur/retail-ui/commit/dfc26cb)), closes [#631](https://github.com/skbkontur/retail-ui/issues/631)
2619
+ - **Logotype:** display root as inline element when there is no widget ([b0f316f](https://github.com/skbkontur/retail-ui/commit/b0f316f))
2620
+ - **Logotype:** init widget on props update ([109f562](https://github.com/skbkontur/retail-ui/commit/109f562))
2621
+ - **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)
2622
+ - **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)
2623
+ - **TopBar:** update User's links to cabinet.kontur.ru ([53d1024](https://github.com/skbkontur/retail-ui/commit/53d1024))
2624
+
2625
+ ### Features
2626
+
2627
+ - **Fias:** show "select from list" message on validation if has items ([91dd8ba](https://github.com/skbkontur/retail-ui/commit/91dd8ba))
2628
+ - **Popup:** add `onOpen` prop ([af52795](https://github.com/skbkontur/retail-ui/commit/af52795))
2629
+ - **Spinner:** поддержка ReactNode в caption ([b0ba0cd](https://github.com/skbkontur/retail-ui/commit/b0ba0cd))
2630
+ - **Textarea:** шрифт и отсутпы по гайдам ([ca61be6](https://github.com/skbkontur/retail-ui/commit/ca61be6))
2631
+
2632
+ <a name="0.33.0"></a>
2633
+
2634
+ # [0.33.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.32.1...retail-ui@0.33.0) (2018-12-17)
2635
+
2636
+ ### Bug Fixes
2637
+
2638
+ - **ComboBox:** always keep textValue in sync with value, if not editing ([f9e6531](https://github.com/skbkontur/retail-ui/commit/f9e6531))
2639
+ - **ComboBox:** fix getValueString function ([50accf1](https://github.com/skbkontur/retail-ui/commit/50accf1))
2640
+ - **CustomComboBox:** made some props required ([dd1f90a](https://github.com/skbkontur/retail-ui/commit/dd1f90a))
2641
+ - **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)
2642
+ - **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)
2643
+
2644
+ ### Features
2645
+
2646
+ - **ComboBox:** add search method ([bb3fa2e](https://github.com/skbkontur/retail-ui/commit/bb3fa2e)), closes [#991](https://github.com/skbkontur/retail-ui/issues/991)
2647
+ - **ComboBox:** allow to open combobox with search ([c3b8965](https://github.com/skbkontur/retail-ui/commit/c3b8965))
2648
+
2649
+ <a name="0.32.1"></a>
2650
+
2651
+ ## [0.32.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.32.0...retail-ui@0.32.1) (2018-12-11)
2652
+
2653
+ ### Bug Fixes
2654
+
2655
+ - **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)
2656
+ - **Input:** fix regression around medium font-size ([a900f6e](https://github.com/skbkontur/retail-ui/commit/a900f6e))
2657
+
2658
+ <a name="0.32.0"></a>
2659
+
2660
+ # [0.32.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.31.0...retail-ui@0.32.0) (2018-12-10)
2661
+
2662
+ ### Bug Fixes
2663
+
2664
+ - **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)
2665
+ - **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)
2666
+ - **RenderContainer:** correct store ids in data-attribute ([0dc7089](https://github.com/skbkontur/retail-ui/commit/0dc7089))
2667
+ - **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)
2668
+
2669
+ ### Features
2670
+
2671
+ - **ComboBox:** add open/close methods ([7bbd941](https://github.com/skbkontur/retail-ui/commit/7bbd941)), closes [#957](https://github.com/skbkontur/retail-ui/issues/957)
2672
+ - **Input:** blink on unexpected input ([7162ffa](https://github.com/skbkontur/retail-ui/commit/7162ffa))
2673
+ - **lib:** add functions for getting focusable elements ([6ff8b71](https://github.com/skbkontur/retail-ui/commit/6ff8b71))
2674
+
2675
+ ### Performance Improvements
2676
+
2677
+ - **ComboBox:** optimize focusNextElement method ([f8946f4](https://github.com/skbkontur/retail-ui/commit/f8946f4))
2678
+
2679
+ <a name="0.31.0"></a>
2680
+
2681
+ # [0.31.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.30.0...retail-ui@0.31.0) (2018-12-04)
2682
+
2683
+ ### Bug Fixes
2684
+
2685
+ - **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)
2686
+ - **DatePickerOld:** fix firefox specific bug ([737262d](https://github.com/skbkontur/retail-ui/commit/737262d))
2687
+ - **Modal:** generated docs use helper function as component ([ac0f9f3](https://github.com/skbkontur/retail-ui/commit/ac0f9f3))
2688
+ - **Popup:** fix render child for react@15 ([b2364a6](https://github.com/skbkontur/retail-ui/commit/b2364a6))
2689
+ - **Select:** fix text-overflow color ([4b100bd](https://github.com/skbkontur/retail-ui/commit/4b100bd)), closes [#543](https://github.com/skbkontur/retail-ui/issues/543)
2690
+ - **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)
2691
+
2692
+ ### Features
2693
+
2694
+ - **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)
2695
+ - **Modal:** add alignTop prop ([618b88b](https://github.com/skbkontur/retail-ui/commit/618b88b)), closes [#715](https://github.com/skbkontur/retail-ui/issues/715)
2696
+
2697
+ <a name="0.30.0"></a>
2698
+
2699
+ # [0.30.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.29.0...retail-ui@0.30.0) (2018-11-20)
2700
+
2701
+ ### Bug Fixes
2702
+
2703
+ - **ComboBox:** fix blinking test by mocking lodash.debounce ([fef6e3e](https://github.com/skbkontur/retail-ui/commit/fef6e3e))
2704
+ - **ComboBox:** prevent searching items after blur ([0a6153d](https://github.com/skbkontur/retail-ui/commit/0a6153d))
2705
+ - **ComboBox:** show editing input text on focus instead of value ([6e0e8d4](https://github.com/skbkontur/retail-ui/commit/6e0e8d4))
2706
+ - **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)
2707
+ - **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)
2708
+ - **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)
2709
+
2710
+ ### Features
2711
+
2712
+ - **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)
2713
+ - **Hint:** add `useWrapper` prop ([142f684](https://github.com/skbkontur/retail-ui/commit/142f684))
2714
+ - **Modal:** опциональное залипание шапки и футера ([#911](https://github.com/skbkontur/retail-ui/issues/911)) ([1e763cf](https://github.com/skbkontur/retail-ui/commit/1e763cf))
2715
+ - **Popup:** allow use react component as anchorElement ([7b0b373](https://github.com/skbkontur/retail-ui/commit/7b0b373))
2716
+ - **Tooltip:** add `useWrapper` prop ([71d803a](https://github.com/skbkontur/retail-ui/commit/71d803a)), closes [#721](https://github.com/skbkontur/retail-ui/issues/721)
2717
+
2718
+ <a name="0.29.0"></a>
2719
+
2720
+ # [0.29.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.28.0...retail-ui@0.29.0) (2018-11-13)
2721
+
2722
+ ### Bug Fixes
2723
+
2724
+ - **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))
2725
+
2726
+ ### Features
2727
+
2728
+ - **Button:** Новые стили для кнопок-стрелок ([#839](https://github.com/skbkontur/retail-ui/issues/839)) ([bcfe9c9](https://github.com/skbkontur/retail-ui/commit/bcfe9c9))
2729
+ - **ComboBox:** allow use hover state in renderItem ([eacebc3](https://github.com/skbkontur/retail-ui/commit/eacebc3))
2730
+ - **Fias:** новый компонент ФИАС, [#779](https://github.com/skbkontur/retail-ui/issues/779) ([74e7e04](https://github.com/skbkontur/retail-ui/commit/74e7e04))
2731
+ - **FxInput:** add public method blur ([b4e167d](https://github.com/skbkontur/retail-ui/commit/b4e167d)), closes [#888](https://github.com/skbkontur/retail-ui/issues/888)
2732
+
2733
+ ### BREAKING CHANGES
2734
+
2735
+ - **ComboBox:** second argument of renderItem not used and replaced by MenuItemState
2736
+
2737
+ <a name="0.28.0"></a>
2738
+
2739
+ # [0.28.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.27.0...retail-ui@0.28.0) (2018-11-08)
2740
+
2741
+ ### Bug Fixes
2742
+
2743
+ - **CurrencyInput:** починено поведение плэйсхолдера ([84d2486](https://github.com/skbkontur/retail-ui/commit/84d2486))
2744
+ - **FxInput:** mainInGroup works again ([9bfca93](https://github.com/skbkontur/retail-ui/commit/9bfca93))
2745
+ - **HBVS:** only root component can update styles ([e12d32f](https://github.com/skbkontur/retail-ui/commit/e12d32f))
2746
+ - **Hint:** remove inline-block style [#829](https://github.com/skbkontur/retail-ui/issues/829) ([c9fbdfb](https://github.com/skbkontur/retail-ui/commit/c9fbdfb))
2747
+ - **Popup:** make disableAnimations working again ([c85db13](https://github.com/skbkontur/retail-ui/commit/c85db13))
2748
+ - **SidePage:** work with react@15 ([9e811bd](https://github.com/skbkontur/retail-ui/commit/9e811bd))
2749
+ - **Textarea:** поправлен интерфейс и пропсов, исправлена пара багов ([715d162](https://github.com/skbkontur/retail-ui/commit/715d162))
2750
+ - **Tooltip:** click on svg in tooltip [#877](https://github.com/skbkontur/retail-ui/issues/877) ([3fa07e7](https://github.com/skbkontur/retail-ui/commit/3fa07e7))
2751
+
2752
+ ### Features
2753
+
2754
+ - **Checkbox:** новое состояние WIP ([b443d5d](https://github.com/skbkontur/retail-ui/commit/b443d5d))
2755
+ - **Hint:** add disableAnimations prop ([cd548a6](https://github.com/skbkontur/retail-ui/commit/cd548a6))
2756
+ - **Paging:** global keydown listener ([b10df5d](https://github.com/skbkontur/retail-ui/commit/b10df5d))
2757
+ - **Paging:** show navigation hints by condition ([232a5c2](https://github.com/skbkontur/retail-ui/commit/232a5c2))
2758
+ - **PopupMenu:** add disableAnimation prop in PopupMenu-based components ([6602986](https://github.com/skbkontur/retail-ui/commit/6602986))
2759
+
2760
+ <a name="0.27.0"></a>
2761
+
2762
+ # [0.27.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.26.1...retail-ui@0.27.0) (2018-10-29)
2763
+
2764
+ ### Bug Fixes
2765
+
2766
+ - **Button:** fix flat styles ([5ba5980](https://github.com/skbkontur/retail-ui/commit/5ba5980)), closes [#856](https://github.com/skbkontur/retail-ui/issues/856)
2767
+ - **ComboBox:** public refs input/menu/inputLikeText ([f28b418](https://github.com/skbkontur/retail-ui/commit/f28b418))
2768
+ - **FxInput:** fix warning from 'mainInGroup' prop ([2ad6e4e](https://github.com/skbkontur/retail-ui/commit/2ad6e4e))
2769
+ - **Input:** filter props for HTMLInputElement, fix [#831](https://github.com/skbkontur/retail-ui/issues/831) ([fa94219](https://github.com/skbkontur/retail-ui/commit/fa94219))
2770
+ - **Input:** filter props for HTMLInputElement, fix [#831](https://github.com/skbkontur/retail-ui/issues/831) ([b0f04af](https://github.com/skbkontur/retail-ui/commit/b0f04af))
2771
+ - **Input:** input icons inside modal header [#861](https://github.com/skbkontur/retail-ui/issues/861) ([b69f0ab](https://github.com/skbkontur/retail-ui/commit/b69f0ab))
2772
+ - **Input:** update typings ([34adf0a](https://github.com/skbkontur/retail-ui/commit/34adf0a)), closes [#845](https://github.com/skbkontur/retail-ui/issues/845)
2773
+ - **Link:** fix types, fix [#841](https://github.com/skbkontur/retail-ui/issues/841) ([4a1e2b8](https://github.com/skbkontur/retail-ui/commit/4a1e2b8))
2774
+ - **Modal:** fix after Sticky hotfix ([b354149](https://github.com/skbkontur/retail-ui/commit/b354149))
2775
+ - **Modal:** not adaptive ([96178bd](https://github.com/skbkontur/retail-ui/commit/96178bd)), closes [#847](https://github.com/skbkontur/retail-ui/issues/847)
2776
+ - **SidePage:** fix blockBackground=false ([4a78d94](https://github.com/skbkontur/retail-ui/commit/4a78d94))
2777
+ - **SidePage:** fix blockBackground=false ([15a1763](https://github.com/skbkontur/retail-ui/commit/15a1763))
2778
+ - **Sticky:** вернули старое поведение с бесконечной рекурсией ([c04f3f1](https://github.com/skbkontur/retail-ui/commit/c04f3f1))
2779
+ - **Sticky:** вернули старое поведение с бесконечной рекурсией ([7cf7ebc](https://github.com/skbkontur/retail-ui/commit/7cf7ebc))
2780
+ - **Sticky:** fix default value of allowChildWithMargins ([3e5856e](https://github.com/skbkontur/retail-ui/commit/3e5856e))
2781
+ - **Sticky:** fix default value of allowChildWithMargins ([0ff54c6](https://github.com/skbkontur/retail-ui/commit/0ff54c6))
2782
+
2783
+ ### Features
2784
+
2785
+ - **CustomComboBox:** добавил ref для InputLikeText ([c5cd653](https://github.com/skbkontur/retail-ui/commit/c5cd653))
2786
+ - **Tooltip:** новое значение `trigger` ([391f715](https://github.com/skbkontur/retail-ui/commit/391f715)), closes [#818](https://github.com/skbkontur/retail-ui/issues/818)
2787
+
2788
+ <a name="0.26.3"></a>
2789
+
2790
+ ## [0.26.3](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.26.1...retail-ui@0.26.3) (2018-10-25)
2791
+
2792
+ ### Bug Fixes
2793
+
2794
+ - **Modal:** Modal.Footer и Modal.Header ипользуют Sticky с `allowChildWithMargins === true` ([8fee4c1](https://github.com/skbkontur/retail-ui/commit/8fee4c1bd5133e5b7419cb8951c08b46605a3985))
2795
+
2796
+ <a name="0.26.2"></a>
2797
+
2798
+ ## [0.26.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.26.0...retail-ui@0.26.2) (2018-10-25)
2799
+
2800
+ ### Bug Fixes
2801
+
2802
+ - **Sticky:** fix default value of allowChildWithMargins ([fffbea0](https://github.com/skbkontur/retail-ui/commit/fffbea0))
2803
+ - **Sticky:** вернули старое поведение с бесконечной рекурсией ([ebbbeec](https://github.com/skbkontur/retail-ui/commit/ebbbeec))
2804
+
2805
+ <a name="0.26.1"></a>
2806
+
2807
+ ## [0.26.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.26.0...retail-ui@0.26.1) (2018-10-24)
2808
+
2809
+ **Note:** Version bump only for package retail-ui
2810
+
2811
+ <a name="0.26.0"></a>
2812
+
2813
+ # [0.26.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.25.0...retail-ui@0.26.0) (2018-10-23)
2814
+
2815
+ ### Bug Fixes
2816
+
2817
+ - **Button:** fix subpixel bug in chrome ([a757350](https://github.com/skbkontur/retail-ui/commit/a757350))
2818
+ - **FxInput:** fix warning from 'mainInGroup' prop ([d24390c](https://github.com/skbkontur/retail-ui/commit/d24390c))
2819
+ - **HBVS:** окончательно отремонтирован ([c8df8a5](https://github.com/skbkontur/retail-ui/commit/c8df8a5))
2820
+ - **Modal:** fix modalClickTrap height, close [#810](https://github.com/skbkontur/retail-ui/issues/810) ([01497b5](https://github.com/skbkontur/retail-ui/commit/01497b5))
2821
+
2822
+ ### Features
2823
+
2824
+ - **combobox:** accept onUnexpectedInput handler return value ([e6c1d37](https://github.com/skbkontur/retail-ui/commit/e6c1d37))
2825
+ - **Icon:** use svg icons ([0690828](https://github.com/skbkontur/retail-ui/commit/0690828))
2826
+
2827
+ <a name="0.25.0"></a>
2828
+
2829
+ # [0.25.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.24.1...retail-ui@0.25.0) (2018-10-15)
2830
+
2831
+ ### Bug Fixes
2832
+
2833
+ - **ComboBox:** onChange при потере фокуса ([c3353b0](https://github.com/skbkontur/retail-ui/commit/c3353b0)), closes [#680](https://github.com/skbkontur/retail-ui/issues/680)
2834
+ - **HBVS:** пересчет размеров окна в каждом didUpdate, Closed [#717](https://github.com/skbkontur/retail-ui/issues/717) ([a162a03](https://github.com/skbkontur/retail-ui/commit/a162a03))
2835
+ - **Input:** fix console.log warning in group ([2bd4287](https://github.com/skbkontur/retail-ui/commit/2bd4287))
2836
+ - **Input:** повыщенный z-index при фокусе ([cf7f423](https://github.com/skbkontur/retail-ui/commit/cf7f423))
2837
+ - **Kebab:** react warning of unitless number ([66c6f21](https://github.com/skbkontur/retail-ui/commit/66c6f21))
2838
+ - **Modal:** fix click-handler ([cf84fd9](https://github.com/skbkontur/retail-ui/commit/cf84fd9)), closes [#757](https://github.com/skbkontur/retail-ui/issues/757)
2839
+ - **Modal:** focusLock отключен в ie, fix [#784](https://github.com/skbkontur/retail-ui/issues/784) ([839c7fa](https://github.com/skbkontur/retail-ui/commit/839c7fa))
2840
+ - **Popup:** change min-width to fix [#799](https://github.com/skbkontur/retail-ui/issues/799) ([4fb60a6](https://github.com/skbkontur/retail-ui/commit/4fb60a6))
2841
+ - **ResizeDetector:** удален `removeEventListener` :green_apple: ([ab586f7](https://github.com/skbkontur/retail-ui/commit/ab586f7))
2842
+ - **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)
2843
+
2844
+ ### Features
2845
+
2846
+ - **Calendar:** больше переменных в стилях ([212bd1f](https://github.com/skbkontur/retail-ui/commit/212bd1f)), closes [#755](https://github.com/skbkontur/retail-ui/issues/755)
2847
+ - **Group:** added Group tests and Stories ([a669d7f](https://github.com/skbkontur/retail-ui/commit/a669d7f))
2848
+ - **Input:** выделение значения ([1b68c7a](https://github.com/skbkontur/retail-ui/commit/1b68c7a))
2849
+ - **Textarea:** выделение значения ([8282b37](https://github.com/skbkontur/retail-ui/commit/8282b37))
2850
+
2851
+ <a name="0.24.1"></a>
2852
+
2853
+ ## [0.24.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.24.0...retail-ui@0.24.1) (2018-10-10)
2854
+
2855
+ ### Bug Fixes
2856
+
2857
+ - **ComboBox:** PureComponent заменен на shouldComponentUpdate ([38d34fc](https://github.com/skbkontur/retail-ui/commit/38d34fc))
2858
+ - **SidePage:** fix zIndex of footer, fixed [#714](https://github.com/skbkontur/retail-ui/issues/714) ([63a2b5d](https://github.com/skbkontur/retail-ui/commit/63a2b5d))
2859
+
2860
+ <a name="0.24.0"></a>
2861
+
2862
+ # [0.24.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.23.3...retail-ui@0.24.0) (2018-10-08)
2863
+
2864
+ ### Bug Fixes
2865
+
2866
+ - **Button:** fix type link in flat mode ([dc1d505](https://github.com/skbkontur/retail-ui/commit/dc1d505))
2867
+ - **ComboBox:** изменение значения после unexpectedInput ([c5379be](https://github.com/skbkontur/retail-ui/commit/c5379be)), closes [#730](https://github.com/skbkontur/retail-ui/issues/730)
2868
+ - **Hint:** pin color for ie11 ([7361e20](https://github.com/skbkontur/retail-ui/commit/7361e20))
2869
+ - **Input:** fix flat styles ([cbb4e55](https://github.com/skbkontur/retail-ui/commit/cbb4e55)), closes [#731](https://github.com/skbkontur/retail-ui/issues/731)
2870
+ - **Tooltip:** allow customize color ([26af1d5](https://github.com/skbkontur/retail-ui/commit/26af1d5))
2871
+
2872
+ ### Features
2873
+
2874
+ - **ComboBox:** add 'reset' method ([4ff05fa](https://github.com/skbkontur/retail-ui/commit/4ff05fa))
2875
+ - 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)
2876
+
2877
+ <a name="0.23.3"></a>
2878
+
2879
+ ## [0.23.3](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.23.2...retail-ui@0.23.3) (2018-09-27)
2880
+
2881
+ **Note:** Version bump only for package retail-ui
2882
+
2883
+ <a name="0.23.2"></a>
2884
+
2885
+ ## [0.23.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.23.1...retail-ui@0.23.2) (2018-09-26)
2886
+
2887
+ ### Bug Fixes
2888
+
2889
+ - **Textarea:** fix % width ([d4dab33](https://github.com/skbkontur/retail-ui/commit/d4dab33))
2890
+
2891
+ <a name="0.23.1"></a>
2892
+
2893
+ ## [0.23.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.23.0...retail-ui@0.23.1) (2018-09-24)
2894
+
2895
+ ### Bug Fixes
2896
+
2897
+ - **Hint:** render method ([585d0b8](https://github.com/skbkontur/retail-ui/commit/585d0b8))
2898
+ - **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))
2899
+ - **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))
2900
+ - **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))
2901
+
2902
+ <a name="0.23.0"></a>
2903
+
2904
+ # [0.23.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.22.0...retail-ui@0.23.0) (2018-09-17)
2905
+
2906
+ ### Bug Fixes
2907
+
2908
+ - **Button:** removed z-index ([02ce734](https://github.com/skbkontur/retail-ui/commit/02ce734))
2909
+ - **ComboBox:** clear textValue ([c66342c](https://github.com/skbkontur/retail-ui/commit/c66342c))
2910
+ - **ComboBox:** don't focus if props.value changed with error ([1ce1235](https://github.com/skbkontur/retail-ui/commit/1ce1235))
2911
+ - **ComboBox:** test replace `is` to `exists` ([0c6247a](https://github.com/skbkontur/retail-ui/commit/0c6247a))
2912
+ - **CurrencyInput:** missing blur method ([60edcdc](https://github.com/skbkontur/retail-ui/commit/60edcdc))
2913
+ - **DatePicker:** fixed icon line-height, close [#493](https://github.com/skbkontur/retail-ui/issues/493) ([3c990e0](https://github.com/skbkontur/retail-ui/commit/3c990e0))
2914
+ - **HBVS:** восстановление скролла контейнера при unmount ([faebf8f](https://github.com/skbkontur/retail-ui/commit/faebf8f))
2915
+ - **Input:** remove `z-index` from styles ([1abcc3e](https://github.com/skbkontur/retail-ui/commit/1abcc3e))
2916
+ - **MenuItem:** fix bounds ([34f879f](https://github.com/skbkontur/retail-ui/commit/34f879f)), closes [#662](https://github.com/skbkontur/retail-ui/issues/662)
2917
+ - **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)
2918
+ - **OldComboBox:** use placeholder color from variables ([3ac585b](https://github.com/skbkontur/retail-ui/commit/3ac585b))
2919
+ - **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)
2920
+ - **Textarea:** fix adapter ([08e5104](https://github.com/skbkontur/retail-ui/commit/08e5104))
2921
+ - **Toggle:** controlled/uncontrolled ([d0a7df1](https://github.com/skbkontur/retail-ui/commit/d0a7df1)), closes [#699](https://github.com/skbkontur/retail-ui/issues/699)
2922
+ - **Toggle:** удален console.log, fixed [#689](https://github.com/skbkontur/retail-ui/issues/689) ([7169baf](https://github.com/skbkontur/retail-ui/commit/7169baf))
2923
+ - **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)
2924
+ - **TopBar:** дропдауны на основе Popup ([c38f520](https://github.com/skbkontur/retail-ui/commit/c38f520)), closes [#655](https://github.com/skbkontur/retail-ui/issues/655)
2925
+
2926
+ ### Features
2927
+
2928
+ - **Modal:** `425px` теперь живет в `variables.less` ([21b7192](https://github.com/skbkontur/retail-ui/commit/21b7192))
2929
+ - **PopupMenu:** функция в caption ([7dbea4e](https://github.com/skbkontur/retail-ui/commit/7dbea4e))
2930
+ - **ResizeDetecter:** компонент для отслеживания ресайза элемента ([d9fc862](https://github.com/skbkontur/retail-ui/commit/d9fc862))
2931
+
2932
+ <a name="0.22.0"></a>
2933
+
2934
+ # [0.22.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.21.2...retail-ui@0.22.0) (2018-08-21)
2935
+
2936
+ ### Bug Fixes
2937
+
2938
+ - **Kebab:** восстановление фокуса на кнопке после закрытия ([b3a4002](https://github.com/skbkontur/retail-ui/commit/b3a4002))
2939
+
2940
+ ### Features
2941
+
2942
+ - **Button:** состояние error у button-link ([eb8d3ac](https://github.com/skbkontur/retail-ui/commit/eb8d3ac))
2943
+ - **Toggle:** переделан компонент ([1a93003](https://github.com/skbkontur/retail-ui/commit/1a93003))
2944
+
2945
+ <a name="0.21.2"></a>
2946
+
2947
+ ## [0.21.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.21.0...retail-ui@0.21.2) (2018-08-17)
2948
+
2949
+ ### Bug Fixes
2950
+
2951
+ - **retail-ui:** fix confused publishing ([4d3051b](https://github.com/skbkontur/retail-ui/commit/4d3051b))
2952
+
2953
+ <a name="0.21.0"></a>
2954
+
2955
+ # [0.21.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.20.2...retail-ui@0.21.0) (2018-08-16)
2956
+
2957
+ ### Bug Fixes
2958
+
2959
+ - **Combobox:** disabled в плоской теме вновь работает ([c083b34](https://github.com/skbkontur/retail-ui/commit/c083b34)), closes [#660](https://github.com/skbkontur/retail-ui/issues/660)
2960
+ - **Hint:** позиционирование с блочным элементом ([6430b6f](https://github.com/skbkontur/retail-ui/commit/6430b6f)), closes [#637](https://github.com/skbkontur/retail-ui/issues/637)
2961
+
2962
+ ### Features
2963
+
2964
+ - **retail-ui Calendar:** открывается ближайший доступный месяц ([a8e4858](https://github.com/skbkontur/retail-ui/commit/a8e4858)), closes [#658](https://github.com/skbkontur/retail-ui/issues/658)
2965
+
2966
+ <a name="0.20.2"></a>
2967
+
2968
+ ## [0.20.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.20.1...retail-ui@0.20.2) (2018-08-06)
2969
+
2970
+ ### Bug Fixes
2971
+
2972
+ - **datepicker:** disable values which are not between min/max date ([1a2a507](https://github.com/skbkontur/retail-ui/commit/1a2a507))
2973
+ - **datepicker:** select works correct with january ([e2f3eac](https://github.com/skbkontur/retail-ui/commit/e2f3eac))
2974
+ - **datepicker:** select works correct with january, added test ([682c35a](https://github.com/skbkontur/retail-ui/commit/682c35a))
2975
+ - **Input:** flat-стили по гайдам ([1f51a19](https://github.com/skbkontur/retail-ui/commit/1f51a19))
2976
+ - **Input:** стили по гайдам ([da6c464](https://github.com/skbkontur/retail-ui/commit/da6c464)), closes [#627](https://github.com/skbkontur/retail-ui/issues/627)
2977
+ - **tabs:** added default export ([aad57fd](https://github.com/skbkontur/retail-ui/commit/aad57fd))
2978
+ - **Textarea:** flat-стили ([829874d](https://github.com/skbkontur/retail-ui/commit/829874d))
2979
+ - **tooltip:** dont show tail if render returns null ([dc82b86](https://github.com/skbkontur/retail-ui/commit/dc82b86))
2980
+
2981
+ <a name="0.20.1"></a>
2982
+
2983
+ ## [0.20.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.20.0...retail-ui@0.20.1) (2018-07-31)
2984
+
2985
+ ### Bug Fixes
2986
+
2987
+ - **Modal:** фокус внутри Modal ([59e3d82](https://github.com/skbkontur/retail-ui/commit/59e3d82)), closes [#645](https://github.com/skbkontur/retail-ui/issues/645)
2988
+
2989
+ <a name="0.20.0"></a>
2990
+
2991
+ # [0.20.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.19.1...retail-ui@0.20.0) (2018-07-26)
2992
+
2993
+ ### Bug Fixes
2994
+
2995
+ - **Calendar:** Починен скролл около последнего доступного месяца ([aa0d6a7](https://github.com/skbkontur/retail-ui/commit/aa0d6a7)), closes [#619](https://github.com/skbkontur/retail-ui/issues/619)
2996
+ - **Dropdown:** починен интерфейс пропсов ([ec37a07](https://github.com/skbkontur/retail-ui/commit/ec37a07)), closes [#633](https://github.com/skbkontur/retail-ui/issues/633)
2997
+ - **Hint:** fix [#624](https://github.com/skbkontur/retail-ui/issues/624) ([64fa5c5](https://github.com/skbkontur/retail-ui/commit/64fa5c5))
2998
+ - **InternalMenu:** исправлены тайпинги ([dc6e9cc](https://github.com/skbkontur/retail-ui/commit/dc6e9cc))
2999
+ - **Loader:** position after window resize ([ed7884d](https://github.com/skbkontur/retail-ui/commit/ed7884d))
3000
+ - **logotype:** fixed widget button in safari ([eeecacd](https://github.com/skbkontur/retail-ui/commit/eeecacd))
3001
+ - **Menu:** исправлены тайпинги ([8e79032](https://github.com/skbkontur/retail-ui/commit/8e79032))
3002
+ - **Modal:** fix top padding if no Header ([3c8d696](https://github.com/skbkontur/retail-ui/commit/3c8d696))
3003
+ - **Popup:** fix \_updateLocation method ([b14740d](https://github.com/skbkontur/retail-ui/commit/b14740d))
3004
+ - **textarea:** fixes [#564](https://github.com/skbkontur/retail-ui/issues/564) ([cb0cf4f](https://github.com/skbkontur/retail-ui/commit/cb0cf4f))
3005
+ - **textarea:** fixes [#564](https://github.com/skbkontur/retail-ui/issues/564) ([b265343](https://github.com/skbkontur/retail-ui/commit/b265343))
3006
+
3007
+ ### Features
3008
+
3009
+ - **CurrencyInput:** добавлен публичный метод focus ([5454a60](https://github.com/skbkontur/retail-ui/commit/5454a60))
3010
+ - **FxInput:** возможность получить инстанс инпута через innerProp ([52b3072](https://github.com/skbkontur/retail-ui/commit/52b3072))
3011
+ - **FxInput:** публичный метод focus ([25ebb0d](https://github.com/skbkontur/retail-ui/commit/25ebb0d))
3012
+ - **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)
3013
+ - **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)
3014
+ - **MenuItem:** принимает Link из react-router-dom ([eab8056](https://github.com/skbkontur/retail-ui/commit/eab8056)), closes [#602](https://github.com/skbkontur/retail-ui/issues/602)
3015
+ - **Modal:** фокус внутри модалки ([201cb8e](https://github.com/skbkontur/retail-ui/commit/201cb8e))
3016
+ - **PopupMenu:** закрытие попапа ([97f399e](https://github.com/skbkontur/retail-ui/commit/97f399e))
3017
+
3018
+ ### Reverts
3019
+
3020
+ - refactor(autocomplete): ChangeEvent in onChange ([4a01ff4](https://github.com/skbkontur/retail-ui/commit/4a01ff4))
3021
+
3022
+ <a name="0.19.1"></a>
3023
+
3024
+ ## [0.19.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.19.0...retail-ui@0.19.1) (2018-07-19)
3025
+
3026
+ ### Bug Fixes
3027
+
3028
+ - **ComboBox:** fixed onUnexpectedInput return type ([8ed6f1c](https://github.com/skbkontur/retail-ui/commit/8ed6f1c))
3029
+ - **Modal:** fixed always enabled mobile styles ([741a719](https://github.com/skbkontur/retail-ui/commit/741a719))
3030
+ - **RadioGroup:** value is no longer accepts only primitive ([a283d47](https://github.com/skbkontur/retail-ui/commit/a283d47))
3031
+
3032
+ <a name="0.19.0"></a>
3033
+
3034
+ # [0.19.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.18.14...retail-ui@0.19.0) (2018-07-19)
3035
+
3036
+ ### Bug Fixes
3037
+
3038
+ - **adapters:** fixed all adapters ([9d8252b](https://github.com/skbkontur/retail-ui/commit/9d8252b))
3039
+ - **Button:** change Button border-radius ([bfa5db8](https://github.com/skbkontur/retail-ui/commit/bfa5db8)), closes [#546](https://github.com/skbkontur/retail-ui/issues/546)
3040
+ - **Calendar:** пофикшен скролл к максимальному месяцу ([326a2cc](https://github.com/skbkontur/retail-ui/commit/326a2cc))
3041
+ - **datepicker:** correct keyboard and mouse events in date select ([b8694fb](https://github.com/skbkontur/retail-ui/commit/b8694fb))
3042
+ - **datepicker:** removed add-event-listener, onmouseleave handler ([aaf620f](https://github.com/skbkontur/retail-ui/commit/aaf620f))
3043
+ - **Hint:** принудительный перенос длинных слов ([7d5e171](https://github.com/skbkontur/retail-ui/commit/7d5e171)), closes [#596](https://github.com/skbkontur/retail-ui/issues/596)
3044
+ - **scripts\_\_build:** fixed wrong import ([da2d951](https://github.com/skbkontur/retail-ui/commit/da2d951))
3045
+ - **scripts\_\_build:** исправлено неверное определение TS файлов ([efd0032](https://github.com/skbkontur/retail-ui/commit/efd0032))
3046
+ - **Tab:** исправлено попадание лишнего пропа в разметку ([4c03b09](https://github.com/skbkontur/retail-ui/commit/4c03b09)), closes [#605](https://github.com/skbkontur/retail-ui/issues/605)
3047
+
3048
+ ### Features
3049
+
3050
+ - **modal:** адаптивная модалка ([bf76868](https://github.com/skbkontur/retail-ui/commit/bf76868))
3051
+
3052
+ <a name="0.18.14"></a>
3053
+
3054
+ ## [0.18.14](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.18.13...retail-ui@0.18.14) (2018-07-15)
3055
+
3056
+ ### Bug Fixes
3057
+
3058
+ - **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)
3059
+ - loader behavior with long content ([a6a14cc](https://github.com/skbkontur/retail-ui/commit/a6a14cc))
3060
+ - **combobox:** call onBlur if menu is opened ([c5ebde4](https://github.com/skbkontur/retail-ui/commit/c5ebde4))
3061
+ - **date-picker:** fix [#595](https://github.com/skbkontur/retail-ui/issues/595) ([6880cd6](https://github.com/skbkontur/retail-ui/commit/6880cd6))
3062
+ - **date-picker-old:** returned missed ts-declaration files ([97c8235](https://github.com/skbkontur/retail-ui/commit/97c8235))
3063
+ - **datepicker-old:** first date changing shows correctly ([f6d2a10](https://github.com/skbkontur/retail-ui/commit/f6d2a10))
3064
+ - **input:** fixed placeholder polyfill in flat ([e65ad6c](https://github.com/skbkontur/retail-ui/commit/e65ad6c))
3065
+ - **link:** fixed props ts-type ([0996fc4](https://github.com/skbkontur/retail-ui/commit/0996fc4))
3066
+ - **loader:** added Nullable type reference ([20c1da3](https://github.com/skbkontur/retail-ui/commit/20c1da3))
3067
+ - **loader:** codestyle ([fe57238](https://github.com/skbkontur/retail-ui/commit/fe57238))
3068
+ - **loader:** component and suffix are no longer required props ([5b9f625](https://github.com/skbkontur/retail-ui/commit/5b9f625))
3069
+ - **loader:** fixed generating `import` types ([696ec64](https://github.com/skbkontur/retail-ui/commit/696ec64))
3070
+ - **loader:** horizontal scroll content ([03dfdc8](https://github.com/skbkontur/retail-ui/commit/03dfdc8))
3071
+ - **logotype:** component is no longer required prop ([520c2d2](https://github.com/skbkontur/retail-ui/commit/520c2d2))
3072
+ - **password-input:** fixed generating `import` types ([d05f88e](https://github.com/skbkontur/retail-ui/commit/d05f88e))
3073
+ - **select:** better definitions ([489f1cb](https://github.com/skbkontur/retail-ui/commit/489f1cb))
3074
+ - **tab:** support [@types](https://github.com/types)/react@15 definitions ([5b120bb](https://github.com/skbkontur/retail-ui/commit/5b120bb))
3075
+ - **top-bar:** better definitions ([e7fcb6e](https://github.com/skbkontur/retail-ui/commit/e7fcb6e))
3076
+
3077
+ <a name="0.18.13"></a>
3078
+
3079
+ ## [0.18.13](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.18.12...retail-ui@0.18.13) (2018-07-09)
3080
+
3081
+ ### Bug Fixes
3082
+
3083
+ - **ts-definitions:** replaced global types with local types ([bbda3c0](https://github.com/skbkontur/retail-ui/commit/bbda3c0))
3084
+
3085
+ <a name="0.18.12"></a>
3086
+
3087
+ ## 0.18.12 (2018-07-09)
3088
+
3089
+ ### Bug Fixes
3090
+
3091
+ - **lookup:** allow correctly work with recompose ([80ebb97](https://github.com/skbkontur/retail-ui/commit/80ebb97))
3092
+ - **modal:** fixed paddings and close button ([e55e763](https://github.com/skbkontur/retail-ui/commit/e55e763))
3093
+ - **popup:** fixed recursive updates for older react ([9309748](https://github.com/skbkontur/retail-ui/commit/9309748))
3094
+ - **сurrency-input:** починка ввода циферок на андроиде и под selenium ([d3f0286](https://github.com/skbkontur/retail-ui/commit/d3f0286))