@skbkontur/react-ui 0.0.0-50f666af0e → 0.0.0-5188be76c1

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 (4259) hide show
  1. package/CHANGELOG.md +3366 -0
  2. package/LICENSE +21 -0
  3. package/README.md +133 -57
  4. package/cjs/components/Autocomplete/Autocomplete.d.ts +44 -21
  5. package/cjs/components/Autocomplete/Autocomplete.js +211 -40
  6. package/cjs/components/Autocomplete/Autocomplete.js.map +1 -1
  7. package/cjs/components/Autocomplete/Autocomplete.md +38 -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/getAutocompleteTheme.d.ts +2 -0
  12. package/cjs/components/Autocomplete/getAutocompleteTheme.js +11 -0
  13. package/cjs/components/Autocomplete/getAutocompleteTheme.js.map +1 -0
  14. package/cjs/components/Autocomplete/index.js +1 -1
  15. package/cjs/components/Autocomplete/index.js.map +1 -1
  16. package/cjs/components/Autocomplete/locale/index.d.ts +4 -0
  17. package/cjs/components/Autocomplete/locale/index.js +11 -0
  18. package/cjs/components/Autocomplete/locale/index.js.map +1 -0
  19. package/cjs/components/Autocomplete/locale/locales/en.d.ts +2 -0
  20. package/cjs/components/Autocomplete/locale/locales/en.js +6 -0
  21. package/cjs/components/Autocomplete/locale/locales/en.js.map +1 -0
  22. package/cjs/components/Autocomplete/locale/locales/ru.d.ts +2 -0
  23. package/cjs/components/Autocomplete/locale/locales/ru.js +6 -0
  24. package/cjs/components/Autocomplete/locale/locales/ru.js.map +1 -0
  25. package/cjs/components/Autocomplete/locale/types.d.ts +5 -0
  26. package/cjs/components/Autocomplete/locale/types.js +1 -0
  27. package/cjs/components/Button/ArrowLeftIcon.d.ts +3 -0
  28. package/cjs/components/Button/ArrowLeftIcon.js +15 -0
  29. package/cjs/components/Button/ArrowLeftIcon.js.map +1 -0
  30. package/cjs/components/Button/ArrowRightIcon.d.ts +3 -0
  31. package/cjs/components/Button/ArrowRightIcon.js +15 -0
  32. package/cjs/components/Button/ArrowRightIcon.js.map +1 -0
  33. package/cjs/components/Button/Button.d.ts +100 -26
  34. package/cjs/components/Button/Button.js +256 -15
  35. package/cjs/components/Button/Button.js.map +1 -1
  36. package/cjs/components/Button/Button.md +138 -89
  37. package/cjs/components/Button/Button.mixins.d.ts +6 -6
  38. package/cjs/components/Button/Button.mixins.js +85 -134
  39. package/cjs/components/Button/Button.mixins.js.map +1 -1
  40. package/cjs/components/Button/Button.styles.d.ts +94 -30
  41. package/cjs/components/Button/Button.styles.js +670 -338
  42. package/cjs/components/Button/Button.styles.js.map +1 -1
  43. package/cjs/components/Button/ButtonArrow.d.ts +8 -0
  44. package/cjs/components/Button/ButtonArrow.js +100 -0
  45. package/cjs/components/Button/ButtonArrow.js.map +1 -0
  46. package/cjs/components/Button/ButtonIcon.d.ts +10 -0
  47. package/cjs/components/Button/ButtonIcon.js +75 -0
  48. package/cjs/components/Button/ButtonIcon.js.map +1 -0
  49. package/cjs/components/Button/getInnerLinkTheme.d.ts +2 -0
  50. package/cjs/components/Button/getInnerLinkTheme.js +21 -0
  51. package/cjs/components/Button/getInnerLinkTheme.js.map +1 -0
  52. package/cjs/components/Button/index.js +1 -1
  53. package/cjs/components/Button/index.js.map +1 -1
  54. package/cjs/components/Calendar/Calendar.d.ts +105 -0
  55. package/cjs/components/Calendar/Calendar.js +476 -0
  56. package/cjs/components/Calendar/Calendar.js.map +1 -0
  57. package/cjs/components/Calendar/Calendar.md +158 -0
  58. package/cjs/components/Calendar/Calendar.styles.d.ts +6 -0
  59. package/cjs/components/Calendar/Calendar.styles.js +32 -0
  60. package/cjs/components/Calendar/Calendar.styles.js.map +1 -0
  61. package/cjs/components/Calendar/CalendarDateShape.js +52 -0
  62. package/cjs/components/Calendar/CalendarDateShape.js.map +1 -0
  63. package/cjs/components/Calendar/CalendarScrollEvents.js.map +1 -0
  64. package/cjs/components/Calendar/CalendarUtils.d.ts +36 -0
  65. package/cjs/components/Calendar/CalendarUtils.js +117 -0
  66. package/cjs/components/Calendar/CalendarUtils.js.map +1 -0
  67. package/cjs/components/Calendar/DayCellView.d.ts +13 -0
  68. package/cjs/components/Calendar/DayCellView.js +62 -0
  69. package/cjs/components/Calendar/DayCellView.js.map +1 -0
  70. package/cjs/components/Calendar/DayCellView.styles.d.ts +12 -0
  71. package/cjs/components/Calendar/DayCellView.styles.js +74 -0
  72. package/cjs/components/Calendar/DayCellView.styles.js.map +1 -0
  73. package/cjs/components/Calendar/DayCellViewModel.js +19 -0
  74. package/cjs/components/Calendar/DayCellViewModel.js.map +1 -0
  75. package/cjs/components/Calendar/Month.d.ts +33 -0
  76. package/cjs/components/Calendar/Month.js +210 -0
  77. package/cjs/components/Calendar/Month.js.map +1 -0
  78. package/cjs/components/Calendar/MonthView.d.ts +21 -0
  79. package/cjs/components/Calendar/MonthView.js +122 -0
  80. package/cjs/components/Calendar/MonthView.js.map +1 -0
  81. package/cjs/components/Calendar/MonthView.styles.d.ts +10 -0
  82. package/cjs/components/Calendar/MonthView.styles.js +55 -0
  83. package/cjs/components/Calendar/MonthView.styles.js.map +1 -0
  84. package/cjs/components/Calendar/MonthViewModel.d.ts +14 -0
  85. package/cjs/components/Calendar/MonthViewModel.js +86 -0
  86. package/cjs/components/Calendar/MonthViewModel.js.map +1 -0
  87. package/cjs/components/Calendar/config.d.ts +2 -0
  88. package/cjs/components/Calendar/config.js +37 -0
  89. package/cjs/components/Calendar/config.js.map +1 -0
  90. package/cjs/components/Calendar/index.js +2 -0
  91. package/cjs/components/Calendar/index.js.map +1 -0
  92. package/cjs/components/Calendar/locale/index.d.ts +4 -0
  93. package/cjs/components/Calendar/locale/index.js +11 -0
  94. package/cjs/components/Calendar/locale/index.js.map +1 -0
  95. package/cjs/components/Calendar/locale/locales/en.d.ts +2 -0
  96. package/cjs/components/Calendar/locale/locales/en.js +18 -0
  97. package/cjs/components/Calendar/locale/locales/en.js.map +1 -0
  98. package/cjs/components/Calendar/locale/locales/ru.d.ts +2 -0
  99. package/cjs/components/Calendar/locale/locales/ru.js +18 -0
  100. package/cjs/components/Calendar/locale/locales/ru.js.map +1 -0
  101. package/cjs/components/Calendar/locale/types.d.ts +7 -0
  102. package/cjs/components/Calendar/locale/types.js +1 -0
  103. package/cjs/components/Center/Center.d.ts +17 -13
  104. package/cjs/components/Center/Center.js +39 -20
  105. package/cjs/components/Center/Center.js.map +1 -1
  106. package/cjs/components/Center/Center.md +26 -5
  107. package/cjs/components/Center/Center.styles.d.ts +1 -1
  108. package/cjs/components/Center/Center.styles.js +8 -11
  109. package/cjs/components/Center/Center.styles.js.map +1 -1
  110. package/cjs/components/Center/index.js +1 -1
  111. package/cjs/components/Center/index.js.map +1 -1
  112. package/cjs/components/Checkbox/Checkbox.d.ts +62 -20
  113. package/cjs/components/Checkbox/Checkbox.js +223 -44
  114. package/cjs/components/Checkbox/Checkbox.js.map +1 -1
  115. package/cjs/components/Checkbox/Checkbox.md +170 -63
  116. package/cjs/components/Checkbox/Checkbox.mixins.d.ts +2 -0
  117. package/cjs/components/Checkbox/Checkbox.mixins.js +37 -0
  118. package/cjs/components/Checkbox/Checkbox.mixins.js.map +1 -0
  119. package/cjs/components/Checkbox/Checkbox.styles.d.ts +25 -11
  120. package/cjs/components/Checkbox/Checkbox.styles.js +169 -75
  121. package/cjs/components/Checkbox/Checkbox.styles.js.map +1 -1
  122. package/cjs/components/Checkbox/CheckedIcon.d.ts +3 -0
  123. package/cjs/components/Checkbox/CheckedIcon.js +14 -0
  124. package/cjs/components/Checkbox/CheckedIcon.js.map +1 -0
  125. package/cjs/components/Checkbox/IndeterminateIcon.d.ts +3 -0
  126. package/cjs/components/Checkbox/IndeterminateIcon.js +13 -0
  127. package/cjs/components/Checkbox/IndeterminateIcon.js.map +1 -0
  128. package/cjs/components/Checkbox/index.js +1 -1
  129. package/cjs/components/Checkbox/index.js.map +1 -1
  130. package/cjs/components/ComboBox/ComboBox.d.ts +51 -21
  131. package/cjs/components/ComboBox/ComboBox.js +153 -74
  132. package/cjs/components/ComboBox/ComboBox.js.map +1 -1
  133. package/cjs/components/ComboBox/ComboBox.md +574 -432
  134. package/cjs/components/ComboBox/index.js +1 -1
  135. package/cjs/components/ComboBox/index.js.map +1 -1
  136. package/cjs/components/CurrencyInput/CurrencyHelper.d.ts +2 -0
  137. package/cjs/components/CurrencyInput/CurrencyHelper.js +45 -23
  138. package/cjs/components/CurrencyInput/CurrencyHelper.js.map +1 -1
  139. package/cjs/components/CurrencyInput/CurrencyInput.d.ts +23 -16
  140. package/cjs/components/CurrencyInput/CurrencyInput.js +135 -35
  141. package/cjs/components/CurrencyInput/CurrencyInput.js.map +1 -1
  142. package/cjs/components/CurrencyInput/CurrencyInput.md +37 -20
  143. package/cjs/components/CurrencyInput/CurrencyInputHelper.js +7 -5
  144. package/cjs/components/CurrencyInput/CurrencyInputHelper.js.map +1 -1
  145. package/cjs/components/CurrencyInput/CurrencyInputKeyboardActions.d.ts +3 -1
  146. package/cjs/components/CurrencyInput/CurrencyInputKeyboardActions.js +15 -3
  147. package/cjs/components/CurrencyInput/CurrencyInputKeyboardActions.js.map +1 -1
  148. package/cjs/components/CurrencyInput/CursorHelper.js +20 -17
  149. package/cjs/components/CurrencyInput/CursorHelper.js.map +1 -1
  150. package/cjs/components/CurrencyInput/SelectionHelper.js.map +1 -1
  151. package/cjs/components/CurrencyInput/constants.d.ts +3 -0
  152. package/cjs/components/CurrencyInput/constants.js +6 -2
  153. package/cjs/components/CurrencyInput/constants.js.map +1 -1
  154. package/cjs/components/CurrencyInput/index.js +1 -1
  155. package/cjs/components/CurrencyInput/index.js.map +1 -1
  156. package/cjs/components/CurrencyLabel/CurrencyLabel.d.ts +11 -11
  157. package/cjs/components/CurrencyLabel/CurrencyLabel.js +28 -15
  158. package/cjs/components/CurrencyLabel/CurrencyLabel.js.map +1 -1
  159. package/cjs/components/CurrencyLabel/CurrencyLabel.md +29 -23
  160. package/cjs/components/CurrencyLabel/index.js +1 -1
  161. package/cjs/components/CurrencyLabel/index.js.map +1 -1
  162. package/cjs/components/DateInput/CalendarIcon.d.ts +3 -0
  163. package/cjs/components/DateInput/CalendarIcon.js +15 -0
  164. package/cjs/components/DateInput/CalendarIcon.js.map +1 -0
  165. package/cjs/components/DateInput/DateFragmentsView.d.ts +2 -2
  166. package/cjs/components/DateInput/DateFragmentsView.js +19 -4
  167. package/cjs/components/DateInput/DateFragmentsView.js.map +1 -1
  168. package/cjs/components/DateInput/DateFragmentsView.styles.d.ts +5 -4
  169. package/cjs/components/DateInput/DateFragmentsView.styles.js +7 -11
  170. package/cjs/components/DateInput/DateFragmentsView.styles.js.map +1 -1
  171. package/cjs/components/DateInput/DateInput.d.ts +25 -14
  172. package/cjs/components/DateInput/DateInput.js +76 -27
  173. package/cjs/components/DateInput/DateInput.js.map +1 -1
  174. package/cjs/components/DateInput/DateInput.md +106 -104
  175. package/cjs/components/DateInput/DateInput.styles.d.ts +9 -6
  176. package/cjs/components/DateInput/DateInput.styles.js +20 -8
  177. package/cjs/components/DateInput/DateInput.styles.js.map +1 -1
  178. package/cjs/components/DateInput/ViewDateInputValidateChecks.js +21 -21
  179. package/cjs/components/DateInput/ViewDateInputValidateChecks.js.map +1 -1
  180. package/cjs/components/DateInput/helpers/DateInputKeyboardActions.js +2 -3
  181. package/cjs/components/DateInput/helpers/DateInputKeyboardActions.js.map +1 -1
  182. package/cjs/components/DateInput/helpers/InternalDateMediator.d.ts +3 -3
  183. package/cjs/components/DateInput/helpers/InternalDateMediator.js +15 -8
  184. package/cjs/components/DateInput/helpers/InternalDateMediator.js.map +1 -1
  185. package/cjs/components/DateInput/helpers/SelectionHelpers.js +4 -4
  186. package/cjs/components/DateInput/helpers/SelectionHelpers.js.map +1 -1
  187. package/cjs/components/DateInput/helpers/inputNumber.d.ts +3 -3
  188. package/cjs/components/DateInput/helpers/inputNumber.js +45 -12
  189. package/cjs/components/DateInput/helpers/inputNumber.js.map +1 -1
  190. package/cjs/components/DateInput/index.js +1 -1
  191. package/cjs/components/DateInput/index.js.map +1 -1
  192. package/cjs/components/DatePicker/DatePicker.d.ts +51 -31
  193. package/cjs/components/DatePicker/DatePicker.js +190 -39
  194. package/cjs/components/DatePicker/DatePicker.js.map +1 -1
  195. package/cjs/components/DatePicker/DatePicker.md +340 -310
  196. package/cjs/components/DatePicker/DatePicker.styles.d.ts +4 -1
  197. package/cjs/components/DatePicker/DatePicker.styles.js +39 -5
  198. package/cjs/components/DatePicker/DatePicker.styles.js.map +1 -1
  199. package/cjs/components/DatePicker/DatePickerHelpers.d.ts +1 -1
  200. package/cjs/components/DatePicker/DatePickerHelpers.js +2 -2
  201. package/cjs/components/DatePicker/DatePickerHelpers.js.map +1 -1
  202. package/cjs/components/DatePicker/Picker.d.ts +8 -9
  203. package/cjs/components/DatePicker/Picker.js +59 -39
  204. package/cjs/components/DatePicker/Picker.js.map +1 -1
  205. package/cjs/components/DatePicker/index.js +1 -1
  206. package/cjs/components/DatePicker/index.js.map +1 -1
  207. package/cjs/components/DatePicker/locale/index.js +1 -1
  208. package/cjs/components/DatePicker/locale/index.js.map +1 -1
  209. package/cjs/components/DatePicker/locale/locales/en.js +5 -14
  210. package/cjs/components/DatePicker/locale/locales/en.js.map +1 -1
  211. package/cjs/components/DatePicker/locale/locales/ru.js +5 -14
  212. package/cjs/components/DatePicker/locale/locales/ru.js.map +1 -1
  213. package/cjs/components/DatePicker/locale/types.d.ts +4 -2
  214. package/cjs/components/DatePicker/locale/types.js +1 -1
  215. package/cjs/components/Dropdown/Dropdown.d.ts +16 -6
  216. package/cjs/components/Dropdown/Dropdown.js +66 -31
  217. package/cjs/components/Dropdown/Dropdown.js.map +1 -1
  218. package/cjs/components/Dropdown/Dropdown.md +44 -12
  219. package/cjs/components/Dropdown/getDropdownTheme.d.ts +2 -0
  220. package/cjs/components/Dropdown/getDropdownTheme.js +43 -0
  221. package/cjs/components/Dropdown/getDropdownTheme.js.map +1 -0
  222. package/cjs/components/Dropdown/index.js +1 -1
  223. package/cjs/components/Dropdown/index.js.map +1 -1
  224. package/cjs/components/DropdownMenu/DropdownMenu.d.ts +32 -16
  225. package/cjs/components/DropdownMenu/DropdownMenu.js +53 -19
  226. package/cjs/components/DropdownMenu/DropdownMenu.js.map +1 -1
  227. package/cjs/components/DropdownMenu/DropdownMenu.md +249 -73
  228. package/cjs/components/DropdownMenu/getDropdownMenuTheme.d.ts +2 -0
  229. package/cjs/components/DropdownMenu/getDropdownMenuTheme.js +15 -0
  230. package/cjs/components/DropdownMenu/getDropdownMenuTheme.js.map +1 -0
  231. package/cjs/components/DropdownMenu/index.js +1 -1
  232. package/cjs/components/DropdownMenu/index.js.map +1 -1
  233. package/cjs/components/FileUploader/FileUploader.d.ts +61 -0
  234. package/cjs/components/FileUploader/FileUploader.js +373 -0
  235. package/cjs/components/FileUploader/FileUploader.js.map +1 -0
  236. package/cjs/components/FileUploader/FileUploader.md +79 -0
  237. package/cjs/components/FileUploader/FileUploader.mixins.d.ts +1 -0
  238. package/cjs/components/FileUploader/FileUploader.mixins.js +10 -0
  239. package/cjs/components/FileUploader/FileUploader.mixins.js.map +1 -0
  240. package/cjs/components/FileUploader/FileUploader.styles.d.ts +38 -0
  241. package/cjs/components/FileUploader/FileUploader.styles.js +304 -0
  242. package/cjs/components/FileUploader/FileUploader.styles.js.map +1 -0
  243. package/cjs/components/FileUploader/UploadIcon.d.ts +3 -0
  244. package/cjs/components/FileUploader/UploadIcon.js +15 -0
  245. package/cjs/components/FileUploader/UploadIcon.js.map +1 -0
  246. package/cjs/components/FileUploader/index.d.ts +5 -0
  247. package/cjs/components/FileUploader/index.js +5 -0
  248. package/cjs/components/FileUploader/index.js.map +1 -0
  249. package/cjs/components/FileUploader/locale/index.d.ts +4 -0
  250. package/cjs/components/FileUploader/locale/index.js +11 -0
  251. package/cjs/components/FileUploader/locale/index.js.map +1 -0
  252. package/cjs/components/FileUploader/locale/locales/en.d.ts +2 -0
  253. package/cjs/components/FileUploader/locale/locales/en.js +7 -0
  254. package/cjs/components/FileUploader/locale/locales/en.js.map +1 -0
  255. package/cjs/components/FileUploader/locale/locales/ru.d.ts +2 -0
  256. package/cjs/components/FileUploader/locale/locales/ru.js +7 -0
  257. package/cjs/components/FileUploader/locale/locales/ru.js.map +1 -0
  258. package/cjs/components/FileUploader/locale/types.d.ts +6 -0
  259. package/cjs/components/FileUploader/locale/types.js +1 -0
  260. package/cjs/components/FxInput/FxInput.d.ts +18 -8
  261. package/cjs/components/FxInput/FxInput.js +68 -9
  262. package/cjs/components/FxInput/FxInput.js.map +1 -1
  263. package/cjs/components/FxInput/FxInput.md +29 -13
  264. package/cjs/components/FxInput/FxInputRestoreBtn.d.ts +6 -0
  265. package/cjs/components/FxInput/FxInputRestoreBtn.js +80 -0
  266. package/cjs/components/FxInput/FxInputRestoreBtn.js.map +1 -0
  267. package/cjs/components/FxInput/MathFunctionIcon.d.ts +3 -0
  268. package/cjs/components/FxInput/MathFunctionIcon.js +15 -0
  269. package/cjs/components/FxInput/MathFunctionIcon.js.map +1 -0
  270. package/cjs/components/FxInput/UndoIcon.d.ts +3 -0
  271. package/cjs/components/FxInput/UndoIcon.js +15 -0
  272. package/cjs/components/FxInput/UndoIcon.js.map +1 -0
  273. package/cjs/components/FxInput/index.js +1 -1
  274. package/cjs/components/FxInput/index.js.map +1 -1
  275. package/cjs/components/Gapped/Gapped.d.ts +18 -12
  276. package/cjs/components/Gapped/Gapped.js +69 -34
  277. package/cjs/components/Gapped/Gapped.js.map +1 -1
  278. package/cjs/components/Gapped/Gapped.md +43 -43
  279. package/cjs/components/Gapped/index.js +1 -1
  280. package/cjs/components/Gapped/index.js.map +1 -1
  281. package/cjs/components/GlobalLoader/GlobalLoader.d.ts +106 -0
  282. package/cjs/components/GlobalLoader/GlobalLoader.js +279 -0
  283. package/cjs/components/GlobalLoader/GlobalLoader.js.map +1 -0
  284. package/cjs/components/GlobalLoader/GlobalLoader.md +98 -0
  285. package/cjs/components/GlobalLoader/GlobalLoaderView.d.ts +14 -0
  286. package/cjs/components/GlobalLoader/GlobalLoaderView.js +75 -0
  287. package/cjs/components/GlobalLoader/GlobalLoaderView.js.map +1 -0
  288. package/cjs/components/GlobalLoader/GlobalLoaderView.styles.d.ts +16 -0
  289. package/cjs/components/GlobalLoader/GlobalLoaderView.styles.js +190 -0
  290. package/cjs/components/GlobalLoader/GlobalLoaderView.styles.js.map +1 -0
  291. package/cjs/components/GlobalLoader/index.d.ts +1 -0
  292. package/cjs/components/GlobalLoader/index.js +1 -0
  293. package/cjs/components/GlobalLoader/index.js.map +1 -0
  294. package/cjs/components/GlobalLoader/useParams.d.ts +22 -0
  295. package/cjs/components/GlobalLoader/useParams.js +45 -0
  296. package/cjs/components/GlobalLoader/useParams.js.map +1 -0
  297. package/cjs/components/Group/Group.d.ts +9 -1
  298. package/cjs/components/Group/Group.js +112 -40
  299. package/cjs/components/Group/Group.js.map +1 -1
  300. package/cjs/components/Group/Group.md +18 -26
  301. package/cjs/components/Group/Group.styles.d.ts +1 -1
  302. package/cjs/components/Group/Group.styles.js +10 -12
  303. package/cjs/components/Group/Group.styles.js.map +1 -1
  304. package/cjs/components/Group/index.js +1 -1
  305. package/cjs/components/Group/index.js.map +1 -1
  306. package/cjs/components/Hint/Hint.d.ts +58 -14
  307. package/cjs/components/Hint/Hint.js +92 -13
  308. package/cjs/components/Hint/Hint.js.map +1 -1
  309. package/cjs/components/Hint/Hint.md +85 -3
  310. package/cjs/components/Hint/Hint.styles.d.ts +4 -3
  311. package/cjs/components/Hint/Hint.styles.js +14 -15
  312. package/cjs/components/Hint/Hint.styles.js.map +1 -1
  313. package/cjs/components/Hint/index.js +1 -1
  314. package/cjs/components/Hint/index.js.map +1 -1
  315. package/cjs/components/Input/Input.d.ts +53 -17
  316. package/cjs/components/Input/Input.js +212 -39
  317. package/cjs/components/Input/Input.js.map +1 -1
  318. package/cjs/components/Input/Input.md +78 -13
  319. package/cjs/components/Input/Input.styles.d.ts +39 -23
  320. package/cjs/components/Input/Input.styles.js +223 -105
  321. package/cjs/components/Input/Input.styles.js.map +1 -1
  322. package/cjs/components/Input/InputLayout/InputLayout.d.ts +11 -0
  323. package/cjs/components/Input/InputLayout/InputLayout.js +33 -0
  324. package/cjs/components/Input/InputLayout/InputLayout.js.map +1 -0
  325. package/cjs/components/Input/InputLayout/InputLayout.styles.d.ts +11 -0
  326. package/cjs/components/Input/InputLayout/InputLayout.styles.js +49 -0
  327. package/cjs/components/Input/InputLayout/InputLayout.styles.js.map +1 -0
  328. package/cjs/components/Input/InputLayout/InputLayoutAside.d.ts +8 -0
  329. package/cjs/components/Input/InputLayout/InputLayoutAside.js +30 -0
  330. package/cjs/components/Input/InputLayout/InputLayoutAside.js.map +1 -0
  331. package/cjs/components/Input/InputLayout/InputLayoutAsideIcon.d.ts +7 -0
  332. package/cjs/components/Input/InputLayout/InputLayoutAsideIcon.js +61 -0
  333. package/cjs/components/Input/InputLayout/InputLayoutAsideIcon.js.map +1 -0
  334. package/cjs/components/Input/InputLayout/InputLayoutAsideText.d.ts +6 -0
  335. package/cjs/components/Input/InputLayout/InputLayoutAsideText.js +27 -0
  336. package/cjs/components/Input/InputLayout/InputLayoutAsideText.js.map +1 -0
  337. package/cjs/components/Input/InputLayout/InputLayoutContext.d.ts +9 -0
  338. package/cjs/components/Input/InputLayout/InputLayoutContext.js +17 -0
  339. package/cjs/components/Input/InputLayout/InputLayoutContext.js.map +1 -0
  340. package/cjs/components/Input/InputLayout/PolyfillPlaceholder.d.ts +10 -0
  341. package/cjs/components/Input/InputLayout/PolyfillPlaceholder.js +46 -0
  342. package/cjs/components/Input/InputLayout/PolyfillPlaceholder.js.map +1 -0
  343. package/cjs/components/Input/index.js +1 -1
  344. package/cjs/components/Input/index.js.map +1 -1
  345. package/cjs/components/Kebab/Kebab.d.ts +31 -30
  346. package/cjs/components/Kebab/Kebab.js +107 -63
  347. package/cjs/components/Kebab/Kebab.js.map +1 -1
  348. package/cjs/components/Kebab/Kebab.md +306 -45
  349. package/cjs/components/Kebab/Kebab.styles.d.ts +14 -8
  350. package/cjs/components/Kebab/Kebab.styles.js +56 -30
  351. package/cjs/components/Kebab/Kebab.styles.js.map +1 -1
  352. package/cjs/components/Kebab/KebabIcon.d.ts +3 -0
  353. package/cjs/components/Kebab/KebabIcon.js +15 -0
  354. package/cjs/components/Kebab/KebabIcon.js.map +1 -0
  355. package/cjs/components/Kebab/__stories__/Kebab.items.js.map +1 -1
  356. package/cjs/components/Kebab/index.js +1 -1
  357. package/cjs/components/Kebab/index.js.map +1 -1
  358. package/cjs/components/Link/Link.d.ts +64 -25
  359. package/cjs/components/Link/Link.js +126 -24
  360. package/cjs/components/Link/Link.js.map +1 -1
  361. package/cjs/components/Link/Link.md +88 -11
  362. package/cjs/components/Link/Link.mixins.d.ts +2 -1
  363. package/cjs/components/Link/Link.mixins.js +13 -5
  364. package/cjs/components/Link/Link.mixins.js.map +1 -1
  365. package/cjs/components/Link/Link.styles.d.ts +26 -11
  366. package/cjs/components/Link/Link.styles.js +169 -31
  367. package/cjs/components/Link/Link.styles.js.map +1 -1
  368. package/cjs/components/Link/index.js +1 -1
  369. package/cjs/components/Link/index.js.map +1 -1
  370. package/cjs/components/Loader/Loader.d.ts +63 -23
  371. package/cjs/components/Loader/Loader.js +206 -36
  372. package/cjs/components/Loader/Loader.js.map +1 -1
  373. package/cjs/components/Loader/Loader.md +32 -25
  374. package/cjs/components/Loader/Loader.styles.d.ts +4 -4
  375. package/cjs/components/Loader/Loader.styles.js +14 -27
  376. package/cjs/components/Loader/Loader.styles.js.map +1 -1
  377. package/cjs/components/Loader/__stories__/LoaderAndButton.js +56 -0
  378. package/cjs/components/Loader/__stories__/LoaderAndButton.js.map +1 -0
  379. package/cjs/components/Loader/index.js +1 -1
  380. package/cjs/components/Loader/index.js.map +1 -1
  381. package/cjs/components/MenuFooter/MenuFooter.d.ts +30 -0
  382. package/cjs/components/MenuFooter/MenuFooter.js +83 -0
  383. package/cjs/components/MenuFooter/MenuFooter.js.map +1 -0
  384. package/cjs/components/MenuFooter/MenuFooter.md +27 -0
  385. package/cjs/components/MenuFooter/MenuFooter.mixins.d.ts +2 -0
  386. package/cjs/components/MenuFooter/MenuFooter.mixins.js +26 -0
  387. package/cjs/components/MenuFooter/MenuFooter.mixins.js.map +1 -0
  388. package/cjs/components/MenuFooter/MenuFooter.styles.d.ts +10 -0
  389. package/cjs/components/MenuFooter/MenuFooter.styles.js +65 -0
  390. package/cjs/components/MenuFooter/MenuFooter.styles.js.map +1 -0
  391. package/cjs/components/MenuFooter/index.d.ts +1 -0
  392. package/cjs/components/MenuFooter/index.js +1 -0
  393. package/cjs/components/MenuFooter/index.js.map +1 -0
  394. package/cjs/components/MenuHeader/MenuHeader.d.ts +19 -4
  395. package/cjs/components/MenuHeader/MenuHeader.js +56 -13
  396. package/cjs/components/MenuHeader/MenuHeader.js.map +1 -1
  397. package/cjs/components/MenuHeader/MenuHeader.md +35 -0
  398. package/cjs/components/MenuHeader/MenuHeader.mixins.d.ts +2 -0
  399. package/cjs/components/MenuHeader/MenuHeader.mixins.js +26 -0
  400. package/cjs/components/MenuHeader/MenuHeader.mixins.js.map +1 -0
  401. package/cjs/components/MenuHeader/MenuHeader.styles.d.ts +9 -3
  402. package/cjs/components/MenuHeader/MenuHeader.styles.js +53 -9
  403. package/cjs/components/MenuHeader/MenuHeader.styles.js.map +1 -1
  404. package/cjs/components/MenuHeader/index.js +1 -1
  405. package/cjs/components/MenuHeader/index.js.map +1 -1
  406. package/cjs/components/MenuItem/MenuItem.d.ts +86 -13
  407. package/cjs/components/MenuItem/MenuItem.js +169 -22
  408. package/cjs/components/MenuItem/MenuItem.js.map +1 -1
  409. package/cjs/components/MenuItem/MenuItem.md +121 -7
  410. package/cjs/components/MenuItem/MenuItem.mixins.d.ts +3 -0
  411. package/cjs/components/MenuItem/MenuItem.mixins.js +42 -0
  412. package/cjs/components/MenuItem/MenuItem.mixins.js.map +1 -0
  413. package/cjs/components/MenuItem/MenuItem.styles.d.ts +25 -10
  414. package/cjs/components/MenuItem/MenuItem.styles.js +122 -29
  415. package/cjs/components/MenuItem/MenuItem.styles.js.map +1 -1
  416. package/cjs/components/MenuItem/index.js +1 -1
  417. package/cjs/components/MenuItem/index.js.map +1 -1
  418. package/cjs/components/MenuSeparator/MenuSeparator.d.ts +9 -3
  419. package/cjs/components/MenuSeparator/MenuSeparator.js +30 -7
  420. package/cjs/components/MenuSeparator/MenuSeparator.js.map +1 -1
  421. package/cjs/components/MenuSeparator/MenuSeparator.md +14 -0
  422. package/cjs/components/MenuSeparator/MenuSeparator.styles.d.ts +4 -2
  423. package/cjs/components/MenuSeparator/MenuSeparator.styles.js +10 -6
  424. package/cjs/components/MenuSeparator/MenuSeparator.styles.js.map +1 -1
  425. package/cjs/components/MenuSeparator/index.js +1 -1
  426. package/cjs/components/MenuSeparator/index.js.map +1 -1
  427. package/cjs/components/Modal/Modal.d.ts +21 -9
  428. package/cjs/components/Modal/Modal.js +84 -27
  429. package/cjs/components/Modal/Modal.js.map +1 -1
  430. package/cjs/components/Modal/Modal.md +54 -37
  431. package/cjs/components/Modal/Modal.styles.d.ts +38 -19
  432. package/cjs/components/Modal/Modal.styles.js +191 -58
  433. package/cjs/components/Modal/Modal.styles.js.map +1 -1
  434. package/cjs/components/Modal/ModalBody.d.ts +13 -1
  435. package/cjs/components/Modal/ModalBody.js +64 -19
  436. package/cjs/components/Modal/ModalBody.js.map +1 -1
  437. package/cjs/components/Modal/ModalClose.d.ts +1 -2
  438. package/cjs/components/Modal/ModalClose.js +50 -11
  439. package/cjs/components/Modal/ModalClose.js.map +1 -1
  440. package/cjs/components/Modal/ModalContext.d.ts +5 -1
  441. package/cjs/components/Modal/ModalContext.js +8 -1
  442. package/cjs/components/Modal/ModalContext.js.map +1 -1
  443. package/cjs/components/Modal/ModalFooter.d.ts +19 -1
  444. package/cjs/components/Modal/ModalFooter.js +69 -32
  445. package/cjs/components/Modal/ModalFooter.js.map +1 -1
  446. package/cjs/components/Modal/ModalHeader.d.ts +6 -2
  447. package/cjs/components/Modal/ModalHeader.js +43 -30
  448. package/cjs/components/Modal/ModalHeader.js.map +1 -1
  449. package/cjs/components/Modal/ModalSeparator.d.ts +5 -0
  450. package/cjs/components/Modal/ModalSeparator.js +21 -0
  451. package/cjs/components/Modal/ModalSeparator.js.map +1 -0
  452. package/cjs/components/Modal/getModalBodyTheme.d.ts +2 -0
  453. package/cjs/components/Modal/getModalBodyTheme.js +11 -0
  454. package/cjs/components/Modal/getModalBodyTheme.js.map +1 -0
  455. package/cjs/components/Modal/getModalTheme.d.ts +2 -0
  456. package/cjs/components/Modal/getModalTheme.js +11 -0
  457. package/cjs/components/Modal/getModalTheme.js.map +1 -0
  458. package/cjs/components/Modal/index.js +4 -4
  459. package/cjs/components/Modal/index.js.map +1 -1
  460. package/cjs/components/Modal/locale/index.d.ts +4 -0
  461. package/cjs/components/Modal/locale/index.js +11 -0
  462. package/cjs/components/Modal/locale/index.js.map +1 -0
  463. package/cjs/components/Modal/locale/locales/en.d.ts +2 -0
  464. package/cjs/components/Modal/locale/locales/en.js +4 -0
  465. package/cjs/components/Modal/locale/locales/en.js.map +1 -0
  466. package/cjs/components/Modal/locale/locales/ru.d.ts +2 -0
  467. package/cjs/components/Modal/locale/locales/ru.js +4 -0
  468. package/cjs/components/Modal/locale/locales/ru.js.map +1 -0
  469. package/cjs/components/Modal/locale/types.d.ts +3 -0
  470. package/cjs/components/Modal/locale/types.js +1 -0
  471. package/cjs/components/Paging/ForwardIcon.d.ts +3 -0
  472. package/cjs/components/Paging/ForwardIcon.js +15 -0
  473. package/cjs/components/Paging/ForwardIcon.js.map +1 -0
  474. package/cjs/components/Paging/NavigationHelper.d.ts +1 -1
  475. package/cjs/components/Paging/NavigationHelper.js +3 -2
  476. package/cjs/components/Paging/NavigationHelper.js.map +1 -1
  477. package/cjs/components/Paging/Paging.d.ts +27 -11
  478. package/cjs/components/Paging/Paging.js +122 -67
  479. package/cjs/components/Paging/Paging.js.map +1 -1
  480. package/cjs/components/Paging/Paging.md +56 -43
  481. package/cjs/components/Paging/Paging.styles.d.ts +16 -11
  482. package/cjs/components/Paging/Paging.styles.js +66 -42
  483. package/cjs/components/Paging/Paging.styles.js.map +1 -1
  484. package/cjs/components/Paging/PagingDefaultComponent.d.ts +9 -0
  485. package/cjs/components/Paging/PagingDefaultComponent.js +21 -0
  486. package/cjs/components/Paging/PagingDefaultComponent.js.map +1 -0
  487. package/cjs/components/Paging/PagingHelper.js.map +1 -1
  488. package/cjs/components/Paging/index.js +1 -1
  489. package/cjs/components/Paging/index.js.map +1 -1
  490. package/cjs/components/Paging/locale/index.js +1 -1
  491. package/cjs/components/Paging/locale/index.js.map +1 -1
  492. package/cjs/components/Paging/locale/locales/en.js.map +1 -1
  493. package/cjs/components/Paging/locale/locales/ru.js.map +1 -1
  494. package/cjs/components/Paging/locale/types.js +1 -1
  495. package/cjs/components/PasswordInput/ClosedIcon.d.ts +3 -0
  496. package/cjs/components/PasswordInput/ClosedIcon.js +15 -0
  497. package/cjs/components/PasswordInput/ClosedIcon.js.map +1 -0
  498. package/cjs/components/PasswordInput/OpenedIcon.d.ts +3 -0
  499. package/cjs/components/PasswordInput/OpenedIcon.js +15 -0
  500. package/cjs/components/PasswordInput/OpenedIcon.js.map +1 -0
  501. package/cjs/components/PasswordInput/PasswordInput.d.ts +22 -9
  502. package/cjs/components/PasswordInput/PasswordInput.js +125 -34
  503. package/cjs/components/PasswordInput/PasswordInput.js.map +1 -1
  504. package/cjs/components/PasswordInput/PasswordInput.md +28 -9
  505. package/cjs/components/PasswordInput/PasswordInput.styles.d.ts +7 -2
  506. package/cjs/components/PasswordInput/PasswordInput.styles.js +41 -12
  507. package/cjs/components/PasswordInput/PasswordInput.styles.js.map +1 -1
  508. package/cjs/components/PasswordInput/PasswordInputIcon.d.ts +5 -0
  509. package/cjs/components/PasswordInput/PasswordInputIcon.js +20 -0
  510. package/cjs/components/PasswordInput/PasswordInputIcon.js.map +1 -0
  511. package/cjs/components/PasswordInput/index.js +1 -1
  512. package/cjs/components/PasswordInput/index.js.map +1 -1
  513. package/cjs/components/PasswordInput/locale/index.d.ts +4 -0
  514. package/cjs/components/PasswordInput/locale/index.js +11 -0
  515. package/cjs/components/PasswordInput/locale/index.js.map +1 -0
  516. package/cjs/components/PasswordInput/locale/locales/en.d.ts +2 -0
  517. package/cjs/components/PasswordInput/locale/locales/en.js +5 -0
  518. package/cjs/components/PasswordInput/locale/locales/en.js.map +1 -0
  519. package/cjs/components/PasswordInput/locale/locales/ru.d.ts +2 -0
  520. package/cjs/components/PasswordInput/locale/locales/ru.js +5 -0
  521. package/cjs/components/PasswordInput/locale/locales/ru.js.map +1 -0
  522. package/cjs/components/PasswordInput/locale/types.d.ts +4 -0
  523. package/cjs/components/PasswordInput/locale/types.js +1 -0
  524. package/cjs/components/Radio/Radio.d.ts +66 -29
  525. package/cjs/components/Radio/Radio.js +139 -12
  526. package/cjs/components/Radio/Radio.js.map +1 -1
  527. package/cjs/components/Radio/Radio.md +56 -14
  528. package/cjs/components/Radio/Radio.mixins.d.ts +5 -0
  529. package/cjs/components/Radio/Radio.mixins.js +71 -0
  530. package/cjs/components/Radio/Radio.mixins.js.map +1 -0
  531. package/cjs/components/Radio/Radio.styles.d.ts +27 -11
  532. package/cjs/components/Radio/Radio.styles.js +134 -58
  533. package/cjs/components/Radio/Radio.styles.js.map +1 -1
  534. package/cjs/components/Radio/index.js +1 -1
  535. package/cjs/components/Radio/index.js.map +1 -1
  536. package/cjs/components/RadioGroup/Prevent.js +1 -1
  537. package/cjs/components/RadioGroup/Prevent.js.map +1 -1
  538. package/cjs/components/RadioGroup/RadioGroup.d.ts +73 -98
  539. package/cjs/components/RadioGroup/RadioGroup.js +74 -90
  540. package/cjs/components/RadioGroup/RadioGroup.js.map +1 -1
  541. package/cjs/components/RadioGroup/RadioGroup.md +43 -43
  542. package/cjs/components/RadioGroup/RadioGroup.styles.d.ts +3 -2
  543. package/cjs/components/RadioGroup/RadioGroup.styles.js +11 -12
  544. package/cjs/components/RadioGroup/RadioGroup.styles.js.map +1 -1
  545. package/cjs/components/RadioGroup/RadioGroupContext.d.ts +10 -0
  546. package/cjs/components/RadioGroup/RadioGroupContext.js +21 -0
  547. package/cjs/components/RadioGroup/RadioGroupContext.js.map +1 -0
  548. package/cjs/components/RadioGroup/index.js +1 -1
  549. package/cjs/components/RadioGroup/index.js.map +1 -1
  550. package/cjs/components/ResponsiveLayout/ResponsiveLayout.d.ts +12 -0
  551. package/cjs/components/ResponsiveLayout/ResponsiveLayout.js +33 -0
  552. package/cjs/components/ResponsiveLayout/ResponsiveLayout.js.map +1 -0
  553. package/cjs/components/ResponsiveLayout/ResponsiveLayout.md +74 -0
  554. package/cjs/components/ResponsiveLayout/ResponsiveLayoutEvents.d.ts +11 -0
  555. package/cjs/components/ResponsiveLayout/ResponsiveLayoutEvents.js +103 -0
  556. package/cjs/components/ResponsiveLayout/ResponsiveLayoutEvents.js.map +1 -0
  557. package/cjs/components/ResponsiveLayout/decorator.d.ts +33 -0
  558. package/cjs/components/ResponsiveLayout/decorator.js +44 -0
  559. package/cjs/components/ResponsiveLayout/decorator.js.map +1 -0
  560. package/cjs/components/ResponsiveLayout/index.d.ts +3 -0
  561. package/cjs/components/ResponsiveLayout/index.js +3 -0
  562. package/cjs/components/ResponsiveLayout/index.js.map +1 -0
  563. package/cjs/components/ResponsiveLayout/types.d.ts +11 -0
  564. package/cjs/components/ResponsiveLayout/types.js +1 -0
  565. package/cjs/components/ResponsiveLayout/useResponsiveLayout.d.ts +2 -0
  566. package/cjs/components/ResponsiveLayout/useResponsiveLayout.js +77 -0
  567. package/cjs/components/ResponsiveLayout/useResponsiveLayout.js.map +1 -0
  568. package/cjs/components/ScrollContainer/ScrollBar.d.ts +47 -0
  569. package/cjs/components/ScrollContainer/ScrollBar.js +303 -0
  570. package/cjs/components/ScrollContainer/ScrollBar.js.map +1 -0
  571. package/cjs/components/ScrollContainer/ScrollContainer.constants.d.ts +23 -0
  572. package/cjs/components/ScrollContainer/ScrollContainer.constants.js +34 -0
  573. package/cjs/components/ScrollContainer/ScrollContainer.constants.js.map +1 -0
  574. package/cjs/components/ScrollContainer/ScrollContainer.d.ts +76 -27
  575. package/cjs/components/ScrollContainer/ScrollContainer.helpers.d.ts +10 -0
  576. package/cjs/components/ScrollContainer/ScrollContainer.helpers.js +66 -0
  577. package/cjs/components/ScrollContainer/ScrollContainer.helpers.js.map +1 -0
  578. package/cjs/components/ScrollContainer/ScrollContainer.js +159 -157
  579. package/cjs/components/ScrollContainer/ScrollContainer.js.map +1 -1
  580. package/cjs/components/ScrollContainer/ScrollContainer.md +195 -60
  581. package/cjs/components/ScrollContainer/ScrollContainer.styles.d.ts +23 -4
  582. package/cjs/components/ScrollContainer/ScrollContainer.styles.js +98 -12
  583. package/cjs/components/ScrollContainer/ScrollContainer.styles.js.map +1 -1
  584. package/cjs/components/ScrollContainer/index.js +1 -1
  585. package/cjs/components/ScrollContainer/index.js.map +1 -1
  586. package/cjs/components/Select/ArrowDownIcon.d.ts +3 -0
  587. package/cjs/components/Select/ArrowDownIcon.js +15 -0
  588. package/cjs/components/Select/ArrowDownIcon.js.map +1 -0
  589. package/cjs/components/Select/Item.d.ts +4 -2
  590. package/cjs/components/Select/Item.js +4 -1
  591. package/cjs/components/Select/Item.js.map +1 -1
  592. package/cjs/components/Select/Select.d.ts +43 -47
  593. package/cjs/components/Select/Select.js +198 -32
  594. package/cjs/components/Select/Select.js.map +1 -1
  595. package/cjs/components/Select/Select.md +98 -23
  596. package/cjs/components/Select/Select.styles.d.ts +13 -7
  597. package/cjs/components/Select/Select.styles.js +51 -43
  598. package/cjs/components/Select/Select.styles.js.map +1 -1
  599. package/cjs/components/Select/index.js +1 -1
  600. package/cjs/components/Select/index.js.map +1 -1
  601. package/cjs/components/Select/locale/index.js +1 -1
  602. package/cjs/components/Select/locale/index.js.map +1 -1
  603. package/cjs/components/Select/locale/locales/en.js +1 -1
  604. package/cjs/components/Select/locale/locales/en.js.map +1 -1
  605. package/cjs/components/Select/locale/locales/ru.js +1 -1
  606. package/cjs/components/Select/locale/locales/ru.js.map +1 -1
  607. package/cjs/components/Select/locale/types.js +1 -1
  608. package/cjs/components/Select/selectTheme.d.ts +3 -0
  609. package/cjs/components/Select/selectTheme.js +46 -0
  610. package/cjs/components/Select/selectTheme.js.map +1 -0
  611. package/cjs/components/SidePage/SidePage.d.ts +35 -4
  612. package/cjs/components/SidePage/SidePage.js +133 -33
  613. package/cjs/components/SidePage/SidePage.js.map +1 -1
  614. package/cjs/components/SidePage/SidePage.md +64 -48
  615. package/cjs/components/SidePage/SidePage.styles.d.ts +38 -18
  616. package/cjs/components/SidePage/SidePage.styles.js +215 -59
  617. package/cjs/components/SidePage/SidePage.styles.js.map +1 -1
  618. package/cjs/components/SidePage/SidePageBody.d.ts +7 -1
  619. package/cjs/components/SidePage/SidePageBody.js +40 -11
  620. package/cjs/components/SidePage/SidePageBody.js.map +1 -1
  621. package/cjs/components/SidePage/SidePageCloseButton.d.ts +1 -0
  622. package/cjs/components/SidePage/SidePageCloseButton.js +47 -0
  623. package/cjs/components/SidePage/SidePageCloseButton.js.map +1 -0
  624. package/cjs/components/SidePage/SidePageContainer.d.ts +10 -1
  625. package/cjs/components/SidePage/SidePageContainer.js +59 -12
  626. package/cjs/components/SidePage/SidePageContainer.js.map +1 -1
  627. package/cjs/components/SidePage/SidePageContext.d.ts +8 -0
  628. package/cjs/components/SidePage/SidePageContext.js +14 -2
  629. package/cjs/components/SidePage/SidePageContext.js.map +1 -1
  630. package/cjs/components/SidePage/SidePageFooter.d.ts +24 -7
  631. package/cjs/components/SidePage/SidePageFooter.js +86 -21
  632. package/cjs/components/SidePage/SidePageFooter.js.map +1 -1
  633. package/cjs/components/SidePage/SidePageHeader.d.ts +20 -5
  634. package/cjs/components/SidePage/SidePageHeader.js +114 -38
  635. package/cjs/components/SidePage/SidePageHeader.js.map +1 -1
  636. package/cjs/components/SidePage/index.js +5 -5
  637. package/cjs/components/SidePage/index.js.map +1 -1
  638. package/cjs/components/SidePage/locale/index.d.ts +4 -0
  639. package/cjs/components/SidePage/locale/index.js +11 -0
  640. package/cjs/components/SidePage/locale/index.js.map +1 -0
  641. package/cjs/components/SidePage/locale/locales/en.d.ts +2 -0
  642. package/cjs/components/SidePage/locale/locales/en.js +4 -0
  643. package/cjs/components/SidePage/locale/locales/en.js.map +1 -0
  644. package/cjs/components/SidePage/locale/locales/ru.d.ts +2 -0
  645. package/cjs/components/SidePage/locale/locales/ru.js +4 -0
  646. package/cjs/components/SidePage/locale/locales/ru.js.map +1 -0
  647. package/cjs/components/SidePage/locale/types.d.ts +3 -0
  648. package/cjs/components/SidePage/locale/types.js +1 -0
  649. package/cjs/components/Spinner/Spinner.d.ts +33 -21
  650. package/cjs/components/Spinner/Spinner.js +46 -31
  651. package/cjs/components/Spinner/Spinner.js.map +1 -1
  652. package/cjs/components/Spinner/Spinner.md +35 -34
  653. package/cjs/components/Spinner/Spinner.styles.d.ts +13 -8
  654. package/cjs/components/Spinner/Spinner.styles.js +70 -35
  655. package/cjs/components/Spinner/Spinner.styles.js.map +1 -1
  656. package/cjs/components/Spinner/SpinnerFallbackAnimation.d.ts +25 -0
  657. package/cjs/components/Spinner/SpinnerFallbackAnimation.js +190 -0
  658. package/cjs/components/Spinner/SpinnerFallbackAnimation.js.map +1 -0
  659. package/cjs/components/Spinner/index.js +1 -1
  660. package/cjs/components/Spinner/index.js.map +1 -1
  661. package/cjs/components/Spinner/locale/index.js +1 -1
  662. package/cjs/components/Spinner/locale/index.js.map +1 -1
  663. package/cjs/components/Spinner/locale/locales/en.js.map +1 -1
  664. package/cjs/components/Spinner/locale/locales/ru.js.map +1 -1
  665. package/cjs/components/Spinner/locale/types.js +1 -1
  666. package/cjs/components/Sticky/Sticky.d.ts +17 -6
  667. package/cjs/components/Sticky/Sticky.js +50 -22
  668. package/cjs/components/Sticky/Sticky.js.map +1 -1
  669. package/cjs/components/Sticky/Sticky.md +27 -27
  670. package/cjs/components/Sticky/Sticky.styles.d.ts +2 -1
  671. package/cjs/components/Sticky/Sticky.styles.js +13 -10
  672. package/cjs/components/Sticky/Sticky.styles.js.map +1 -1
  673. package/cjs/components/Sticky/index.js +1 -1
  674. package/cjs/components/Sticky/index.js.map +1 -1
  675. package/cjs/components/Switcher/Switcher.d.ts +36 -11
  676. package/cjs/components/Switcher/Switcher.js +128 -43
  677. package/cjs/components/Switcher/Switcher.js.map +1 -1
  678. package/cjs/components/Switcher/Switcher.md +107 -10
  679. package/cjs/components/Switcher/Switcher.styles.d.ts +8 -3
  680. package/cjs/components/Switcher/Switcher.styles.js +40 -11
  681. package/cjs/components/Switcher/Switcher.styles.js.map +1 -1
  682. package/cjs/components/Switcher/helpers.d.ts +1 -0
  683. package/cjs/components/Switcher/helpers.js +1 -0
  684. package/cjs/components/Switcher/helpers.js.map +1 -0
  685. package/cjs/components/Switcher/index.js +1 -1
  686. package/cjs/components/Switcher/index.js.map +1 -1
  687. package/cjs/components/Switcher/switcherTheme.d.ts +2 -0
  688. package/cjs/components/Switcher/switcherTheme.js +31 -0
  689. package/cjs/components/Switcher/switcherTheme.js.map +1 -0
  690. package/cjs/components/Tabs/Indicator.d.ts +3 -3
  691. package/cjs/components/Tabs/Indicator.js +25 -22
  692. package/cjs/components/Tabs/Indicator.js.map +1 -1
  693. package/cjs/components/Tabs/Indicator.styles.d.ts +7 -6
  694. package/cjs/components/Tabs/Indicator.styles.js +11 -13
  695. package/cjs/components/Tabs/Indicator.styles.js.map +1 -1
  696. package/cjs/components/Tabs/Tab.d.ts +32 -55
  697. package/cjs/components/Tabs/Tab.js +40 -40
  698. package/cjs/components/Tabs/Tab.js.map +1 -1
  699. package/cjs/components/Tabs/Tab.md +71 -0
  700. package/cjs/components/Tabs/Tab.styles.d.ts +32 -10
  701. package/cjs/components/Tabs/Tab.styles.js +132 -48
  702. package/cjs/components/Tabs/Tab.styles.js.map +1 -1
  703. package/cjs/components/Tabs/Tabs.d.ts +34 -29
  704. package/cjs/components/Tabs/Tabs.js +66 -24
  705. package/cjs/components/Tabs/Tabs.js.map +1 -1
  706. package/cjs/components/Tabs/Tabs.md +53 -28
  707. package/cjs/components/Tabs/Tabs.styles.d.ts +5 -2
  708. package/cjs/components/Tabs/Tabs.styles.js +21 -7
  709. package/cjs/components/Tabs/Tabs.styles.js.map +1 -1
  710. package/cjs/components/Tabs/TabsContext.d.ts +10 -8
  711. package/cjs/components/Tabs/TabsContext.js +7 -2
  712. package/cjs/components/Tabs/TabsContext.js.map +1 -1
  713. package/cjs/components/Tabs/helpers.d.ts +6 -0
  714. package/cjs/components/Tabs/helpers.js +31 -0
  715. package/cjs/components/Tabs/helpers.js.map +1 -0
  716. package/cjs/components/Tabs/index.js +2 -2
  717. package/cjs/components/Tabs/index.js.map +1 -1
  718. package/cjs/components/Textarea/Textarea.d.ts +77 -16
  719. package/cjs/components/Textarea/Textarea.js +260 -54
  720. package/cjs/components/Textarea/Textarea.js.map +1 -1
  721. package/cjs/components/Textarea/Textarea.md +56 -9
  722. package/cjs/components/Textarea/Textarea.mixins.d.ts +3 -0
  723. package/cjs/components/Textarea/Textarea.mixins.js +22 -0
  724. package/cjs/components/Textarea/Textarea.mixins.js.map +1 -0
  725. package/cjs/components/Textarea/Textarea.styles.d.ts +22 -5
  726. package/cjs/components/Textarea/Textarea.styles.js +130 -35
  727. package/cjs/components/Textarea/Textarea.styles.js.map +1 -1
  728. package/cjs/components/Textarea/TextareaCounter.d.ts +14 -0
  729. package/cjs/components/Textarea/TextareaCounter.js +99 -0
  730. package/cjs/components/Textarea/TextareaCounter.js.map +1 -0
  731. package/cjs/components/Textarea/TextareaHelpers.d.ts +8 -1
  732. package/cjs/components/Textarea/TextareaHelpers.js +9 -5
  733. package/cjs/components/Textarea/TextareaHelpers.js.map +1 -1
  734. package/cjs/components/Textarea/index.js +1 -1
  735. package/cjs/components/Textarea/index.js.map +1 -1
  736. package/cjs/components/Toast/Toast.d.ts +29 -13
  737. package/cjs/components/Toast/Toast.js +65 -28
  738. package/cjs/components/Toast/Toast.js.map +1 -1
  739. package/cjs/components/Toast/Toast.md +174 -41
  740. package/cjs/components/Toast/Toast.styles.d.ts +1 -1
  741. package/cjs/components/Toast/Toast.styles.js +7 -10
  742. package/cjs/components/Toast/Toast.styles.js.map +1 -1
  743. package/cjs/components/Toast/ToastStatic.d.ts +3 -2
  744. package/cjs/components/Toast/ToastStatic.js +11 -10
  745. package/cjs/components/Toast/ToastStatic.js.map +1 -1
  746. package/cjs/components/Toast/ToastView.d.ts +8 -6
  747. package/cjs/components/Toast/ToastView.js +69 -33
  748. package/cjs/components/Toast/ToastView.js.map +1 -1
  749. package/cjs/components/Toast/ToastView.styles.d.ts +7 -6
  750. package/cjs/components/Toast/ToastView.styles.js +46 -25
  751. package/cjs/components/Toast/ToastView.styles.js.map +1 -1
  752. package/cjs/components/Toast/index.js +1 -1
  753. package/cjs/components/Toast/index.js.map +1 -1
  754. package/cjs/components/Toast/locale/index.d.ts +4 -0
  755. package/cjs/components/Toast/locale/index.js +11 -0
  756. package/cjs/components/Toast/locale/index.js.map +1 -0
  757. package/cjs/components/Toast/locale/locales/en.d.ts +2 -0
  758. package/cjs/components/Toast/locale/locales/en.js +4 -0
  759. package/cjs/components/Toast/locale/locales/en.js.map +1 -0
  760. package/cjs/components/Toast/locale/locales/ru.d.ts +2 -0
  761. package/cjs/components/Toast/locale/locales/ru.js +4 -0
  762. package/cjs/components/Toast/locale/locales/ru.js.map +1 -0
  763. package/cjs/components/Toast/locale/types.d.ts +3 -0
  764. package/cjs/components/Toast/locale/types.js +1 -0
  765. package/cjs/components/Toggle/Toggle.d.ts +82 -6
  766. package/cjs/components/Toggle/Toggle.js +251 -12
  767. package/cjs/components/Toggle/Toggle.js.map +1 -1
  768. package/cjs/components/Toggle/Toggle.md +110 -9
  769. package/cjs/components/Toggle/Toggle.mixins.d.ts +7 -0
  770. package/cjs/components/Toggle/Toggle.mixins.js +90 -0
  771. package/cjs/components/Toggle/Toggle.mixins.js.map +1 -0
  772. package/cjs/components/Toggle/Toggle.styles.d.ts +51 -10
  773. package/cjs/components/Toggle/Toggle.styles.js +338 -53
  774. package/cjs/components/Toggle/Toggle.styles.js.map +1 -1
  775. package/cjs/components/Toggle/index.js +1 -1
  776. package/cjs/components/Toggle/index.js.map +1 -1
  777. package/cjs/components/Token/Token.d.ts +18 -4
  778. package/cjs/components/Token/Token.js +69 -8
  779. package/cjs/components/Token/Token.js.map +1 -1
  780. package/cjs/components/Token/Token.md +112 -112
  781. package/cjs/components/Token/Token.styles.d.ts +33 -23
  782. package/cjs/components/Token/Token.styles.js +114 -51
  783. package/cjs/components/Token/Token.styles.js.map +1 -1
  784. package/cjs/components/Token/index.js +1 -1
  785. package/cjs/components/Token/index.js.map +1 -1
  786. package/cjs/components/Token/locale/index.d.ts +4 -0
  787. package/cjs/components/Token/locale/index.js +11 -0
  788. package/cjs/components/Token/locale/index.js.map +1 -0
  789. package/cjs/components/Token/locale/locales/en.d.ts +2 -0
  790. package/cjs/components/Token/locale/locales/en.js +4 -0
  791. package/cjs/components/Token/locale/locales/en.js.map +1 -0
  792. package/cjs/components/Token/locale/locales/ru.d.ts +2 -0
  793. package/cjs/components/Token/locale/locales/ru.js +4 -0
  794. package/cjs/components/Token/locale/locales/ru.js.map +1 -0
  795. package/cjs/components/Token/locale/types.d.ts +3 -0
  796. package/cjs/components/Token/locale/types.js +1 -0
  797. package/cjs/components/Token/locale/types.js.map +1 -0
  798. package/cjs/components/TokenInput/TextWidthHelper.d.ts +8 -0
  799. package/cjs/components/TokenInput/TextWidthHelper.js +16 -7
  800. package/cjs/components/TokenInput/TextWidthHelper.js.map +1 -1
  801. package/cjs/components/TokenInput/TokenInput.d.ts +155 -18
  802. package/cjs/components/TokenInput/TokenInput.js +576 -104
  803. package/cjs/components/TokenInput/TokenInput.js.map +1 -1
  804. package/cjs/components/TokenInput/TokenInput.md +196 -83
  805. package/cjs/components/TokenInput/TokenInput.styles.d.ts +15 -8
  806. package/cjs/components/TokenInput/TokenInput.styles.js +116 -28
  807. package/cjs/components/TokenInput/TokenInput.styles.js.map +1 -1
  808. package/cjs/components/TokenInput/TokenInputMenu.d.ts +16 -2
  809. package/cjs/components/TokenInput/TokenInputMenu.js +59 -3
  810. package/cjs/components/TokenInput/TokenInputMenu.js.map +1 -1
  811. package/cjs/components/TokenInput/TokenInputReducer.d.ts +5 -0
  812. package/cjs/components/TokenInput/TokenInputReducer.js +22 -3
  813. package/cjs/components/TokenInput/TokenInputReducer.js.map +1 -1
  814. package/cjs/components/TokenInput/index.js +1 -1
  815. package/cjs/components/TokenInput/index.js.map +1 -1
  816. package/cjs/components/TokenInput/locale/index.js +1 -1
  817. package/cjs/components/TokenInput/locale/index.js.map +1 -1
  818. package/cjs/components/TokenInput/locale/locales/en.js +1 -1
  819. package/cjs/components/TokenInput/locale/locales/en.js.map +1 -1
  820. package/cjs/components/TokenInput/locale/locales/ru.js +1 -1
  821. package/cjs/components/TokenInput/locale/locales/ru.js.map +1 -1
  822. package/cjs/components/TokenInput/locale/types.js +1 -1
  823. package/cjs/components/Tooltip/Tooltip.d.ts +53 -40
  824. package/cjs/components/Tooltip/Tooltip.js +142 -31
  825. package/cjs/components/Tooltip/Tooltip.js.map +1 -1
  826. package/cjs/components/Tooltip/Tooltip.md +293 -212
  827. package/cjs/components/Tooltip/Tooltip.styles.d.ts +4 -3
  828. package/cjs/components/Tooltip/Tooltip.styles.js +13 -13
  829. package/cjs/components/Tooltip/Tooltip.styles.js.map +1 -1
  830. package/cjs/components/Tooltip/index.js +1 -1
  831. package/cjs/components/Tooltip/index.js.map +1 -1
  832. package/cjs/components/TooltipMenu/TooltipMenu.d.ts +43 -18
  833. package/cjs/components/TooltipMenu/TooltipMenu.js +86 -18
  834. package/cjs/components/TooltipMenu/TooltipMenu.js.map +1 -1
  835. package/cjs/components/TooltipMenu/TooltipMenu.md +238 -115
  836. package/cjs/components/TooltipMenu/index.js +1 -1
  837. package/cjs/components/TooltipMenu/index.js.map +1 -1
  838. package/cjs/hooks/useDrop.d.ts +11 -0
  839. package/cjs/hooks/useDrop.js +77 -0
  840. package/cjs/hooks/useDrop.js.map +1 -0
  841. package/cjs/hooks/useEffectWithoutInitCall.d.ts +2 -0
  842. package/cjs/hooks/useEffectWithoutInitCall.js +13 -0
  843. package/cjs/hooks/useEffectWithoutInitCall.js.map +1 -0
  844. package/cjs/hooks/useMemoObject.d.ts +2 -0
  845. package/cjs/hooks/useMemoObject.js +7 -0
  846. package/cjs/hooks/useMemoObject.js.map +1 -0
  847. package/cjs/index.d.ts +13 -7
  848. package/cjs/index.js +56 -52
  849. package/cjs/index.js.map +1 -1
  850. package/cjs/internal/BGRuler.d.ts +13 -15
  851. package/cjs/internal/BGRuler.js +18 -8
  852. package/cjs/internal/BGRuler.js.map +1 -1
  853. package/cjs/internal/CloseButtonIcon/CloseButtonIcon.d.ts +35 -0
  854. package/cjs/internal/CloseButtonIcon/CloseButtonIcon.js +101 -0
  855. package/cjs/internal/CloseButtonIcon/CloseButtonIcon.js.map +1 -0
  856. package/cjs/internal/CloseButtonIcon/CloseButtonIcon.styles.d.ts +7 -0
  857. package/cjs/internal/CloseButtonIcon/CloseButtonIcon.styles.js +42 -0
  858. package/cjs/internal/CloseButtonIcon/CloseButtonIcon.styles.js.map +1 -0
  859. package/cjs/internal/CloseButtonIcon/CrossIcon.d.ts +3 -0
  860. package/cjs/internal/CloseButtonIcon/CrossIcon.js +14 -0
  861. package/cjs/internal/CloseButtonIcon/CrossIcon.js.map +1 -0
  862. package/cjs/internal/CommonWrapper/CommonWrapper.d.ts +33 -0
  863. package/cjs/internal/CommonWrapper/CommonWrapper.js +112 -0
  864. package/cjs/internal/CommonWrapper/CommonWrapper.js.map +1 -0
  865. package/cjs/internal/CommonWrapper/index.d.ts +1 -0
  866. package/cjs/internal/CommonWrapper/index.js +1 -0
  867. package/cjs/internal/CommonWrapper/index.js.map +1 -0
  868. package/cjs/internal/ComponentCombinator.d.ts +6 -8
  869. package/cjs/internal/ComponentCombinator.js +6 -2
  870. package/cjs/internal/ComponentCombinator.js.map +1 -1
  871. package/cjs/internal/ComponentTable.d.ts +9 -8
  872. package/cjs/internal/ComponentTable.js +33 -21
  873. package/cjs/internal/ComponentTable.js.map +1 -1
  874. package/cjs/internal/CustomComboBox/ArrowDownIcon.d.ts +3 -0
  875. package/cjs/internal/CustomComboBox/ArrowDownIcon.js +15 -0
  876. package/cjs/internal/CustomComboBox/ArrowDownIcon.js.map +1 -0
  877. package/cjs/internal/CustomComboBox/ComboBoxMenu.d.ts +23 -8
  878. package/cjs/internal/CustomComboBox/ComboBoxMenu.js +102 -12
  879. package/cjs/internal/CustomComboBox/ComboBoxMenu.js.map +1 -1
  880. package/cjs/internal/CustomComboBox/ComboBoxView.d.ts +40 -17
  881. package/cjs/internal/CustomComboBox/ComboBoxView.js +150 -17
  882. package/cjs/internal/CustomComboBox/ComboBoxView.js.map +1 -1
  883. package/cjs/internal/CustomComboBox/CustomComboBox.d.ts +28 -7
  884. package/cjs/internal/CustomComboBox/CustomComboBox.js +100 -35
  885. package/cjs/internal/CustomComboBox/CustomComboBox.js.map +1 -1
  886. package/cjs/internal/CustomComboBox/CustomComboBox.styles.d.ts +2 -2
  887. package/cjs/internal/CustomComboBox/CustomComboBox.styles.js +8 -10
  888. package/cjs/internal/CustomComboBox/CustomComboBox.styles.js.map +1 -1
  889. package/cjs/internal/CustomComboBox/CustomComboBoxReducer.d.ts +18 -17
  890. package/cjs/internal/CustomComboBox/CustomComboBoxReducer.js +69 -64
  891. package/cjs/internal/CustomComboBox/CustomComboBoxReducer.js.map +1 -1
  892. package/cjs/internal/CustomComboBox/CustomComboBoxTypes.js.map +1 -1
  893. package/cjs/internal/CustomComboBox/getComboBoxTheme.d.ts +2 -0
  894. package/cjs/internal/CustomComboBox/getComboBoxTheme.js +11 -0
  895. package/cjs/internal/CustomComboBox/getComboBoxTheme.js.map +1 -0
  896. package/cjs/internal/CustomComboBox/index.js +2 -2
  897. package/cjs/internal/CustomComboBox/index.js.map +1 -1
  898. package/cjs/internal/CustomComboBox/locale/index.js +1 -1
  899. package/cjs/internal/CustomComboBox/locale/index.js.map +1 -1
  900. package/cjs/internal/CustomComboBox/locale/locales/en.js.map +1 -1
  901. package/cjs/internal/CustomComboBox/locale/locales/ru.js.map +1 -1
  902. package/cjs/internal/CustomComboBox/locale/types.js +1 -1
  903. package/cjs/internal/DataTids/DATATIDS.md +12 -0
  904. package/cjs/internal/DataTids/DataTids.d.ts +12 -0
  905. package/cjs/internal/DataTids/DataTids.js +50 -0
  906. package/cjs/internal/DataTids/DataTids.js.map +1 -0
  907. package/cjs/internal/DataTids/DataTids.styles.d.ts +7 -0
  908. package/cjs/internal/DataTids/DataTids.styles.js +41 -0
  909. package/cjs/internal/DataTids/DataTids.styles.js.map +1 -0
  910. package/cjs/internal/DataTids/componentsDataTids.d.ts +5 -0
  911. package/cjs/internal/DataTids/componentsDataTids.js +16 -0
  912. package/cjs/internal/DataTids/componentsDataTids.js.map +1 -0
  913. package/cjs/internal/DateSelect/DateSelect.d.ts +16 -8
  914. package/cjs/internal/DateSelect/DateSelect.js +149 -31
  915. package/cjs/internal/DateSelect/DateSelect.js.map +1 -1
  916. package/cjs/internal/DateSelect/DateSelect.styles.d.ts +16 -11
  917. package/cjs/internal/DateSelect/DateSelect.styles.js +63 -39
  918. package/cjs/internal/DateSelect/DateSelect.styles.js.map +1 -1
  919. package/cjs/internal/DateSelect/index.js +1 -1
  920. package/cjs/internal/DateSelect/index.js.map +1 -1
  921. package/cjs/internal/DateSelect/locale/index.d.ts +4 -0
  922. package/cjs/internal/DateSelect/locale/index.js +11 -0
  923. package/cjs/internal/DateSelect/locale/index.js.map +1 -0
  924. package/cjs/internal/DateSelect/locale/locales/en.d.ts +2 -0
  925. package/cjs/internal/DateSelect/locale/locales/en.js +6 -0
  926. package/cjs/internal/DateSelect/locale/locales/en.js.map +1 -0
  927. package/cjs/internal/DateSelect/locale/locales/ru.d.ts +2 -0
  928. package/cjs/internal/DateSelect/locale/locales/ru.js +6 -0
  929. package/cjs/internal/DateSelect/locale/locales/ru.js.map +1 -0
  930. package/cjs/internal/DateSelect/locale/types.d.ts +5 -0
  931. package/cjs/internal/DateSelect/locale/types.js +1 -0
  932. package/cjs/internal/DateSelect/locale/types.js.map +1 -0
  933. package/cjs/internal/DropdownContainer/DropdownContainer.d.ts +15 -15
  934. package/cjs/internal/DropdownContainer/DropdownContainer.js +57 -39
  935. package/cjs/internal/DropdownContainer/DropdownContainer.js.map +1 -1
  936. package/cjs/internal/DropdownContainer/DropdownContainer.styles.d.ts +3 -0
  937. package/cjs/internal/DropdownContainer/DropdownContainer.styles.js +9 -0
  938. package/cjs/internal/DropdownContainer/DropdownContainer.styles.js.map +1 -0
  939. package/cjs/internal/DropdownContainer/getManualPosition.d.ts +19 -0
  940. package/cjs/internal/DropdownContainer/getManualPosition.js +41 -0
  941. package/cjs/internal/DropdownContainer/getManualPosition.js.map +1 -0
  942. package/cjs/internal/DropdownContainer/index.js +1 -1
  943. package/cjs/internal/DropdownContainer/index.js.map +1 -1
  944. package/cjs/internal/FileUploaderControl/FileUploaderControlContext.d.ts +14 -0
  945. package/cjs/internal/FileUploaderControl/FileUploaderControlContext.js +18 -0
  946. package/cjs/internal/FileUploaderControl/FileUploaderControlContext.js.map +1 -0
  947. package/cjs/internal/FileUploaderControl/FileUploaderControlProvider.d.ts +14 -0
  948. package/cjs/internal/FileUploaderControl/FileUploaderControlProvider.js +111 -0
  949. package/cjs/internal/FileUploaderControl/FileUploaderControlProvider.js.map +1 -0
  950. package/cjs/internal/FileUploaderControl/FileUploaderFile/DeleteIcon.d.ts +3 -0
  951. package/cjs/internal/FileUploaderControl/FileUploaderFile/DeleteIcon.js +15 -0
  952. package/cjs/internal/FileUploaderControl/FileUploaderFile/DeleteIcon.js.map +1 -0
  953. package/cjs/internal/FileUploaderControl/FileUploaderFile/ErrorIcon.d.ts +3 -0
  954. package/cjs/internal/FileUploaderControl/FileUploaderFile/ErrorIcon.js +15 -0
  955. package/cjs/internal/FileUploaderControl/FileUploaderFile/ErrorIcon.js.map +1 -0
  956. package/cjs/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.d.ts +19 -0
  957. package/cjs/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.js +220 -0
  958. package/cjs/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.js.map +1 -0
  959. package/cjs/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.styles.d.ts +18 -0
  960. package/cjs/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.styles.js +110 -0
  961. package/cjs/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.styles.js.map +1 -0
  962. package/cjs/internal/FileUploaderControl/FileUploaderFile/FileUploaderFileStatusIcon.d.ts +12 -0
  963. package/cjs/internal/FileUploaderControl/FileUploaderFile/FileUploaderFileStatusIcon.js +58 -0
  964. package/cjs/internal/FileUploaderControl/FileUploaderFile/FileUploaderFileStatusIcon.js.map +1 -0
  965. package/cjs/internal/FileUploaderControl/FileUploaderFile/OkIcon.d.ts +3 -0
  966. package/cjs/internal/FileUploaderControl/FileUploaderFile/OkIcon.js +15 -0
  967. package/cjs/internal/FileUploaderControl/FileUploaderFile/OkIcon.js.map +1 -0
  968. package/cjs/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.d.ts +15 -0
  969. package/cjs/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.js +46 -0
  970. package/cjs/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.js.map +1 -0
  971. package/cjs/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.styles.d.ts +8 -0
  972. package/cjs/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.styles.js +40 -0
  973. package/cjs/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.styles.js.map +1 -0
  974. package/cjs/internal/FileUploaderControl/FileUploaderFileValidationResult.d.ts +7 -0
  975. package/cjs/internal/FileUploaderControl/FileUploaderFileValidationResult.js +16 -0
  976. package/cjs/internal/FileUploaderControl/FileUploaderFileValidationResult.js.map +1 -0
  977. package/cjs/internal/FileUploaderControl/fileUtils.d.ts +14 -0
  978. package/cjs/internal/FileUploaderControl/fileUtils.js +26 -0
  979. package/cjs/internal/FileUploaderControl/fileUtils.js.map +1 -0
  980. package/cjs/internal/FileUploaderControl/hooks/useControlLocale.d.ts +1 -0
  981. package/cjs/internal/FileUploaderControl/hooks/useControlLocale.js +4 -0
  982. package/cjs/internal/FileUploaderControl/hooks/useControlLocale.js.map +1 -0
  983. package/cjs/internal/FileUploaderControl/hooks/useFileUploaderSize.d.ts +2 -0
  984. package/cjs/internal/FileUploaderControl/hooks/useFileUploaderSize.js +18 -0
  985. package/cjs/internal/FileUploaderControl/hooks/useFileUploaderSize.js.map +1 -0
  986. package/cjs/internal/FileUploaderControl/hooks/useUpload.d.ts +3 -0
  987. package/cjs/internal/FileUploaderControl/hooks/useUpload.js +51 -0
  988. package/cjs/internal/FileUploaderControl/hooks/useUpload.js.map +1 -0
  989. package/cjs/internal/FileUploaderControl/withFileUploaderControlProvider.d.ts +3 -0
  990. package/cjs/internal/FileUploaderControl/withFileUploaderControlProvider.js +23 -0
  991. package/cjs/internal/FileUploaderControl/withFileUploaderControlProvider.js.map +1 -0
  992. package/cjs/internal/FocusTrap/FocusTrap.d.ts +4 -2
  993. package/cjs/internal/FocusTrap/FocusTrap.js +17 -9
  994. package/cjs/internal/FocusTrap/FocusTrap.js.map +1 -1
  995. package/cjs/internal/FocusTrap/index.js +1 -1
  996. package/cjs/internal/FocusTrap/index.js.map +1 -1
  997. package/cjs/internal/HideBodyVerticalScroll/HideBodyVerticalScroll.d.ts +1 -3
  998. package/cjs/internal/HideBodyVerticalScroll/HideBodyVerticalScroll.js +34 -74
  999. package/cjs/internal/HideBodyVerticalScroll/HideBodyVerticalScroll.js.map +1 -1
  1000. package/cjs/internal/HideBodyVerticalScroll/index.js +1 -1
  1001. package/cjs/internal/HideBodyVerticalScroll/index.js.map +1 -1
  1002. package/cjs/internal/IgnoreLayerClick/IgnoreLayerClick.d.ts +1 -1
  1003. package/cjs/internal/IgnoreLayerClick/IgnoreLayerClick.js +13 -5
  1004. package/cjs/internal/IgnoreLayerClick/IgnoreLayerClick.js.map +1 -1
  1005. package/cjs/internal/IgnoreLayerClick/index.js +1 -1
  1006. package/cjs/internal/IgnoreLayerClick/index.js.map +1 -1
  1007. package/cjs/internal/InputLikeText/HiddenInput.js +10 -10
  1008. package/cjs/internal/InputLikeText/HiddenInput.js.map +1 -1
  1009. package/cjs/internal/InputLikeText/InputLikeText.d.ts +16 -5
  1010. package/cjs/internal/InputLikeText/InputLikeText.js +195 -76
  1011. package/cjs/internal/InputLikeText/InputLikeText.js.map +1 -1
  1012. package/cjs/internal/InputLikeText/InputLikeText.styles.d.ts +3 -3
  1013. package/cjs/internal/InputLikeText/InputLikeText.styles.js +10 -12
  1014. package/cjs/internal/InputLikeText/InputLikeText.styles.js.map +1 -1
  1015. package/cjs/internal/InputLikeText/index.js +1 -1
  1016. package/cjs/internal/InputLikeText/index.js.map +1 -1
  1017. package/cjs/internal/InternalMenu/InternalMenu.d.ts +25 -14
  1018. package/cjs/internal/InternalMenu/InternalMenu.js +93 -47
  1019. package/cjs/internal/InternalMenu/InternalMenu.js.map +1 -1
  1020. package/cjs/internal/InternalMenu/InternalMenu.styles.d.ts +10 -7
  1021. package/cjs/internal/InternalMenu/InternalMenu.styles.js +26 -26
  1022. package/cjs/internal/InternalMenu/InternalMenu.styles.js.map +1 -1
  1023. package/cjs/internal/InternalMenu/addIconPaddingIfPartOfMenu.d.ts +2 -0
  1024. package/cjs/internal/InternalMenu/addIconPaddingIfPartOfMenu.js +16 -0
  1025. package/cjs/internal/InternalMenu/addIconPaddingIfPartOfMenu.js.map +1 -0
  1026. package/cjs/internal/InternalMenu/index.js +1 -1
  1027. package/cjs/internal/InternalMenu/index.js.map +1 -1
  1028. package/cjs/internal/InternalMenu/isActiveElement.js.map +1 -1
  1029. package/cjs/internal/InternalMenu/isIconPaddingEnabled.d.ts +2 -0
  1030. package/cjs/internal/InternalMenu/isIconPaddingEnabled.js +9 -0
  1031. package/cjs/internal/InternalMenu/isIconPaddingEnabled.js.map +1 -0
  1032. package/cjs/internal/MaskCharLowLine/MaskCharLowLine.d.ts +9 -0
  1033. package/cjs/internal/MaskCharLowLine/MaskCharLowLine.js +14 -0
  1034. package/cjs/internal/MaskCharLowLine/MaskCharLowLine.js.map +1 -0
  1035. package/cjs/internal/MaskCharLowLine/MaskCharLowLine.styles.d.ts +3 -0
  1036. package/cjs/internal/MaskCharLowLine/MaskCharLowLine.styles.js +18 -0
  1037. package/cjs/internal/MaskCharLowLine/MaskCharLowLine.styles.js.map +1 -0
  1038. package/cjs/internal/MaskCharLowLine/index.d.ts +1 -0
  1039. package/cjs/internal/MaskCharLowLine/index.js +1 -0
  1040. package/cjs/internal/MaskCharLowLine/index.js.map +1 -0
  1041. package/cjs/internal/MaskedInput/MaskedInput.d.ts +9 -2
  1042. package/cjs/internal/MaskedInput/MaskedInput.js +55 -12
  1043. package/cjs/internal/MaskedInput/MaskedInput.js.map +1 -1
  1044. package/cjs/internal/MaskedInput/MaskedInput.styles.d.ts +4 -2
  1045. package/cjs/internal/MaskedInput/MaskedInput.styles.js +8 -21
  1046. package/cjs/internal/MaskedInput/MaskedInput.styles.js.map +1 -1
  1047. package/cjs/internal/MaskedInput/index.js +1 -1
  1048. package/cjs/internal/MaskedInput/index.js.map +1 -1
  1049. package/cjs/internal/Menu/Menu.d.ts +56 -13
  1050. package/cjs/internal/Menu/Menu.js +339 -70
  1051. package/cjs/internal/Menu/Menu.js.map +1 -1
  1052. package/cjs/internal/Menu/Menu.styles.d.ts +15 -3
  1053. package/cjs/internal/Menu/Menu.styles.js +81 -7
  1054. package/cjs/internal/Menu/Menu.styles.js.map +1 -1
  1055. package/cjs/internal/Menu/index.js +1 -1
  1056. package/cjs/internal/Menu/index.js.map +1 -1
  1057. package/cjs/internal/Menu/isActiveElement.js.map +1 -1
  1058. package/cjs/internal/MenuMessage/MenuMessage.d.ts +12 -0
  1059. package/cjs/internal/MenuMessage/MenuMessage.js +58 -0
  1060. package/cjs/internal/MenuMessage/MenuMessage.js.map +1 -0
  1061. package/cjs/internal/MenuMessage/MenuMessage.styles.d.ts +8 -0
  1062. package/cjs/internal/MenuMessage/MenuMessage.styles.js +48 -0
  1063. package/cjs/internal/MenuMessage/MenuMessage.styles.js.map +1 -0
  1064. package/cjs/internal/MenuMessage/index.d.ts +1 -0
  1065. package/cjs/internal/MenuMessage/index.js +1 -0
  1066. package/cjs/internal/MenuMessage/index.js.map +1 -0
  1067. package/cjs/internal/MobilePopup/MobilePopup.d.ts +39 -0
  1068. package/cjs/internal/MobilePopup/MobilePopup.js +94 -0
  1069. package/cjs/internal/MobilePopup/MobilePopup.js.map +1 -0
  1070. package/cjs/internal/MobilePopup/MobilePopup.styles.d.ts +10 -0
  1071. package/cjs/internal/MobilePopup/MobilePopup.styles.js +73 -0
  1072. package/cjs/internal/MobilePopup/MobilePopup.styles.js.map +1 -0
  1073. package/cjs/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.d.ts +14 -0
  1074. package/cjs/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.js +58 -0
  1075. package/cjs/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.js.map +1 -0
  1076. package/cjs/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.styles.d.ts +8 -0
  1077. package/cjs/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.styles.js +41 -0
  1078. package/cjs/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.styles.js.map +1 -0
  1079. package/cjs/internal/MobilePopup/MobilePopupHeader/index.d.ts +1 -0
  1080. package/cjs/internal/MobilePopup/MobilePopupHeader/index.js +1 -0
  1081. package/cjs/internal/MobilePopup/MobilePopupHeader/index.js.map +1 -0
  1082. package/cjs/internal/MobilePopup/index.d.ts +1 -0
  1083. package/cjs/internal/MobilePopup/index.js +1 -0
  1084. package/cjs/internal/MobilePopup/index.js.map +1 -0
  1085. package/cjs/internal/NativeDateInput/NativeDateInput.d.ts +23 -0
  1086. package/cjs/internal/NativeDateInput/NativeDateInput.js +65 -0
  1087. package/cjs/internal/NativeDateInput/NativeDateInput.js.map +1 -0
  1088. package/cjs/internal/NativeDateInput/NativeDateInput.styles.d.ts +3 -0
  1089. package/cjs/internal/NativeDateInput/NativeDateInput.styles.js +19 -0
  1090. package/cjs/internal/NativeDateInput/NativeDateInput.styles.js.map +1 -0
  1091. package/cjs/internal/NativeDateInput/index.d.ts +1 -0
  1092. package/cjs/internal/NativeDateInput/index.js +1 -0
  1093. package/cjs/internal/NativeDateInput/index.js.map +1 -0
  1094. package/cjs/internal/NativeDateInput/utils.d.ts +7 -0
  1095. package/cjs/internal/NativeDateInput/utils.js +49 -0
  1096. package/cjs/internal/NativeDateInput/utils.js.map +1 -0
  1097. package/cjs/internal/PerformanceMetrics/PerformanceMetrics.js +10 -10
  1098. package/cjs/internal/PerformanceMetrics/PerformanceMetrics.js.map +1 -1
  1099. package/cjs/internal/Popup/Popup.d.ts +63 -31
  1100. package/cjs/internal/Popup/Popup.js +262 -89
  1101. package/cjs/internal/Popup/Popup.js.map +1 -1
  1102. package/cjs/internal/Popup/Popup.styles.d.ts +7 -6
  1103. package/cjs/internal/Popup/Popup.styles.js +19 -19
  1104. package/cjs/internal/Popup/Popup.styles.js.map +1 -1
  1105. package/cjs/internal/Popup/PopupHelper.d.ts +3 -3
  1106. package/cjs/internal/Popup/PopupHelper.js +5 -2
  1107. package/cjs/internal/Popup/PopupHelper.js.map +1 -1
  1108. package/cjs/internal/Popup/PopupPin.d.ts +1 -1
  1109. package/cjs/internal/Popup/PopupPin.js +21 -20
  1110. package/cjs/internal/Popup/PopupPin.js.map +1 -1
  1111. package/cjs/internal/Popup/PopupPin.styles.d.ts +1 -1
  1112. package/cjs/internal/Popup/PopupPin.styles.js +4 -7
  1113. package/cjs/internal/Popup/PopupPin.styles.js.map +1 -1
  1114. package/cjs/internal/Popup/index.js +1 -1
  1115. package/cjs/internal/Popup/index.js.map +1 -1
  1116. package/cjs/internal/Popup/types.d.ts +2 -0
  1117. package/cjs/internal/Popup/types.js +1 -0
  1118. package/cjs/internal/Popup/types.js.map +1 -0
  1119. package/cjs/internal/PopupMenu/PopupMenu.d.ts +36 -16
  1120. package/cjs/internal/PopupMenu/PopupMenu.js +115 -15
  1121. package/cjs/internal/PopupMenu/PopupMenu.js.map +1 -1
  1122. package/cjs/internal/PopupMenu/PopupMenu.styles.d.ts +1 -1
  1123. package/cjs/internal/PopupMenu/PopupMenu.styles.js +6 -7
  1124. package/cjs/internal/PopupMenu/PopupMenu.styles.js.map +1 -1
  1125. package/cjs/internal/PopupMenu/index.js +1 -1
  1126. package/cjs/internal/PopupMenu/index.js.map +1 -1
  1127. package/cjs/internal/PopupMenu/validatePositions.d.ts +2 -2
  1128. package/cjs/internal/PopupMenu/validatePositions.js +8 -10
  1129. package/cjs/internal/PopupMenu/validatePositions.js.map +1 -1
  1130. package/cjs/internal/RenderContainer/RenderContainer.d.ts +1 -1
  1131. package/cjs/internal/RenderContainer/RenderContainer.js +17 -9
  1132. package/cjs/internal/RenderContainer/RenderContainer.js.map +1 -1
  1133. package/cjs/internal/RenderContainer/RenderContainerTypes.d.ts +6 -1
  1134. package/cjs/internal/RenderContainer/RenderContainerTypes.js +1 -1
  1135. package/cjs/internal/RenderContainer/RenderInnerContainer.d.ts +10 -2
  1136. package/cjs/internal/RenderContainer/RenderInnerContainer.js +49 -15
  1137. package/cjs/internal/RenderContainer/RenderInnerContainer.js.map +1 -1
  1138. package/cjs/internal/RenderContainer/index.js +1 -1
  1139. package/cjs/internal/RenderContainer/index.js.map +1 -1
  1140. package/cjs/internal/RenderLayer/RenderLayer.d.ts +11 -6
  1141. package/cjs/internal/RenderLayer/RenderLayer.js +32 -7
  1142. package/cjs/internal/RenderLayer/RenderLayer.js.map +1 -1
  1143. package/cjs/internal/RenderLayer/index.js +1 -1
  1144. package/cjs/internal/RenderLayer/index.js.map +1 -1
  1145. package/cjs/internal/ResizeDetector/ResizeDetector.d.ts +1 -0
  1146. package/cjs/internal/ResizeDetector/ResizeDetector.js +6 -1
  1147. package/cjs/internal/ResizeDetector/ResizeDetector.js.map +1 -1
  1148. package/cjs/internal/ResizeDetector/ResizeDetector.styles.d.ts +2 -1
  1149. package/cjs/internal/ResizeDetector/ResizeDetector.styles.js +12 -7
  1150. package/cjs/internal/ResizeDetector/ResizeDetector.styles.js.map +1 -1
  1151. package/cjs/internal/ResizeDetector/index.js +1 -1
  1152. package/cjs/internal/ResizeDetector/index.js.map +1 -1
  1153. package/cjs/internal/TextWidthHelper/TextWidthHelper.d.ts +15 -0
  1154. package/cjs/internal/TextWidthHelper/TextWidthHelper.js +36 -0
  1155. package/cjs/internal/TextWidthHelper/TextWidthHelper.js.map +1 -0
  1156. package/cjs/internal/TextWidthHelper/TextWidthHelper.styles.d.ts +4 -0
  1157. package/cjs/internal/TextWidthHelper/TextWidthHelper.styles.js +23 -0
  1158. package/cjs/internal/TextWidthHelper/TextWidthHelper.styles.js.map +1 -0
  1159. package/cjs/internal/ThemePlayground/AnotherInputsPlayground.d.ts +11 -6
  1160. package/cjs/internal/ThemePlayground/AnotherInputsPlayground.js +8 -1
  1161. package/cjs/internal/ThemePlayground/AnotherInputsPlayground.js.map +1 -1
  1162. package/cjs/internal/ThemePlayground/CheckboxPlayground.d.ts +1 -4
  1163. package/cjs/internal/ThemePlayground/CheckboxPlayground.js +10 -6
  1164. package/cjs/internal/ThemePlayground/CheckboxPlayground.js.map +1 -1
  1165. package/cjs/internal/ThemePlayground/ComponentsGroup.d.ts +1 -1
  1166. package/cjs/internal/ThemePlayground/ComponentsGroup.js +8 -8
  1167. package/cjs/internal/ThemePlayground/ComponentsGroup.js.map +1 -1
  1168. package/cjs/internal/ThemePlayground/CurrencyInputPlayground.d.ts +7 -6
  1169. package/cjs/internal/ThemePlayground/CurrencyInputPlayground.js +3 -4
  1170. package/cjs/internal/ThemePlayground/CurrencyInputPlayground.js.map +1 -1
  1171. package/cjs/internal/ThemePlayground/FxInputPlayground.d.ts +6 -4
  1172. package/cjs/internal/ThemePlayground/FxInputPlayground.js +5 -5
  1173. package/cjs/internal/ThemePlayground/FxInputPlayground.js.map +1 -1
  1174. package/cjs/internal/ThemePlayground/HintPlayground.d.ts +1 -1
  1175. package/cjs/internal/ThemePlayground/HintPlayground.js +1 -1
  1176. package/cjs/internal/ThemePlayground/HintPlayground.js.map +1 -1
  1177. package/cjs/internal/ThemePlayground/PagingPlayground.d.ts +6 -6
  1178. package/cjs/internal/ThemePlayground/PagingPlayground.js +5 -2
  1179. package/cjs/internal/ThemePlayground/PagingPlayground.js.map +1 -1
  1180. package/cjs/internal/ThemePlayground/Playground.d.ts +4 -2
  1181. package/cjs/internal/ThemePlayground/Playground.js +80 -62
  1182. package/cjs/internal/ThemePlayground/Playground.js.map +1 -1
  1183. package/cjs/internal/ThemePlayground/Playground.md +7 -7
  1184. package/cjs/internal/ThemePlayground/Playground.styles.d.ts +13 -10
  1185. package/cjs/internal/ThemePlayground/Playground.styles.js +42 -26
  1186. package/cjs/internal/ThemePlayground/Playground.styles.js.map +1 -1
  1187. package/cjs/internal/ThemePlayground/RadioPlayground.d.ts +1 -4
  1188. package/cjs/internal/ThemePlayground/RadioPlayground.js +9 -6
  1189. package/cjs/internal/ThemePlayground/RadioPlayground.js.map +1 -1
  1190. package/cjs/internal/ThemePlayground/SelectPlayground.d.ts +9 -6
  1191. package/cjs/internal/ThemePlayground/SelectPlayground.js +7 -1
  1192. package/cjs/internal/ThemePlayground/SelectPlayground.js.map +1 -1
  1193. package/cjs/internal/ThemePlayground/ShowcaseGroup.d.ts +0 -1
  1194. package/cjs/internal/ThemePlayground/ShowcaseGroup.js +16 -8
  1195. package/cjs/internal/ThemePlayground/ShowcaseGroup.js.map +1 -1
  1196. package/cjs/internal/ThemePlayground/SizesGroup.d.ts +5 -0
  1197. package/cjs/internal/ThemePlayground/SizesGroup.js +23 -0
  1198. package/cjs/internal/ThemePlayground/SizesGroup.js.map +1 -0
  1199. package/cjs/internal/ThemePlayground/SwitcherPlayground.d.ts +9 -8
  1200. package/cjs/internal/ThemePlayground/SwitcherPlayground.js +7 -2
  1201. package/cjs/internal/ThemePlayground/SwitcherPlayground.js.map +1 -1
  1202. package/cjs/internal/ThemePlayground/ThemeContextPlayground.d.ts +8 -2
  1203. package/cjs/internal/ThemePlayground/ThemeContextPlayground.js +54 -35
  1204. package/cjs/internal/ThemePlayground/ThemeContextPlayground.js.map +1 -1
  1205. package/cjs/internal/ThemePlayground/ThemeEditor.d.ts +1 -4
  1206. package/cjs/internal/ThemePlayground/ThemeEditor.js +43 -23
  1207. package/cjs/internal/ThemePlayground/ThemeEditor.js.map +1 -1
  1208. package/cjs/internal/ThemePlayground/TogglePlayground.d.ts +2 -7
  1209. package/cjs/internal/ThemePlayground/TogglePlayground.js +11 -17
  1210. package/cjs/internal/ThemePlayground/TogglePlayground.js.map +1 -1
  1211. package/cjs/internal/ThemePlayground/TokenInputPlayground.d.ts +6 -4
  1212. package/cjs/internal/ThemePlayground/TokenInputPlayground.js +6 -5
  1213. package/cjs/internal/ThemePlayground/TokenInputPlayground.js.map +1 -1
  1214. package/cjs/internal/ThemePlayground/VariableValue.d.ts +8 -6
  1215. package/cjs/internal/ThemePlayground/VariableValue.js +53 -28
  1216. package/cjs/internal/ThemePlayground/VariableValue.js.map +1 -1
  1217. package/cjs/internal/ThemePlayground/constants.d.ts +7 -2
  1218. package/cjs/internal/ThemePlayground/constants.js +18 -3
  1219. package/cjs/internal/ThemePlayground/constants.js.map +1 -1
  1220. package/cjs/internal/ThemePlayground/darkTheme.d.ts +72 -312
  1221. package/cjs/internal/ThemePlayground/darkTheme.js +110 -87
  1222. package/cjs/internal/ThemePlayground/darkTheme.js.map +1 -1
  1223. package/cjs/internal/ThemePlayground/helpers.d.ts +1 -1
  1224. package/cjs/internal/ThemePlayground/helpers.js +5 -3
  1225. package/cjs/internal/ThemePlayground/helpers.js.map +1 -1
  1226. package/cjs/internal/ThemeShowcase/ThemeShowcase.d.ts +1 -1
  1227. package/cjs/internal/ThemeShowcase/ThemeShowcase.js +123 -94
  1228. package/cjs/internal/ThemeShowcase/ThemeShowcase.js.map +1 -1
  1229. package/cjs/internal/ThemeShowcase/ThemeShowcase.md +13 -13
  1230. package/cjs/internal/ThemeShowcase/ThemeShowcase.styles.d.ts +10 -3
  1231. package/cjs/internal/ThemeShowcase/ThemeShowcase.styles.js +55 -30
  1232. package/cjs/internal/ThemeShowcase/ThemeShowcase.styles.js.map +1 -1
  1233. package/cjs/internal/ThemeShowcase/VariablesCollector.d.ts +1 -1
  1234. package/cjs/internal/ThemeShowcase/VariablesCollector.js +69 -60
  1235. package/cjs/internal/ThemeShowcase/VariablesCollector.js.map +1 -1
  1236. package/cjs/internal/ZIndex/ZIndex.d.ts +24 -12
  1237. package/cjs/internal/ZIndex/ZIndex.js +100 -44
  1238. package/cjs/internal/ZIndex/ZIndex.js.map +1 -1
  1239. package/cjs/internal/ZIndex/ZIndexStorage.d.ts +4 -6
  1240. package/cjs/internal/ZIndex/ZIndexStorage.js +21 -15
  1241. package/cjs/internal/ZIndex/ZIndexStorage.js.map +1 -1
  1242. package/cjs/internal/ZIndex/index.js +1 -1
  1243. package/cjs/internal/ZIndex/index.js.map +1 -1
  1244. package/cjs/internal/icons/16px/icon.styles.d.ts +1 -1
  1245. package/cjs/internal/icons/16px/icon.styles.js +5 -8
  1246. package/cjs/internal/icons/16px/icon.styles.js.map +1 -1
  1247. package/cjs/internal/icons/16px/index.d.ts +20 -14
  1248. package/cjs/internal/icons/16px/index.js +193 -62
  1249. package/cjs/internal/icons/16px/index.js.map +1 -1
  1250. package/cjs/internal/icons/20px/Icon.d.ts +11 -14
  1251. package/cjs/internal/icons/20px/Icon.js +15 -24
  1252. package/cjs/internal/icons/20px/Icon.js.map +1 -1
  1253. package/cjs/internal/icons/20px/icon.styles.d.ts +2 -1
  1254. package/cjs/internal/icons/20px/icon.styles.js +8 -18
  1255. package/cjs/internal/icons/20px/icon.styles.js.map +1 -1
  1256. package/cjs/internal/icons/20px/index.d.ts +1 -0
  1257. package/cjs/internal/icons/20px/index.js +2 -1
  1258. package/cjs/internal/icons/20px/index.js.map +1 -1
  1259. package/cjs/internal/icons/20px/svg.d.ts +14 -0
  1260. package/cjs/internal/icons/20px/svg.js +128 -0
  1261. package/cjs/internal/icons/20px/svg.js.map +1 -0
  1262. package/cjs/internal/icons/CloudIcon.d.ts +0 -1
  1263. package/cjs/internal/icons/CloudIcon.js +2 -2
  1264. package/cjs/internal/icons/CloudIcon.js.map +1 -1
  1265. package/cjs/internal/icons/CrossIcon.d.ts +0 -1
  1266. package/cjs/internal/icons/CrossIcon.js +10 -2
  1267. package/cjs/internal/icons/CrossIcon.js.map +1 -1
  1268. package/cjs/internal/icons/SpinnerIcon.d.ts +26 -16
  1269. package/cjs/internal/icons/SpinnerIcon.js +83 -8
  1270. package/cjs/internal/icons/SpinnerIcon.js.map +1 -1
  1271. package/cjs/internal/icons/SpinnerIcon.styles.d.ts +3 -1
  1272. package/cjs/internal/icons/SpinnerIcon.styles.js +20 -6
  1273. package/cjs/internal/icons/SpinnerIcon.styles.js.map +1 -1
  1274. package/cjs/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon16Light.d.ts +2 -0
  1275. package/cjs/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon16Light.js +14 -0
  1276. package/cjs/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon16Light.js.map +1 -0
  1277. package/cjs/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon20Light.d.ts +2 -0
  1278. package/cjs/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon20Light.js +14 -0
  1279. package/cjs/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon20Light.js.map +1 -0
  1280. package/cjs/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon24Regular.d.ts +2 -0
  1281. package/cjs/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon24Regular.js +14 -0
  1282. package/cjs/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon24Regular.js.map +1 -0
  1283. package/cjs/internal/icons2022/ArrowARightIcon/ArrowARightIcon16Light.d.ts +2 -0
  1284. package/cjs/internal/icons2022/ArrowARightIcon/ArrowARightIcon16Light.js +14 -0
  1285. package/cjs/internal/icons2022/ArrowARightIcon/ArrowARightIcon16Light.js.map +1 -0
  1286. package/cjs/internal/icons2022/ArrowARightIcon/ArrowARightIcon20Light.d.ts +2 -0
  1287. package/cjs/internal/icons2022/ArrowARightIcon/ArrowARightIcon20Light.js +14 -0
  1288. package/cjs/internal/icons2022/ArrowARightIcon/ArrowARightIcon20Light.js.map +1 -0
  1289. package/cjs/internal/icons2022/ArrowARightIcon/ArrowARightIcon24Regular.d.ts +2 -0
  1290. package/cjs/internal/icons2022/ArrowARightIcon/ArrowARightIcon24Regular.js +14 -0
  1291. package/cjs/internal/icons2022/ArrowARightIcon/ArrowARightIcon24Regular.js.map +1 -0
  1292. package/cjs/internal/icons2022/ArrowAUpIcon/ArrowAUp16Light.d.ts +2 -0
  1293. package/cjs/internal/icons2022/ArrowAUpIcon/ArrowAUp16Light.js +12 -0
  1294. package/cjs/internal/icons2022/ArrowAUpIcon/ArrowAUp16Light.js.map +1 -0
  1295. package/cjs/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon16Regular.d.ts +2 -0
  1296. package/cjs/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon16Regular.js +14 -0
  1297. package/cjs/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon16Regular.js.map +1 -0
  1298. package/cjs/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon20Regular.d.ts +2 -0
  1299. package/cjs/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon20Regular.js +14 -0
  1300. package/cjs/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon20Regular.js.map +1 -0
  1301. package/cjs/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon24Regular.d.ts +2 -0
  1302. package/cjs/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon24Regular.js +14 -0
  1303. package/cjs/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon24Regular.js.map +1 -0
  1304. package/cjs/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon16Light.d.ts +2 -0
  1305. package/cjs/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon16Light.js +14 -0
  1306. package/cjs/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon16Light.js.map +1 -0
  1307. package/cjs/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon20Light.d.ts +2 -0
  1308. package/cjs/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon20Light.js +14 -0
  1309. package/cjs/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon20Light.js.map +1 -0
  1310. package/cjs/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon24Regular.d.ts +2 -0
  1311. package/cjs/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon24Regular.js +14 -0
  1312. package/cjs/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon24Regular.js.map +1 -0
  1313. package/cjs/internal/icons2022/ArrowCUpIcon/ArrowCUpIcon16Regular.d.ts +2 -0
  1314. package/cjs/internal/icons2022/ArrowCUpIcon/ArrowCUpIcon16Regular.js +14 -0
  1315. package/cjs/internal/icons2022/ArrowCUpIcon/ArrowCUpIcon16Regular.js.map +1 -0
  1316. package/cjs/internal/icons2022/ArrowCollapseCVOpenIcon/ArrowCollapseCVOpenIcon16Regular.d.ts +2 -0
  1317. package/cjs/internal/icons2022/ArrowCollapseCVOpenIcon/ArrowCollapseCVOpenIcon16Regular.js +15 -0
  1318. package/cjs/internal/icons2022/ArrowCollapseCVOpenIcon/ArrowCollapseCVOpenIcon16Regular.js.map +1 -0
  1319. package/cjs/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon16Light.d.ts +2 -0
  1320. package/cjs/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon16Light.js +18 -0
  1321. package/cjs/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon16Light.js.map +1 -0
  1322. package/cjs/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon20Light.d.ts +2 -0
  1323. package/cjs/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon20Light.js +18 -0
  1324. package/cjs/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon20Light.js.map +1 -0
  1325. package/cjs/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon24Regular.d.ts +2 -0
  1326. package/cjs/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon24Regular.js +18 -0
  1327. package/cjs/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon24Regular.js.map +1 -0
  1328. package/cjs/internal/icons2022/BaseIcon.d.ts +11 -0
  1329. package/cjs/internal/icons2022/BaseIcon.js +54 -0
  1330. package/cjs/internal/icons2022/BaseIcon.js.map +1 -0
  1331. package/cjs/internal/icons2022/CalendarIcon/CalendarIcon16Light.d.ts +2 -0
  1332. package/cjs/internal/icons2022/CalendarIcon/CalendarIcon16Light.js +24 -0
  1333. package/cjs/internal/icons2022/CalendarIcon/CalendarIcon16Light.js.map +1 -0
  1334. package/cjs/internal/icons2022/CalendarIcon/CalendarIcon20Light.d.ts +2 -0
  1335. package/cjs/internal/icons2022/CalendarIcon/CalendarIcon20Light.js +24 -0
  1336. package/cjs/internal/icons2022/CalendarIcon/CalendarIcon20Light.js.map +1 -0
  1337. package/cjs/internal/icons2022/CalendarIcon/CalendarIcon24Regular.d.ts +2 -0
  1338. package/cjs/internal/icons2022/CalendarIcon/CalendarIcon24Regular.js +26 -0
  1339. package/cjs/internal/icons2022/CalendarIcon/CalendarIcon24Regular.js.map +1 -0
  1340. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon16Light.d.ts +2 -0
  1341. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon16Light.js +12 -0
  1342. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon16Light.js.map +1 -0
  1343. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon16Regular.d.ts +2 -0
  1344. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon16Regular.js +12 -0
  1345. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon16Regular.js.map +1 -0
  1346. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon16Solid.d.ts +2 -0
  1347. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon16Solid.js +12 -0
  1348. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon16Solid.js.map +1 -0
  1349. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon20Light.d.ts +2 -0
  1350. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon20Light.js +12 -0
  1351. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon20Light.js.map +1 -0
  1352. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon20Solid.d.ts +2 -0
  1353. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon20Solid.js +12 -0
  1354. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon20Solid.js.map +1 -0
  1355. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon24Regular.d.ts +2 -0
  1356. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon24Regular.js +12 -0
  1357. package/cjs/internal/icons2022/CheckAIcon/CheckAIcon24Regular.js.map +1 -0
  1358. package/cjs/internal/icons2022/EyeClosedIcon/EyeClosedIcon16Light.d.ts +2 -0
  1359. package/cjs/internal/icons2022/EyeClosedIcon/EyeClosedIcon16Light.js +14 -0
  1360. package/cjs/internal/icons2022/EyeClosedIcon/EyeClosedIcon16Light.js.map +1 -0
  1361. package/cjs/internal/icons2022/EyeClosedIcon/EyeClosedIcon20Light.d.ts +2 -0
  1362. package/cjs/internal/icons2022/EyeClosedIcon/EyeClosedIcon20Light.js +14 -0
  1363. package/cjs/internal/icons2022/EyeClosedIcon/EyeClosedIcon20Light.js.map +1 -0
  1364. package/cjs/internal/icons2022/EyeClosedIcon/EyeClosedIcon24Regular.d.ts +2 -0
  1365. package/cjs/internal/icons2022/EyeClosedIcon/EyeClosedIcon24Regular.js +14 -0
  1366. package/cjs/internal/icons2022/EyeClosedIcon/EyeClosedIcon24Regular.js.map +1 -0
  1367. package/cjs/internal/icons2022/EyeOpenIcon/EyeOpenIcon16Light.d.ts +2 -0
  1368. package/cjs/internal/icons2022/EyeOpenIcon/EyeOpenIcon16Light.js +21 -0
  1369. package/cjs/internal/icons2022/EyeOpenIcon/EyeOpenIcon16Light.js.map +1 -0
  1370. package/cjs/internal/icons2022/EyeOpenIcon/EyeOpenIcon20Light.d.ts +2 -0
  1371. package/cjs/internal/icons2022/EyeOpenIcon/EyeOpenIcon20Light.js +21 -0
  1372. package/cjs/internal/icons2022/EyeOpenIcon/EyeOpenIcon20Light.js.map +1 -0
  1373. package/cjs/internal/icons2022/EyeOpenIcon/EyeOpenIcon24Regular.d.ts +2 -0
  1374. package/cjs/internal/icons2022/EyeOpenIcon/EyeOpenIcon24Regular.js +23 -0
  1375. package/cjs/internal/icons2022/EyeOpenIcon/EyeOpenIcon24Regular.js.map +1 -0
  1376. package/cjs/internal/icons2022/LoadingIcon.d.ts +4 -0
  1377. package/cjs/internal/icons2022/LoadingIcon.js +44 -0
  1378. package/cjs/internal/icons2022/LoadingIcon.js.map +1 -0
  1379. package/cjs/internal/icons2022/MathFunctionIcon/MathFunctionIcon16Light.d.ts +2 -0
  1380. package/cjs/internal/icons2022/MathFunctionIcon/MathFunctionIcon16Light.js +15 -0
  1381. package/cjs/internal/icons2022/MathFunctionIcon/MathFunctionIcon16Light.js.map +1 -0
  1382. package/cjs/internal/icons2022/MathFunctionIcon/MathFunctionIcon20Light.d.ts +2 -0
  1383. package/cjs/internal/icons2022/MathFunctionIcon/MathFunctionIcon20Light.js +15 -0
  1384. package/cjs/internal/icons2022/MathFunctionIcon/MathFunctionIcon20Light.js.map +1 -0
  1385. package/cjs/internal/icons2022/MathFunctionIcon/MathFunctionIcon24Regular.d.ts +2 -0
  1386. package/cjs/internal/icons2022/MathFunctionIcon/MathFunctionIcon24Regular.js +15 -0
  1387. package/cjs/internal/icons2022/MathFunctionIcon/MathFunctionIcon24Regular.js.map +1 -0
  1388. package/cjs/internal/icons2022/MinusCircleIcon/MinusCircleIcon16Light.d.ts +2 -0
  1389. package/cjs/internal/icons2022/MinusCircleIcon/MinusCircleIcon16Light.js +19 -0
  1390. package/cjs/internal/icons2022/MinusCircleIcon/MinusCircleIcon16Light.js.map +1 -0
  1391. package/cjs/internal/icons2022/MinusCircleIcon/MinusCircleIcon16Regular.d.ts +2 -0
  1392. package/cjs/internal/icons2022/MinusCircleIcon/MinusCircleIcon16Regular.js +19 -0
  1393. package/cjs/internal/icons2022/MinusCircleIcon/MinusCircleIcon16Regular.js.map +1 -0
  1394. package/cjs/internal/icons2022/MinusCircleIcon/MinusCircleIcon20Light.d.ts +2 -0
  1395. package/cjs/internal/icons2022/MinusCircleIcon/MinusCircleIcon20Light.js +19 -0
  1396. package/cjs/internal/icons2022/MinusCircleIcon/MinusCircleIcon20Light.js.map +1 -0
  1397. package/cjs/internal/icons2022/MinusCircleIcon/MinusCircleIcon24Regular.d.ts +2 -0
  1398. package/cjs/internal/icons2022/MinusCircleIcon/MinusCircleIcon24Regular.js +19 -0
  1399. package/cjs/internal/icons2022/MinusCircleIcon/MinusCircleIcon24Regular.js.map +1 -0
  1400. package/cjs/internal/icons2022/NetUploadIcon/NetUploadIcon16Light.d.ts +2 -0
  1401. package/cjs/internal/icons2022/NetUploadIcon/NetUploadIcon16Light.js +15 -0
  1402. package/cjs/internal/icons2022/NetUploadIcon/NetUploadIcon16Light.js.map +1 -0
  1403. package/cjs/internal/icons2022/NetUploadIcon/NetUploadIcon20Light.d.ts +2 -0
  1404. package/cjs/internal/icons2022/NetUploadIcon/NetUploadIcon20Light.js +15 -0
  1405. package/cjs/internal/icons2022/NetUploadIcon/NetUploadIcon20Light.js.map +1 -0
  1406. package/cjs/internal/icons2022/NetUploadIcon/NetUploadIcon24Regular.d.ts +2 -0
  1407. package/cjs/internal/icons2022/NetUploadIcon/NetUploadIcon24Regular.js +15 -0
  1408. package/cjs/internal/icons2022/NetUploadIcon/NetUploadIcon24Regular.js.map +1 -0
  1409. package/cjs/internal/icons2022/QuestionCircleIcon/QuestionCircleIcon16Solid.d.ts +2 -0
  1410. package/cjs/internal/icons2022/QuestionCircleIcon/QuestionCircleIcon16Solid.js +18 -0
  1411. package/cjs/internal/icons2022/QuestionCircleIcon/QuestionCircleIcon16Solid.js.map +1 -0
  1412. package/cjs/internal/icons2022/SearchLoupeIcon/SearchLoupeIcon16Regular.d.ts +2 -0
  1413. package/cjs/internal/icons2022/SearchLoupeIcon/SearchLoupeIcon16Regular.js +18 -0
  1414. package/cjs/internal/icons2022/SearchLoupeIcon/SearchLoupeIcon16Regular.js.map +1 -0
  1415. package/cjs/internal/icons2022/ShapeSquareIcon/ShapeSquareIcon16Solid.d.ts +2 -0
  1416. package/cjs/internal/icons2022/ShapeSquareIcon/ShapeSquareIcon16Solid.js +14 -0
  1417. package/cjs/internal/icons2022/ShapeSquareIcon/ShapeSquareIcon16Solid.js.map +1 -0
  1418. package/cjs/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon16Light.d.ts +2 -0
  1419. package/cjs/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon16Light.js +16 -0
  1420. package/cjs/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon16Light.js.map +1 -0
  1421. package/cjs/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon20Regular.d.ts +2 -0
  1422. package/cjs/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon20Regular.js +16 -0
  1423. package/cjs/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon20Regular.js.map +1 -0
  1424. package/cjs/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon24Regular.d.ts +2 -0
  1425. package/cjs/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon24Regular.js +16 -0
  1426. package/cjs/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon24Regular.js.map +1 -0
  1427. package/cjs/internal/icons2022/XIcon/XIcon16Light.d.ts +2 -0
  1428. package/cjs/internal/icons2022/XIcon/XIcon16Light.js +12 -0
  1429. package/cjs/internal/icons2022/XIcon/XIcon16Light.js.map +1 -0
  1430. package/cjs/internal/icons2022/XIcon/XIcon16Regular.d.ts +2 -0
  1431. package/cjs/internal/icons2022/XIcon/XIcon16Regular.js +12 -0
  1432. package/cjs/internal/icons2022/XIcon/XIcon16Regular.js.map +1 -0
  1433. package/cjs/internal/icons2022/XIcon/XIcon20Light.d.ts +2 -0
  1434. package/cjs/internal/icons2022/XIcon/XIcon20Light.js +12 -0
  1435. package/cjs/internal/icons2022/XIcon/XIcon20Light.js.map +1 -0
  1436. package/cjs/internal/icons2022/XIcon/XIcon20Regular.d.ts +2 -0
  1437. package/cjs/internal/icons2022/XIcon/XIcon20Regular.js +12 -0
  1438. package/cjs/internal/icons2022/XIcon/XIcon20Regular.js.map +1 -0
  1439. package/cjs/internal/icons2022/XIcon/XIcon24Regular.d.ts +2 -0
  1440. package/cjs/internal/icons2022/XIcon/XIcon24Regular.js +12 -0
  1441. package/cjs/internal/icons2022/XIcon/XIcon24Regular.js.map +1 -0
  1442. package/cjs/internal/icons2022/iconConstants.d.ts +8 -0
  1443. package/cjs/internal/icons2022/iconConstants.js +11 -0
  1444. package/cjs/internal/icons2022/iconConstants.js.map +1 -0
  1445. package/cjs/internal/icons2022/iconSizer.d.ts +11 -0
  1446. package/cjs/internal/icons2022/iconSizer.js +35 -0
  1447. package/cjs/internal/icons2022/iconSizer.js.map +1 -0
  1448. package/cjs/internal/themes/DarkTheme.d.ts +142 -0
  1449. package/cjs/internal/themes/DarkTheme.js +246 -0
  1450. package/cjs/internal/themes/DarkTheme.js.map +1 -0
  1451. package/cjs/internal/themes/DefaultTheme.d.ts +1124 -202
  1452. package/cjs/internal/themes/DefaultTheme.js +2191 -228
  1453. package/cjs/internal/themes/DefaultTheme.js.map +1 -1
  1454. package/cjs/internal/themes/NotFlat.d.ts +134 -0
  1455. package/cjs/internal/themes/NotFlat.js +230 -0
  1456. package/cjs/internal/themes/NotFlat.js.map +1 -0
  1457. package/cjs/internal/themes/OldColors.d.ts +116 -0
  1458. package/cjs/internal/themes/OldColors.js +167 -0
  1459. package/cjs/internal/themes/OldColors.js.map +1 -0
  1460. package/cjs/internal/themes/Theme2022.d.ts +306 -0
  1461. package/cjs/internal/themes/Theme2022.js +533 -0
  1462. package/cjs/internal/themes/Theme2022.js.map +1 -0
  1463. package/cjs/internal/themes/Theme2022Dark.d.ts +192 -0
  1464. package/cjs/internal/themes/Theme2022Dark.js +339 -0
  1465. package/cjs/internal/themes/Theme2022Dark.js.map +1 -0
  1466. package/cjs/lib/ConditionalHandler.d.ts +3 -2
  1467. package/cjs/lib/ConditionalHandler.js +8 -6
  1468. package/cjs/lib/ConditionalHandler.js.map +1 -1
  1469. package/cjs/lib/InstanceWithAnchorElement.d.ts +5 -0
  1470. package/cjs/lib/InstanceWithAnchorElement.js +9 -0
  1471. package/cjs/lib/InstanceWithAnchorElement.js.map +1 -0
  1472. package/cjs/lib/LayoutEvents.js +4 -4
  1473. package/cjs/lib/LayoutEvents.js.map +1 -1
  1474. package/cjs/lib/ModalStack.d.ts +6 -1
  1475. package/cjs/lib/ModalStack.js +69 -8
  1476. package/cjs/lib/ModalStack.js.map +1 -1
  1477. package/cjs/lib/SSRSafe.d.ts +5 -0
  1478. package/cjs/lib/SSRSafe.js +44 -4
  1479. package/cjs/lib/SSRSafe.js.map +1 -1
  1480. package/cjs/lib/Supports.js.map +1 -1
  1481. package/cjs/lib/Upgrades.d.ts +2 -0
  1482. package/cjs/lib/Upgrades.js +19 -0
  1483. package/cjs/lib/Upgrades.js.map +1 -1
  1484. package/cjs/lib/animation/index.d.ts +1 -1
  1485. package/cjs/lib/animation/index.js +7 -6
  1486. package/cjs/lib/animation/index.js.map +1 -1
  1487. package/cjs/lib/animation/presets.js.map +1 -1
  1488. package/cjs/lib/animation/stepper.js +2 -2
  1489. package/cjs/lib/animation/stepper.js.map +1 -1
  1490. package/cjs/lib/callChildRef/callChildRef.d.ts +3 -0
  1491. package/cjs/lib/callChildRef/callChildRef.js +19 -0
  1492. package/cjs/lib/callChildRef/callChildRef.js.map +1 -0
  1493. package/cjs/lib/chars.d.ts +8 -0
  1494. package/cjs/lib/chars.js +8 -0
  1495. package/cjs/lib/chars.js.map +1 -0
  1496. package/cjs/lib/client.d.ts +16 -0
  1497. package/cjs/lib/client.js +23 -0
  1498. package/cjs/lib/client.js.map +1 -0
  1499. package/cjs/lib/createPropsGetter.d.ts +2 -1
  1500. package/cjs/lib/createPropsGetter.js +3 -0
  1501. package/cjs/lib/createPropsGetter.js.map +1 -1
  1502. package/cjs/lib/currentEnvironment.js +33 -3
  1503. package/cjs/lib/currentEnvironment.js.map +1 -1
  1504. package/cjs/lib/date/InternalDate.d.ts +1 -1
  1505. package/cjs/lib/date/InternalDate.js +38 -26
  1506. package/cjs/lib/date/InternalDate.js.map +1 -1
  1507. package/cjs/lib/date/InternalDateCalculator.d.ts +1 -1
  1508. package/cjs/lib/date/InternalDateCalculator.js +17 -3
  1509. package/cjs/lib/date/InternalDateCalculator.js.map +1 -1
  1510. package/cjs/lib/date/InternalDateGetter.d.ts +1 -1
  1511. package/cjs/lib/date/InternalDateGetter.js +29 -9
  1512. package/cjs/lib/date/InternalDateGetter.js.map +1 -1
  1513. package/cjs/lib/date/InternalDateSetter.js.map +1 -1
  1514. package/cjs/lib/date/InternalDateTransformer.d.ts +6 -6
  1515. package/cjs/lib/date/InternalDateTransformer.js +15 -6
  1516. package/cjs/lib/date/InternalDateTransformer.js.map +1 -1
  1517. package/cjs/lib/date/InternalDateValidator.d.ts +1 -1
  1518. package/cjs/lib/date/InternalDateValidator.js +64 -19
  1519. package/cjs/lib/date/InternalDateValidator.js.map +1 -1
  1520. package/cjs/lib/date/constants.js +1 -1
  1521. package/cjs/lib/date/constants.js.map +1 -1
  1522. package/cjs/lib/date/localeSets.js.map +1 -1
  1523. package/cjs/lib/date/types.d.ts +4 -0
  1524. package/cjs/lib/date/types.js +1 -1
  1525. package/cjs/lib/date/types.js.map +1 -1
  1526. package/cjs/lib/dom/getDOMRect.d.ts +11 -0
  1527. package/cjs/lib/dom/getDOMRect.js +36 -0
  1528. package/cjs/lib/dom/getDOMRect.js.map +1 -0
  1529. package/cjs/lib/dom/getScrollWidth.js +6 -5
  1530. package/cjs/lib/dom/getScrollWidth.js.map +1 -1
  1531. package/cjs/lib/dom/tabbableHelpers.d.ts +16 -0
  1532. package/cjs/lib/dom/tabbableHelpers.js +31 -0
  1533. package/cjs/lib/dom/tabbableHelpers.js.map +1 -0
  1534. package/cjs/lib/events/MouseDrag.js +40 -32
  1535. package/cjs/lib/events/MouseDrag.js.map +1 -1
  1536. package/cjs/lib/events/fixClickFocusIE.js +4 -4
  1537. package/cjs/lib/events/fixClickFocusIE.js.map +1 -1
  1538. package/cjs/lib/events/fixFirefoxModifiedClickOnLabel.d.ts +2 -0
  1539. package/cjs/lib/events/fixFirefoxModifiedClickOnLabel.js +20 -0
  1540. package/cjs/lib/events/fixFirefoxModifiedClickOnLabel.js.map +1 -0
  1541. package/cjs/lib/events/keyListener.d.ts +7 -0
  1542. package/cjs/lib/events/keyListener.js +22 -0
  1543. package/cjs/lib/events/keyListener.js.map +1 -0
  1544. package/cjs/lib/events/keyboard/KeyboardEventCodes.js.map +1 -1
  1545. package/cjs/lib/events/keyboard/KeyboardMapKeys.d.ts +2 -2
  1546. package/cjs/lib/events/keyboard/KeyboardMapKeys.js +8 -4
  1547. package/cjs/lib/events/keyboard/KeyboardMapKeys.js.map +1 -1
  1548. package/cjs/lib/events/keyboard/extractCode.js +7 -5
  1549. package/cjs/lib/events/keyboard/extractCode.js.map +1 -1
  1550. package/cjs/lib/events/keyboard/identifiers.d.ts +1 -0
  1551. package/cjs/lib/events/keyboard/identifiers.js +20 -10
  1552. package/cjs/lib/events/keyboard/identifiers.js.map +1 -1
  1553. package/cjs/lib/events/stopPropagation.js.map +1 -1
  1554. package/cjs/lib/events/tabListener.d.ts +1 -6
  1555. package/cjs/lib/events/tabListener.js +2 -11
  1556. package/cjs/lib/events/tabListener.js.map +1 -1
  1557. package/cjs/lib/extractKeyboardAction.d.ts +1 -1
  1558. package/cjs/lib/extractKeyboardAction.js +1 -1
  1559. package/cjs/lib/extractKeyboardAction.js.map +1 -1
  1560. package/cjs/lib/filterProps.js +0 -1
  1561. package/cjs/lib/filterProps.js.map +1 -1
  1562. package/cjs/lib/forwardRefAndName.d.ts +9 -0
  1563. package/cjs/lib/forwardRefAndName.js +44 -0
  1564. package/cjs/lib/forwardRefAndName.js.map +1 -0
  1565. package/cjs/lib/getDisplayName.d.ts +3 -0
  1566. package/cjs/lib/getDisplayName.js +9 -0
  1567. package/cjs/lib/getDisplayName.js.map +1 -0
  1568. package/cjs/lib/listenFocusOutside.d.ts +5 -1
  1569. package/cjs/lib/listenFocusOutside.js +18 -18
  1570. package/cjs/lib/listenFocusOutside.js.map +1 -1
  1571. package/cjs/lib/locale/LOCALECONTEXT.md +222 -246
  1572. package/cjs/lib/locale/LocaleContext.js +5 -2
  1573. package/cjs/lib/locale/LocaleContext.js.map +1 -1
  1574. package/cjs/lib/locale/LocaleHelper.js +1 -1
  1575. package/cjs/lib/locale/LocaleHelper.js.map +1 -1
  1576. package/cjs/lib/locale/constants.js.map +1 -1
  1577. package/cjs/lib/locale/decorators.d.ts +4 -3
  1578. package/cjs/lib/locale/decorators.js +11 -9
  1579. package/cjs/lib/locale/decorators.js.map +1 -1
  1580. package/cjs/lib/locale/index.js +2 -2
  1581. package/cjs/lib/locale/index.js.map +1 -1
  1582. package/cjs/lib/locale/types.d.ts +11 -6
  1583. package/cjs/lib/locale/types.js +5 -0
  1584. package/cjs/lib/locale/types.js.map +1 -1
  1585. package/cjs/lib/locale/useLocaleForControl.d.ts +3 -0
  1586. package/cjs/lib/locale/useLocaleForControl.js +14 -0
  1587. package/cjs/lib/locale/useLocaleForControl.js.map +1 -0
  1588. package/cjs/lib/memo.d.ts +3 -1
  1589. package/cjs/lib/memo.js +3 -3
  1590. package/cjs/lib/memo.js.map +1 -1
  1591. package/cjs/lib/needsPolyfillPlaceholder.d.ts +6 -0
  1592. package/cjs/lib/needsPolyfillPlaceholder.js +19 -0
  1593. package/cjs/lib/needsPolyfillPlaceholder.js.map +1 -0
  1594. package/cjs/lib/net/fetch.js +4 -4
  1595. package/cjs/lib/net/fetch.js.map +1 -1
  1596. package/cjs/lib/reactGetTextContent.js +1 -2
  1597. package/cjs/lib/reactGetTextContent.js.map +1 -1
  1598. package/cjs/lib/rootNode/getRootNode.d.ts +12 -0
  1599. package/cjs/lib/rootNode/getRootNode.js +84 -0
  1600. package/cjs/lib/rootNode/getRootNode.js.map +1 -0
  1601. package/cjs/lib/rootNode/index.d.ts +2 -0
  1602. package/cjs/lib/rootNode/index.js +2 -0
  1603. package/cjs/lib/rootNode/index.js.map +1 -0
  1604. package/cjs/lib/rootNode/rootNodeDecorator.d.ts +56 -0
  1605. package/cjs/lib/rootNode/rootNodeDecorator.js +72 -0
  1606. package/cjs/lib/rootNode/rootNodeDecorator.js.map +1 -0
  1607. package/cjs/lib/stringUtils.d.ts +1 -0
  1608. package/cjs/lib/stringUtils.js +15 -0
  1609. package/cjs/lib/stringUtils.js.map +1 -0
  1610. package/cjs/lib/styles/ColorFactory.js +22 -18
  1611. package/cjs/lib/styles/ColorFactory.js.map +1 -1
  1612. package/cjs/lib/styles/ColorFunctions.js +3 -3
  1613. package/cjs/lib/styles/ColorFunctions.js.map +1 -1
  1614. package/cjs/lib/styles/ColorHelpers.d.ts +1 -0
  1615. package/cjs/lib/styles/ColorHelpers.js +33 -10
  1616. package/cjs/lib/styles/ColorHelpers.js.map +1 -1
  1617. package/cjs/lib/styles/ColorKeywords.js.map +1 -1
  1618. package/cjs/lib/styles/ColorObject.d.ts +1 -0
  1619. package/cjs/lib/styles/ColorObject.js +9 -3
  1620. package/cjs/lib/styles/ColorObject.js.map +1 -1
  1621. package/cjs/lib/styles/DimensionFunctions.js.map +1 -1
  1622. package/cjs/lib/styles/HoldSelectionColor.d.ts +1 -0
  1623. package/cjs/lib/styles/HoldSelectionColor.js +9 -0
  1624. package/cjs/lib/styles/HoldSelectionColor.js.map +1 -0
  1625. package/cjs/lib/styles/Mixins.js +3 -3
  1626. package/cjs/lib/styles/Mixins.js.map +1 -1
  1627. package/cjs/lib/styles/getLabGrotesqueBaselineCompensation.d.ts +1 -0
  1628. package/cjs/lib/styles/getLabGrotesqueBaselineCompensation.js +14 -0
  1629. package/cjs/lib/styles/getLabGrotesqueBaselineCompensation.js.map +1 -0
  1630. package/cjs/lib/taskWithDelayAndMinimalDuration.d.ts +21 -0
  1631. package/cjs/lib/taskWithDelayAndMinimalDuration.js +82 -0
  1632. package/cjs/lib/taskWithDelayAndMinimalDuration.js.map +1 -0
  1633. package/cjs/lib/theming/AnimationKeyframes.d.ts +5 -6
  1634. package/cjs/lib/theming/AnimationKeyframes.js +8 -22
  1635. package/cjs/lib/theming/AnimationKeyframes.js.map +1 -1
  1636. package/cjs/lib/theming/Emotion.d.ts +11 -10
  1637. package/cjs/lib/theming/Emotion.js +20 -20
  1638. package/cjs/lib/theming/Emotion.js.map +1 -1
  1639. package/cjs/lib/theming/Theme.d.ts +1 -2
  1640. package/cjs/lib/theming/Theme.js +1 -1
  1641. package/cjs/lib/theming/ThemeContext.d.ts +1 -1
  1642. package/cjs/lib/theming/ThemeContext.js +3 -1
  1643. package/cjs/lib/theming/ThemeContext.js.map +1 -1
  1644. package/cjs/lib/theming/ThemeContext.md +285 -237
  1645. package/cjs/lib/theming/ThemeFactory.d.ts +3 -3
  1646. package/cjs/lib/theming/ThemeFactory.js +30 -19
  1647. package/cjs/lib/theming/ThemeFactory.js.map +1 -1
  1648. package/cjs/lib/theming/ThemeHelpers.d.ts +21 -0
  1649. package/cjs/lib/theming/ThemeHelpers.js +84 -0
  1650. package/cjs/lib/theming/ThemeHelpers.js.map +1 -0
  1651. package/cjs/lib/theming/themes/DarkTheme.d.ts +1 -0
  1652. package/cjs/lib/theming/themes/DarkTheme.js +5 -0
  1653. package/cjs/lib/theming/themes/DarkTheme.js.map +1 -0
  1654. package/cjs/lib/theming/themes/DefaultTheme.d.ts +1 -1
  1655. package/cjs/lib/theming/themes/DefaultTheme.js +3 -2
  1656. package/cjs/lib/theming/themes/DefaultTheme.js.map +1 -1
  1657. package/cjs/lib/theming/themes/DefaultTheme8pxOld.d.ts +1 -0
  1658. package/cjs/lib/theming/themes/DefaultTheme8pxOld.js +8 -0
  1659. package/cjs/lib/theming/themes/DefaultTheme8pxOld.js.map +1 -0
  1660. package/cjs/lib/theming/themes/DefaultThemeMobile.d.ts +3 -0
  1661. package/cjs/lib/theming/themes/DefaultThemeMobile.js +9 -0
  1662. package/cjs/lib/theming/themes/DefaultThemeMobile.js.map +1 -0
  1663. package/cjs/lib/theming/themes/FlatTheme8pxOld.d.ts +1 -0
  1664. package/cjs/lib/theming/themes/FlatTheme8pxOld.js +5 -0
  1665. package/cjs/lib/theming/themes/FlatTheme8pxOld.js.map +1 -0
  1666. package/cjs/lib/theming/themes/Theme2022.d.ts +1 -0
  1667. package/cjs/lib/theming/themes/Theme2022.js +7 -0
  1668. package/cjs/lib/theming/themes/Theme2022.js.map +1 -0
  1669. package/cjs/lib/theming/themes/Theme2022Dark.d.ts +1 -0
  1670. package/cjs/lib/theming/themes/Theme2022Dark.js +10 -0
  1671. package/cjs/lib/theming/themes/Theme2022Dark.js.map +1 -0
  1672. package/cjs/lib/theming/useTheme.d.ts +1 -0
  1673. package/cjs/lib/theming/useTheme.js +7 -0
  1674. package/cjs/lib/theming/useTheme.js.map +1 -0
  1675. package/cjs/lib/types/props.d.ts +1 -0
  1676. package/cjs/lib/types/props.js +1 -0
  1677. package/cjs/lib/types/props.js.map +1 -0
  1678. package/cjs/lib/uidUtils.d.ts +1 -0
  1679. package/cjs/lib/uidUtils.js +5 -0
  1680. package/cjs/lib/uidUtils.js.map +1 -0
  1681. package/cjs/lib/utils.d.ts +70 -12
  1682. package/cjs/lib/utils.js +173 -31
  1683. package/cjs/lib/utils.js.map +1 -1
  1684. package/cjs/lib/withClassWrapper.d.ts +71 -0
  1685. package/cjs/lib/withClassWrapper.js +56 -0
  1686. package/cjs/lib/withClassWrapper.js.map +1 -0
  1687. package/cjs/typings/console.d.ts +3 -3
  1688. package/cjs/typings/event-types.d.ts +4 -4
  1689. package/cjs/typings/fonts.d.ts +12 -12
  1690. package/cjs/typings/global.d.ts +10 -6
  1691. package/cjs/typings/html.d.ts +123 -0
  1692. package/cjs/typings/images.d.ts +1 -1
  1693. package/cjs/typings/normalize-wheel.d.ts +5 -5
  1694. package/cjs/typings/stories.d.ts +7 -0
  1695. package/cjs/typings/stylis-plugin-extra-scope.d.ts +3 -3
  1696. package/cjs/typings/utility-types.d.ts +20 -14
  1697. package/components/Autocomplete/Autocomplete/Autocomplete.js +241 -96
  1698. package/components/Autocomplete/Autocomplete/Autocomplete.js.map +1 -1
  1699. package/components/Autocomplete/Autocomplete.d.ts +44 -21
  1700. package/components/Autocomplete/Autocomplete.md +38 -7
  1701. package/components/Autocomplete/Autocomplete.styles/Autocomplete.styles.js +10 -0
  1702. package/components/Autocomplete/Autocomplete.styles/Autocomplete.styles.js.map +1 -0
  1703. package/components/Autocomplete/Autocomplete.styles/package.json +6 -0
  1704. package/components/Autocomplete/Autocomplete.styles.d.ts +4 -0
  1705. package/components/Autocomplete/getAutocompleteTheme/getAutocompleteTheme.js +6 -0
  1706. package/components/Autocomplete/getAutocompleteTheme/getAutocompleteTheme.js.map +1 -0
  1707. package/components/Autocomplete/getAutocompleteTheme/package.json +6 -0
  1708. package/components/Autocomplete/getAutocompleteTheme.d.ts +2 -0
  1709. package/components/Autocomplete/index/index.js.map +1 -1
  1710. package/components/Autocomplete/locale/index/index.js +8 -0
  1711. package/components/Autocomplete/locale/index/index.js.map +1 -0
  1712. package/components/Autocomplete/locale/index/package.json +6 -0
  1713. package/components/Autocomplete/locale/index.d.ts +4 -0
  1714. package/components/Autocomplete/locale/locales/en/en.js +5 -0
  1715. package/components/Autocomplete/locale/locales/en/en.js.map +1 -0
  1716. package/components/Autocomplete/locale/locales/en/package.json +6 -0
  1717. package/components/Autocomplete/locale/locales/en.d.ts +2 -0
  1718. package/components/Autocomplete/locale/locales/ru/package.json +6 -0
  1719. package/components/Autocomplete/locale/locales/ru/ru.js +5 -0
  1720. package/components/Autocomplete/locale/locales/ru/ru.js.map +1 -0
  1721. package/components/Autocomplete/locale/locales/ru.d.ts +2 -0
  1722. package/components/Autocomplete/locale/package.json +6 -0
  1723. package/components/Autocomplete/locale/types/package.json +6 -0
  1724. package/components/Autocomplete/locale/types/types.js +1 -0
  1725. package/components/Autocomplete/locale/types/types.js.map +1 -0
  1726. package/components/Autocomplete/locale/types.d.ts +5 -0
  1727. package/components/Button/ArrowLeftIcon/ArrowLeftIcon.js +17 -0
  1728. package/components/Button/ArrowLeftIcon/ArrowLeftIcon.js.map +1 -0
  1729. package/components/Button/ArrowLeftIcon/package.json +6 -0
  1730. package/components/Button/ArrowLeftIcon.d.ts +3 -0
  1731. package/components/Button/ArrowRightIcon/ArrowRightIcon.js +17 -0
  1732. package/components/Button/ArrowRightIcon/ArrowRightIcon.js.map +1 -0
  1733. package/components/Button/ArrowRightIcon/package.json +6 -0
  1734. package/components/Button/ArrowRightIcon.d.ts +3 -0
  1735. package/components/Button/Button/Button.js +237 -100
  1736. package/components/Button/Button/Button.js.map +1 -1
  1737. package/components/Button/Button.d.ts +100 -26
  1738. package/components/Button/Button.md +138 -89
  1739. package/components/Button/Button.mixins/Button.mixins.js +21 -75
  1740. package/components/Button/Button.mixins/Button.mixins.js.map +1 -1
  1741. package/components/Button/Button.mixins.d.ts +6 -6
  1742. package/components/Button/Button.styles/Button.styles.js +225 -452
  1743. package/components/Button/Button.styles/Button.styles.js.map +1 -1
  1744. package/components/Button/Button.styles.d.ts +94 -30
  1745. package/components/Button/ButtonArrow/ButtonArrow.js +72 -0
  1746. package/components/Button/ButtonArrow/ButtonArrow.js.map +1 -0
  1747. package/components/Button/ButtonArrow/package.json +6 -0
  1748. package/components/Button/ButtonArrow.d.ts +8 -0
  1749. package/components/Button/ButtonIcon/ButtonIcon.js +65 -0
  1750. package/components/Button/ButtonIcon/ButtonIcon.js.map +1 -0
  1751. package/components/Button/ButtonIcon/package.json +6 -0
  1752. package/components/Button/ButtonIcon.d.ts +10 -0
  1753. package/components/Button/getInnerLinkTheme/getInnerLinkTheme.js +16 -0
  1754. package/components/Button/getInnerLinkTheme/getInnerLinkTheme.js.map +1 -0
  1755. package/components/Button/getInnerLinkTheme/package.json +6 -0
  1756. package/components/Button/getInnerLinkTheme.d.ts +2 -0
  1757. package/components/Button/index/index.js.map +1 -1
  1758. package/components/Calendar/Calendar/Calendar.js +510 -0
  1759. package/components/Calendar/Calendar/Calendar.js.map +1 -0
  1760. package/components/Calendar/Calendar/package.json +6 -0
  1761. package/components/Calendar/Calendar.d.ts +105 -0
  1762. package/components/Calendar/Calendar.md +158 -0
  1763. package/components/Calendar/Calendar.styles/Calendar.styles.js +17 -0
  1764. package/components/Calendar/Calendar.styles/Calendar.styles.js.map +1 -0
  1765. package/components/Calendar/Calendar.styles/package.json +6 -0
  1766. package/components/Calendar/Calendar.styles.d.ts +6 -0
  1767. package/components/Calendar/CalendarDateShape/CalendarDateShape.js.map +1 -0
  1768. package/components/Calendar/CalendarDateShape/package.json +6 -0
  1769. package/components/Calendar/CalendarScrollEvents/CalendarScrollEvents.js.map +1 -0
  1770. package/components/Calendar/CalendarScrollEvents/package.json +6 -0
  1771. package/components/Calendar/CalendarUtils/CalendarUtils.js +104 -0
  1772. package/components/Calendar/CalendarUtils/CalendarUtils.js.map +1 -0
  1773. package/components/Calendar/CalendarUtils/package.json +6 -0
  1774. package/components/Calendar/CalendarUtils.d.ts +36 -0
  1775. package/components/Calendar/DayCellView/DayCellView.js +49 -0
  1776. package/components/Calendar/DayCellView/DayCellView.js.map +1 -0
  1777. package/components/Calendar/DayCellView/package.json +6 -0
  1778. package/components/Calendar/DayCellView.d.ts +13 -0
  1779. package/components/Calendar/DayCellView.styles/DayCellView.styles.js +29 -0
  1780. package/components/Calendar/DayCellView.styles/DayCellView.styles.js.map +1 -0
  1781. package/components/Calendar/DayCellView.styles/package.json +6 -0
  1782. package/components/Calendar/DayCellView.styles.d.ts +12 -0
  1783. package/components/Calendar/DayCellViewModel/DayCellViewModel.js +14 -0
  1784. package/components/Calendar/DayCellViewModel/DayCellViewModel.js.map +1 -0
  1785. package/components/Calendar/DayCellViewModel/package.json +6 -0
  1786. package/components/Calendar/Month/Month.js +211 -0
  1787. package/components/Calendar/Month/Month.js.map +1 -0
  1788. package/components/Calendar/Month/package.json +6 -0
  1789. package/components/Calendar/Month.d.ts +33 -0
  1790. package/components/Calendar/MonthView/MonthView.js +116 -0
  1791. package/components/Calendar/MonthView/MonthView.js.map +1 -0
  1792. package/components/Calendar/MonthView/package.json +6 -0
  1793. package/components/Calendar/MonthView.d.ts +21 -0
  1794. package/components/Calendar/MonthView.styles/MonthView.styles.js +29 -0
  1795. package/components/Calendar/MonthView.styles/MonthView.styles.js.map +1 -0
  1796. package/components/Calendar/MonthView.styles/package.json +6 -0
  1797. package/components/Calendar/MonthView.styles.d.ts +10 -0
  1798. package/components/Calendar/MonthViewModel/MonthViewModel.js +79 -0
  1799. package/components/Calendar/MonthViewModel/MonthViewModel.js.map +1 -0
  1800. package/components/Calendar/MonthViewModel/package.json +6 -0
  1801. package/components/Calendar/MonthViewModel.d.ts +14 -0
  1802. package/components/Calendar/config/config.js +16 -0
  1803. package/components/Calendar/config/config.js.map +1 -0
  1804. package/components/Calendar/config/package.json +6 -0
  1805. package/components/Calendar/config.d.ts +2 -0
  1806. package/components/Calendar/index/index.js.map +1 -0
  1807. package/components/Calendar/index/package.json +6 -0
  1808. package/components/Calendar/locale/index/index.js +8 -0
  1809. package/components/Calendar/locale/index/index.js.map +1 -0
  1810. package/components/Calendar/locale/index/package.json +6 -0
  1811. package/components/Calendar/locale/index.d.ts +4 -0
  1812. package/components/Calendar/locale/locales/en/en.js +4 -0
  1813. package/components/Calendar/locale/locales/en/en.js.map +1 -0
  1814. package/components/Calendar/locale/locales/en/package.json +6 -0
  1815. package/components/Calendar/locale/locales/en.d.ts +2 -0
  1816. package/components/Calendar/locale/locales/ru/package.json +6 -0
  1817. package/components/Calendar/locale/locales/ru/ru.js +4 -0
  1818. package/components/Calendar/locale/locales/ru/ru.js.map +1 -0
  1819. package/components/Calendar/locale/locales/ru.d.ts +2 -0
  1820. package/components/Calendar/locale/package.json +6 -0
  1821. package/components/Calendar/locale/types/package.json +6 -0
  1822. package/components/Calendar/locale/types/types.js +1 -0
  1823. package/components/Calendar/locale/types/types.js.map +1 -0
  1824. package/components/Calendar/locale/types.d.ts +7 -0
  1825. package/components/Calendar/package.json +6 -0
  1826. package/components/Center/Center/Center.js +49 -29
  1827. package/components/Center/Center/Center.js.map +1 -1
  1828. package/components/Center/Center.d.ts +17 -13
  1829. package/components/Center/Center.md +26 -5
  1830. package/components/Center/Center.styles/Center.styles.js +8 -57
  1831. package/components/Center/Center.styles/Center.styles.js.map +1 -1
  1832. package/components/Center/Center.styles.d.ts +1 -1
  1833. package/components/Center/index/index.js.map +1 -1
  1834. package/components/Checkbox/Checkbox/Checkbox.js +238 -108
  1835. package/components/Checkbox/Checkbox/Checkbox.js.map +1 -1
  1836. package/components/Checkbox/Checkbox.d.ts +62 -20
  1837. package/components/Checkbox/Checkbox.md +170 -63
  1838. package/components/Checkbox/Checkbox.mixins/Checkbox.mixins.js +16 -0
  1839. package/components/Checkbox/Checkbox.mixins/Checkbox.mixins.js.map +1 -0
  1840. package/components/Checkbox/Checkbox.mixins/package.json +6 -0
  1841. package/components/Checkbox/Checkbox.mixins.d.ts +2 -0
  1842. package/components/Checkbox/Checkbox.styles/Checkbox.styles.js +61 -176
  1843. package/components/Checkbox/Checkbox.styles/Checkbox.styles.js.map +1 -1
  1844. package/components/Checkbox/Checkbox.styles.d.ts +25 -11
  1845. package/components/Checkbox/CheckedIcon/CheckedIcon.js +18 -0
  1846. package/components/Checkbox/CheckedIcon/CheckedIcon.js.map +1 -0
  1847. package/components/Checkbox/CheckedIcon/package.json +6 -0
  1848. package/components/Checkbox/CheckedIcon.d.ts +3 -0
  1849. package/components/Checkbox/IndeterminateIcon/IndeterminateIcon.js +21 -0
  1850. package/components/Checkbox/IndeterminateIcon/IndeterminateIcon.js.map +1 -0
  1851. package/components/Checkbox/IndeterminateIcon/package.json +6 -0
  1852. package/components/Checkbox/IndeterminateIcon.d.ts +3 -0
  1853. package/components/Checkbox/index/index.js.map +1 -1
  1854. package/components/ComboBox/ComboBox/ComboBox.js +49 -41
  1855. package/components/ComboBox/ComboBox/ComboBox.js.map +1 -1
  1856. package/components/ComboBox/ComboBox.d.ts +51 -21
  1857. package/components/ComboBox/ComboBox.md +574 -432
  1858. package/components/ComboBox/index/index.js.map +1 -1
  1859. package/components/CurrencyInput/CurrencyHelper/CurrencyHelper.js +50 -22
  1860. package/components/CurrencyInput/CurrencyHelper/CurrencyHelper.js.map +1 -1
  1861. package/components/CurrencyInput/CurrencyHelper.d.ts +2 -0
  1862. package/components/CurrencyInput/CurrencyInput/CurrencyInput.js +176 -84
  1863. package/components/CurrencyInput/CurrencyInput/CurrencyInput.js.map +1 -1
  1864. package/components/CurrencyInput/CurrencyInput.d.ts +23 -16
  1865. package/components/CurrencyInput/CurrencyInput.md +37 -20
  1866. package/components/CurrencyInput/CurrencyInputHelper/CurrencyInputHelper.js +8 -4
  1867. package/components/CurrencyInput/CurrencyInputHelper/CurrencyInputHelper.js.map +1 -1
  1868. package/components/CurrencyInput/CurrencyInputKeyboardActions/CurrencyInputKeyboardActions.js +4 -2
  1869. package/components/CurrencyInput/CurrencyInputKeyboardActions/CurrencyInputKeyboardActions.js.map +1 -1
  1870. package/components/CurrencyInput/CurrencyInputKeyboardActions.d.ts +3 -1
  1871. package/components/CurrencyInput/CursorHelper/CursorHelper.js +61 -27
  1872. package/components/CurrencyInput/CursorHelper/CursorHelper.js.map +1 -1
  1873. package/components/CurrencyInput/SelectionHelper/SelectionHelper.js.map +1 -1
  1874. package/components/CurrencyInput/constants/constants.js +4 -1
  1875. package/components/CurrencyInput/constants/constants.js.map +1 -1
  1876. package/components/CurrencyInput/constants.d.ts +3 -0
  1877. package/components/CurrencyInput/index/index.js.map +1 -1
  1878. package/components/CurrencyLabel/CurrencyLabel/CurrencyLabel.js +29 -14
  1879. package/components/CurrencyLabel/CurrencyLabel/CurrencyLabel.js.map +1 -1
  1880. package/components/CurrencyLabel/CurrencyLabel.d.ts +11 -11
  1881. package/components/CurrencyLabel/CurrencyLabel.md +29 -23
  1882. package/components/CurrencyLabel/index/index.js.map +1 -1
  1883. package/components/DateInput/CalendarIcon/CalendarIcon.js +17 -0
  1884. package/components/DateInput/CalendarIcon/CalendarIcon.js.map +1 -0
  1885. package/components/DateInput/CalendarIcon/package.json +6 -0
  1886. package/components/DateInput/CalendarIcon.d.ts +3 -0
  1887. package/components/DateInput/DateFragmentsView/DateFragmentsView.js +29 -18
  1888. package/components/DateInput/DateFragmentsView/DateFragmentsView.js.map +1 -1
  1889. package/components/DateInput/DateFragmentsView.d.ts +2 -2
  1890. package/components/DateInput/DateFragmentsView.styles/DateFragmentsView.styles.js +7 -46
  1891. package/components/DateInput/DateFragmentsView.styles/DateFragmentsView.styles.js.map +1 -1
  1892. package/components/DateInput/DateFragmentsView.styles.d.ts +5 -4
  1893. package/components/DateInput/DateInput/DateInput.js +88 -34
  1894. package/components/DateInput/DateInput/DateInput.js.map +1 -1
  1895. package/components/DateInput/DateInput.d.ts +25 -14
  1896. package/components/DateInput/DateInput.md +106 -104
  1897. package/components/DateInput/DateInput.styles/DateInput.styles.js +13 -55
  1898. package/components/DateInput/DateInput.styles/DateInput.styles.js.map +1 -1
  1899. package/components/DateInput/DateInput.styles.d.ts +9 -6
  1900. package/components/DateInput/ViewDateInputValidateChecks/ViewDateInputValidateChecks.js +11 -13
  1901. package/components/DateInput/ViewDateInputValidateChecks/ViewDateInputValidateChecks.js.map +1 -1
  1902. package/components/DateInput/helpers/DateInputKeyboardActions/DateInputKeyboardActions.js +0 -1
  1903. package/components/DateInput/helpers/DateInputKeyboardActions/DateInputKeyboardActions.js.map +1 -1
  1904. package/components/DateInput/helpers/InternalDateMediator/InternalDateMediator.js +17 -13
  1905. package/components/DateInput/helpers/InternalDateMediator/InternalDateMediator.js.map +1 -1
  1906. package/components/DateInput/helpers/InternalDateMediator.d.ts +3 -3
  1907. package/components/DateInput/helpers/SelectionHelpers/SelectionHelpers.js +3 -3
  1908. package/components/DateInput/helpers/SelectionHelpers/SelectionHelpers.js.map +1 -1
  1909. package/components/DateInput/helpers/inputNumber/inputNumber.js +53 -16
  1910. package/components/DateInput/helpers/inputNumber/inputNumber.js.map +1 -1
  1911. package/components/DateInput/helpers/inputNumber.d.ts +3 -3
  1912. package/components/DateInput/index/index.js.map +1 -1
  1913. package/components/DatePicker/DatePicker/DatePicker.js +229 -121
  1914. package/components/DatePicker/DatePicker/DatePicker.js.map +1 -1
  1915. package/components/DatePicker/DatePicker.d.ts +51 -31
  1916. package/components/DatePicker/DatePicker.md +340 -310
  1917. package/components/DatePicker/DatePicker.styles/DatePicker.styles.js +10 -13
  1918. package/components/DatePicker/DatePicker.styles/DatePicker.styles.js.map +1 -1
  1919. package/components/DatePicker/DatePicker.styles.d.ts +4 -1
  1920. package/components/DatePicker/DatePickerHelpers/DatePickerHelpers.js.map +1 -1
  1921. package/components/DatePicker/DatePickerHelpers.d.ts +1 -1
  1922. package/components/DatePicker/Picker/Picker.js +76 -73
  1923. package/components/DatePicker/Picker/Picker.js.map +1 -1
  1924. package/components/DatePicker/Picker.d.ts +8 -9
  1925. package/components/DatePicker/index/index.js.map +1 -1
  1926. package/components/DatePicker/locale/index/index.js.map +1 -1
  1927. package/components/DatePicker/locale/locales/en/en.js +4 -2
  1928. package/components/DatePicker/locale/locales/en/en.js.map +1 -1
  1929. package/components/DatePicker/locale/locales/ru/ru.js +4 -2
  1930. package/components/DatePicker/locale/locales/ru/ru.js.map +1 -1
  1931. package/components/DatePicker/locale/types/types.js +1 -0
  1932. package/components/DatePicker/locale/types.d.ts +4 -2
  1933. package/components/Dropdown/Dropdown/Dropdown.js +86 -61
  1934. package/components/Dropdown/Dropdown/Dropdown.js.map +1 -1
  1935. package/components/Dropdown/Dropdown.d.ts +16 -6
  1936. package/components/Dropdown/Dropdown.md +44 -12
  1937. package/components/Dropdown/getDropdownTheme/getDropdownTheme.js +33 -0
  1938. package/components/Dropdown/getDropdownTheme/getDropdownTheme.js.map +1 -0
  1939. package/components/Dropdown/getDropdownTheme/package.json +6 -0
  1940. package/components/Dropdown/getDropdownTheme.d.ts +2 -0
  1941. package/components/Dropdown/index/index.js.map +1 -1
  1942. package/components/DropdownMenu/DropdownMenu/DropdownMenu.js +46 -34
  1943. package/components/DropdownMenu/DropdownMenu/DropdownMenu.js.map +1 -1
  1944. package/components/DropdownMenu/DropdownMenu.d.ts +32 -16
  1945. package/components/DropdownMenu/DropdownMenu.md +249 -73
  1946. package/components/DropdownMenu/getDropdownMenuTheme/getDropdownMenuTheme.js +10 -0
  1947. package/components/DropdownMenu/getDropdownMenuTheme/getDropdownMenuTheme.js.map +1 -0
  1948. package/components/DropdownMenu/getDropdownMenuTheme/package.json +6 -0
  1949. package/components/DropdownMenu/getDropdownMenuTheme.d.ts +2 -0
  1950. package/components/DropdownMenu/index/index.js.map +1 -1
  1951. package/components/FileUploader/FileUploader/FileUploader.js +338 -0
  1952. package/components/FileUploader/FileUploader/FileUploader.js.map +1 -0
  1953. package/components/FileUploader/FileUploader/package.json +6 -0
  1954. package/components/FileUploader/FileUploader.d.ts +61 -0
  1955. package/components/FileUploader/FileUploader.md +79 -0
  1956. package/components/FileUploader/FileUploader.mixins/FileUploader.mixins.js +8 -0
  1957. package/components/FileUploader/FileUploader.mixins/FileUploader.mixins.js.map +1 -0
  1958. package/components/FileUploader/FileUploader.mixins/package.json +6 -0
  1959. package/components/FileUploader/FileUploader.mixins.d.ts +1 -0
  1960. package/components/FileUploader/FileUploader.styles/FileUploader.styles.js +109 -0
  1961. package/components/FileUploader/FileUploader.styles/FileUploader.styles.js.map +1 -0
  1962. package/components/FileUploader/FileUploader.styles/package.json +6 -0
  1963. package/components/FileUploader/FileUploader.styles.d.ts +38 -0
  1964. package/components/FileUploader/UploadIcon/UploadIcon.js +17 -0
  1965. package/components/FileUploader/UploadIcon/UploadIcon.js.map +1 -0
  1966. package/components/FileUploader/UploadIcon/package.json +6 -0
  1967. package/components/FileUploader/UploadIcon.d.ts +3 -0
  1968. package/components/FileUploader/index/index.js +3 -0
  1969. package/components/FileUploader/index/index.js.map +1 -0
  1970. package/components/FileUploader/index/package.json +6 -0
  1971. package/components/FileUploader/index.d.ts +5 -0
  1972. package/components/FileUploader/locale/index/index.js +8 -0
  1973. package/components/FileUploader/locale/index/index.js.map +1 -0
  1974. package/components/FileUploader/locale/index/package.json +6 -0
  1975. package/components/FileUploader/locale/index.d.ts +4 -0
  1976. package/components/FileUploader/locale/locales/en/en.js +6 -0
  1977. package/components/FileUploader/locale/locales/en/en.js.map +1 -0
  1978. package/components/FileUploader/locale/locales/en/package.json +6 -0
  1979. package/components/FileUploader/locale/locales/en.d.ts +2 -0
  1980. package/components/FileUploader/locale/locales/ru/package.json +6 -0
  1981. package/components/FileUploader/locale/locales/ru/ru.js +6 -0
  1982. package/components/FileUploader/locale/locales/ru/ru.js.map +1 -0
  1983. package/components/FileUploader/locale/locales/ru.d.ts +2 -0
  1984. package/components/FileUploader/locale/package.json +6 -0
  1985. package/components/FileUploader/locale/types/package.json +6 -0
  1986. package/components/FileUploader/locale/types/types.js +1 -0
  1987. package/components/FileUploader/locale/types/types.js.map +1 -0
  1988. package/components/FileUploader/locale/types.d.ts +6 -0
  1989. package/components/FileUploader/package.json +6 -0
  1990. package/components/FxInput/FxInput/FxInput.js +95 -51
  1991. package/components/FxInput/FxInput/FxInput.js.map +1 -1
  1992. package/components/FxInput/FxInput.d.ts +18 -8
  1993. package/components/FxInput/FxInput.md +29 -13
  1994. package/components/FxInput/FxInputRestoreBtn/FxInputRestoreBtn.js +64 -0
  1995. package/components/FxInput/FxInputRestoreBtn/FxInputRestoreBtn.js.map +1 -0
  1996. package/components/FxInput/FxInputRestoreBtn/package.json +6 -0
  1997. package/components/FxInput/FxInputRestoreBtn.d.ts +6 -0
  1998. package/components/FxInput/MathFunctionIcon/MathFunctionIcon.js +17 -0
  1999. package/components/FxInput/MathFunctionIcon/MathFunctionIcon.js.map +1 -0
  2000. package/components/FxInput/MathFunctionIcon/package.json +6 -0
  2001. package/components/FxInput/MathFunctionIcon.d.ts +3 -0
  2002. package/components/FxInput/UndoIcon/UndoIcon.js +17 -0
  2003. package/components/FxInput/UndoIcon/UndoIcon.js.map +1 -0
  2004. package/components/FxInput/UndoIcon/package.json +6 -0
  2005. package/components/FxInput/UndoIcon.d.ts +3 -0
  2006. package/components/FxInput/index/index.js.map +1 -1
  2007. package/components/Gapped/Gapped/Gapped.js +71 -50
  2008. package/components/Gapped/Gapped/Gapped.js.map +1 -1
  2009. package/components/Gapped/Gapped.d.ts +18 -12
  2010. package/components/Gapped/Gapped.md +43 -43
  2011. package/components/Gapped/index/index.js.map +1 -1
  2012. package/components/GlobalLoader/GlobalLoader/GlobalLoader.js +246 -0
  2013. package/components/GlobalLoader/GlobalLoader/GlobalLoader.js.map +1 -0
  2014. package/components/GlobalLoader/GlobalLoader/package.json +6 -0
  2015. package/components/GlobalLoader/GlobalLoader.d.ts +106 -0
  2016. package/components/GlobalLoader/GlobalLoader.md +98 -0
  2017. package/components/GlobalLoader/GlobalLoaderView/GlobalLoaderView.js +77 -0
  2018. package/components/GlobalLoader/GlobalLoaderView/GlobalLoaderView.js.map +1 -0
  2019. package/components/GlobalLoader/GlobalLoaderView/package.json +6 -0
  2020. package/components/GlobalLoader/GlobalLoaderView.d.ts +14 -0
  2021. package/components/GlobalLoader/GlobalLoaderView.styles/GlobalLoaderView.styles.js +53 -0
  2022. package/components/GlobalLoader/GlobalLoaderView.styles/GlobalLoaderView.styles.js.map +1 -0
  2023. package/components/GlobalLoader/GlobalLoaderView.styles/package.json +6 -0
  2024. package/components/GlobalLoader/GlobalLoaderView.styles.d.ts +16 -0
  2025. package/components/GlobalLoader/index/index.js +1 -0
  2026. package/components/GlobalLoader/index/index.js.map +1 -0
  2027. package/components/GlobalLoader/index/package.json +6 -0
  2028. package/components/GlobalLoader/index.d.ts +1 -0
  2029. package/components/GlobalLoader/package.json +6 -0
  2030. package/components/GlobalLoader/useParams/package.json +6 -0
  2031. package/components/GlobalLoader/useParams/useParams.js +51 -0
  2032. package/components/GlobalLoader/useParams/useParams.js.map +1 -0
  2033. package/components/GlobalLoader/useParams.d.ts +22 -0
  2034. package/components/Group/Group/Group.js +110 -47
  2035. package/components/Group/Group/Group.js.map +1 -1
  2036. package/components/Group/Group.d.ts +9 -1
  2037. package/components/Group/Group.md +18 -26
  2038. package/components/Group/Group.styles/Group.styles.js +9 -68
  2039. package/components/Group/Group.styles/Group.styles.js.map +1 -1
  2040. package/components/Group/Group.styles.d.ts +1 -1
  2041. package/components/Group/index/index.js.map +1 -1
  2042. package/components/Hint/Hint/Hint.js +95 -39
  2043. package/components/Hint/Hint/Hint.js.map +1 -1
  2044. package/components/Hint/Hint.d.ts +58 -14
  2045. package/components/Hint/Hint.md +85 -3
  2046. package/components/Hint/Hint.styles/Hint.styles.js +7 -26
  2047. package/components/Hint/Hint.styles/Hint.styles.js.map +1 -1
  2048. package/components/Hint/Hint.styles.d.ts +4 -3
  2049. package/components/Hint/index/index.js.map +1 -1
  2050. package/components/Input/Input/Input.js +297 -166
  2051. package/components/Input/Input/Input.js.map +1 -1
  2052. package/components/Input/Input.d.ts +53 -17
  2053. package/components/Input/Input.md +78 -13
  2054. package/components/Input/Input.styles/Input.styles.js +83 -302
  2055. package/components/Input/Input.styles/Input.styles.js.map +1 -1
  2056. package/components/Input/Input.styles.d.ts +39 -23
  2057. package/components/Input/InputLayout/InputLayout/InputLayout.js +36 -0
  2058. package/components/Input/InputLayout/InputLayout/InputLayout.js.map +1 -0
  2059. package/components/Input/InputLayout/InputLayout/package.json +6 -0
  2060. package/components/Input/InputLayout/InputLayout.d.ts +11 -0
  2061. package/components/Input/InputLayout/InputLayout.styles/InputLayout.styles.js +32 -0
  2062. package/components/Input/InputLayout/InputLayout.styles/InputLayout.styles.js.map +1 -0
  2063. package/components/Input/InputLayout/InputLayout.styles/package.json +6 -0
  2064. package/components/Input/InputLayout/InputLayout.styles.d.ts +11 -0
  2065. package/components/Input/InputLayout/InputLayoutAside/InputLayoutAside.js +27 -0
  2066. package/components/Input/InputLayout/InputLayoutAside/InputLayoutAside.js.map +1 -0
  2067. package/components/Input/InputLayout/InputLayoutAside/package.json +6 -0
  2068. package/components/Input/InputLayout/InputLayoutAside.d.ts +8 -0
  2069. package/components/Input/InputLayout/InputLayoutAsideIcon/InputLayoutAsideIcon.js +54 -0
  2070. package/components/Input/InputLayout/InputLayoutAsideIcon/InputLayoutAsideIcon.js.map +1 -0
  2071. package/components/Input/InputLayout/InputLayoutAsideIcon/package.json +6 -0
  2072. package/components/Input/InputLayout/InputLayoutAsideIcon.d.ts +7 -0
  2073. package/components/Input/InputLayout/InputLayoutAsideText/InputLayoutAsideText.js +18 -0
  2074. package/components/Input/InputLayout/InputLayoutAsideText/InputLayoutAsideText.js.map +1 -0
  2075. package/components/Input/InputLayout/InputLayoutAsideText/package.json +6 -0
  2076. package/components/Input/InputLayout/InputLayoutAsideText.d.ts +6 -0
  2077. package/components/Input/InputLayout/InputLayoutContext/InputLayoutContext.js +7 -0
  2078. package/components/Input/InputLayout/InputLayoutContext/InputLayoutContext.js.map +1 -0
  2079. package/components/Input/InputLayout/InputLayoutContext/package.json +6 -0
  2080. package/components/Input/InputLayout/InputLayoutContext.d.ts +9 -0
  2081. package/components/Input/InputLayout/PolyfillPlaceholder/PolyfillPlaceholder.js +33 -0
  2082. package/components/Input/InputLayout/PolyfillPlaceholder/PolyfillPlaceholder.js.map +1 -0
  2083. package/components/Input/InputLayout/PolyfillPlaceholder/package.json +6 -0
  2084. package/components/Input/InputLayout/PolyfillPlaceholder.d.ts +10 -0
  2085. package/components/Input/index/index.js.map +1 -1
  2086. package/components/Kebab/Kebab/Kebab.js +105 -81
  2087. package/components/Kebab/Kebab/Kebab.js.map +1 -1
  2088. package/components/Kebab/Kebab.d.ts +31 -30
  2089. package/components/Kebab/Kebab.md +306 -45
  2090. package/components/Kebab/Kebab.styles/Kebab.styles.js +32 -96
  2091. package/components/Kebab/Kebab.styles/Kebab.styles.js.map +1 -1
  2092. package/components/Kebab/Kebab.styles.d.ts +14 -8
  2093. package/components/Kebab/KebabIcon/KebabIcon.js +17 -0
  2094. package/components/Kebab/KebabIcon/KebabIcon.js.map +1 -0
  2095. package/components/Kebab/KebabIcon/package.json +6 -0
  2096. package/components/Kebab/KebabIcon.d.ts +3 -0
  2097. package/components/Kebab/__stories__/Kebab.items/Kebab.items.js.map +1 -1
  2098. package/components/Kebab/index/index.js.map +1 -1
  2099. package/components/Link/Link/Link.js +119 -85
  2100. package/components/Link/Link/Link.js.map +1 -1
  2101. package/components/Link/Link.d.ts +64 -25
  2102. package/components/Link/Link.md +88 -11
  2103. package/components/Link/Link.mixins/Link.mixins.js +6 -3
  2104. package/components/Link/Link.mixins/Link.mixins.js.map +1 -1
  2105. package/components/Link/Link.mixins.d.ts +2 -1
  2106. package/components/Link/Link.styles/Link.styles.js +66 -127
  2107. package/components/Link/Link.styles/Link.styles.js.map +1 -1
  2108. package/components/Link/Link.styles.d.ts +26 -11
  2109. package/components/Link/index/index.js.map +1 -1
  2110. package/components/Loader/Loader/Loader.js +243 -97
  2111. package/components/Loader/Loader/Loader.js.map +1 -1
  2112. package/components/Loader/Loader.d.ts +63 -23
  2113. package/components/Loader/Loader.md +32 -25
  2114. package/components/Loader/Loader.styles/Loader.styles.js +9 -71
  2115. package/components/Loader/Loader.styles/Loader.styles.js.map +1 -1
  2116. package/components/Loader/Loader.styles.d.ts +4 -4
  2117. package/components/Loader/__stories__/LoaderAndButton/LoaderAndButton.js +47 -0
  2118. package/components/Loader/__stories__/LoaderAndButton/LoaderAndButton.js.map +1 -0
  2119. package/components/Loader/__stories__/LoaderAndButton/package.json +6 -0
  2120. package/components/Loader/index/index.js.map +1 -1
  2121. package/components/MenuFooter/MenuFooter/MenuFooter.js +74 -0
  2122. package/components/MenuFooter/MenuFooter/MenuFooter.js.map +1 -0
  2123. package/components/MenuFooter/MenuFooter/package.json +6 -0
  2124. package/components/MenuFooter/MenuFooter.d.ts +30 -0
  2125. package/components/MenuFooter/MenuFooter.md +27 -0
  2126. package/components/MenuFooter/MenuFooter.mixins/MenuFooter.mixins.js +13 -0
  2127. package/components/MenuFooter/MenuFooter.mixins/MenuFooter.mixins.js.map +1 -0
  2128. package/components/MenuFooter/MenuFooter.mixins/package.json +6 -0
  2129. package/components/MenuFooter/MenuFooter.mixins.d.ts +2 -0
  2130. package/components/MenuFooter/MenuFooter.styles/MenuFooter.styles.js +29 -0
  2131. package/components/MenuFooter/MenuFooter.styles/MenuFooter.styles.js.map +1 -0
  2132. package/components/MenuFooter/MenuFooter.styles/package.json +6 -0
  2133. package/components/MenuFooter/MenuFooter.styles.d.ts +10 -0
  2134. package/components/MenuFooter/index/index.js +1 -0
  2135. package/components/MenuFooter/index/index.js.map +1 -0
  2136. package/components/MenuFooter/index/package.json +6 -0
  2137. package/components/MenuFooter/index.d.ts +1 -0
  2138. package/components/MenuFooter/package.json +6 -0
  2139. package/components/MenuHeader/MenuHeader/MenuHeader.js +58 -11
  2140. package/components/MenuHeader/MenuHeader/MenuHeader.js.map +1 -1
  2141. package/components/MenuHeader/MenuHeader.d.ts +19 -4
  2142. package/components/MenuHeader/MenuHeader.md +35 -0
  2143. package/components/MenuHeader/MenuHeader.mixins/MenuHeader.mixins.js +13 -0
  2144. package/components/MenuHeader/MenuHeader.mixins/MenuHeader.mixins.js.map +1 -0
  2145. package/components/MenuHeader/MenuHeader.mixins/package.json +6 -0
  2146. package/components/MenuHeader/MenuHeader.mixins.d.ts +2 -0
  2147. package/components/MenuHeader/MenuHeader.styles/MenuHeader.styles.js +23 -26
  2148. package/components/MenuHeader/MenuHeader.styles/MenuHeader.styles.js.map +1 -1
  2149. package/components/MenuHeader/MenuHeader.styles.d.ts +9 -3
  2150. package/components/MenuHeader/index/index.js.map +1 -1
  2151. package/components/MenuItem/MenuItem/MenuItem.js +158 -71
  2152. package/components/MenuItem/MenuItem/MenuItem.js.map +1 -1
  2153. package/components/MenuItem/MenuItem.d.ts +86 -13
  2154. package/components/MenuItem/MenuItem.md +121 -7
  2155. package/components/MenuItem/MenuItem.mixins/MenuItem.mixins.js +24 -0
  2156. package/components/MenuItem/MenuItem.mixins/MenuItem.mixins.js.map +1 -0
  2157. package/components/MenuItem/MenuItem.mixins/package.json +6 -0
  2158. package/components/MenuItem/MenuItem.mixins.d.ts +3 -0
  2159. package/components/MenuItem/MenuItem.styles/MenuItem.styles.js +63 -117
  2160. package/components/MenuItem/MenuItem.styles/MenuItem.styles.js.map +1 -1
  2161. package/components/MenuItem/MenuItem.styles.d.ts +25 -10
  2162. package/components/MenuItem/index/index.js.map +1 -1
  2163. package/components/MenuSeparator/MenuSeparator/MenuSeparator.js +22 -8
  2164. package/components/MenuSeparator/MenuSeparator/MenuSeparator.js.map +1 -1
  2165. package/components/MenuSeparator/MenuSeparator.d.ts +9 -3
  2166. package/components/MenuSeparator/MenuSeparator.md +14 -0
  2167. package/components/MenuSeparator/MenuSeparator.styles/MenuSeparator.styles.js +7 -13
  2168. package/components/MenuSeparator/MenuSeparator.styles/MenuSeparator.styles.js.map +1 -1
  2169. package/components/MenuSeparator/MenuSeparator.styles.d.ts +4 -2
  2170. package/components/MenuSeparator/index/index.js.map +1 -1
  2171. package/components/Modal/Modal/Modal.js +146 -92
  2172. package/components/Modal/Modal/Modal.js.map +1 -1
  2173. package/components/Modal/Modal.d.ts +21 -9
  2174. package/components/Modal/Modal.md +54 -37
  2175. package/components/Modal/Modal.styles/Modal.styles.js +98 -234
  2176. package/components/Modal/Modal.styles/Modal.styles.js.map +1 -1
  2177. package/components/Modal/Modal.styles.d.ts +38 -19
  2178. package/components/Modal/ModalBody/ModalBody.js +56 -23
  2179. package/components/Modal/ModalBody/ModalBody.js.map +1 -1
  2180. package/components/Modal/ModalBody.d.ts +13 -1
  2181. package/components/Modal/ModalClose/ModalClose.js +52 -11
  2182. package/components/Modal/ModalClose/ModalClose.js.map +1 -1
  2183. package/components/Modal/ModalClose.d.ts +1 -2
  2184. package/components/Modal/ModalContext/ModalContext.js +2 -1
  2185. package/components/Modal/ModalContext/ModalContext.js.map +1 -1
  2186. package/components/Modal/ModalContext.d.ts +5 -1
  2187. package/components/Modal/ModalFooter/ModalFooter.js +42 -41
  2188. package/components/Modal/ModalFooter/ModalFooter.js.map +1 -1
  2189. package/components/Modal/ModalFooter.d.ts +19 -1
  2190. package/components/Modal/ModalHeader/ModalHeader.js +43 -47
  2191. package/components/Modal/ModalHeader/ModalHeader.js.map +1 -1
  2192. package/components/Modal/ModalHeader.d.ts +6 -2
  2193. package/components/Modal/ModalSeparator/ModalSeparator.js +13 -0
  2194. package/components/Modal/ModalSeparator/ModalSeparator.js.map +1 -0
  2195. package/components/Modal/ModalSeparator/package.json +6 -0
  2196. package/components/Modal/ModalSeparator.d.ts +5 -0
  2197. package/components/Modal/getModalBodyTheme/getModalBodyTheme.js +6 -0
  2198. package/components/Modal/getModalBodyTheme/getModalBodyTheme.js.map +1 -0
  2199. package/components/Modal/getModalBodyTheme/package.json +6 -0
  2200. package/components/Modal/getModalBodyTheme.d.ts +2 -0
  2201. package/components/Modal/getModalTheme/getModalTheme.js +6 -0
  2202. package/components/Modal/getModalTheme/getModalTheme.js.map +1 -0
  2203. package/components/Modal/getModalTheme/package.json +6 -0
  2204. package/components/Modal/getModalTheme.d.ts +2 -0
  2205. package/components/Modal/index/index.js.map +1 -1
  2206. package/components/Modal/locale/index/index.js +8 -0
  2207. package/components/Modal/locale/index/index.js.map +1 -0
  2208. package/components/Modal/locale/index/package.json +6 -0
  2209. package/components/Modal/locale/index.d.ts +4 -0
  2210. package/components/Modal/locale/locales/en/en.js +3 -0
  2211. package/components/Modal/locale/locales/en/en.js.map +1 -0
  2212. package/components/Modal/locale/locales/en/package.json +6 -0
  2213. package/components/Modal/locale/locales/en.d.ts +2 -0
  2214. package/components/Modal/locale/locales/ru/package.json +6 -0
  2215. package/components/Modal/locale/locales/ru/ru.js +3 -0
  2216. package/components/Modal/locale/locales/ru/ru.js.map +1 -0
  2217. package/components/Modal/locale/locales/ru.d.ts +2 -0
  2218. package/components/Modal/locale/package.json +6 -0
  2219. package/components/Modal/locale/types/package.json +6 -0
  2220. package/components/Modal/locale/types/types.js +1 -0
  2221. package/components/Modal/locale/types/types.js.map +1 -0
  2222. package/components/Modal/locale/types.d.ts +3 -0
  2223. package/components/Paging/ForwardIcon/ForwardIcon.js +17 -0
  2224. package/components/Paging/ForwardIcon/ForwardIcon.js.map +1 -0
  2225. package/components/Paging/ForwardIcon/package.json +6 -0
  2226. package/components/Paging/ForwardIcon.d.ts +3 -0
  2227. package/components/Paging/NavigationHelper/NavigationHelper.js.map +1 -1
  2228. package/components/Paging/NavigationHelper.d.ts +1 -1
  2229. package/components/Paging/Paging/Paging.js +119 -92
  2230. package/components/Paging/Paging/Paging.js.map +1 -1
  2231. package/components/Paging/Paging.d.ts +27 -11
  2232. package/components/Paging/Paging.md +56 -43
  2233. package/components/Paging/Paging.styles/Paging.styles.js +34 -151
  2234. package/components/Paging/Paging.styles/Paging.styles.js.map +1 -1
  2235. package/components/Paging/Paging.styles.d.ts +16 -11
  2236. package/components/Paging/PagingDefaultComponent/PagingDefaultComponent.js +19 -0
  2237. package/components/Paging/PagingDefaultComponent/PagingDefaultComponent.js.map +1 -0
  2238. package/components/Paging/PagingDefaultComponent/package.json +6 -0
  2239. package/components/Paging/PagingDefaultComponent.d.ts +9 -0
  2240. package/components/Paging/PagingHelper/PagingHelper.js.map +1 -1
  2241. package/components/Paging/index/index.js.map +1 -1
  2242. package/components/Paging/locale/index/index.js.map +1 -1
  2243. package/components/Paging/locale/locales/en/en.js.map +1 -1
  2244. package/components/Paging/locale/locales/ru/ru.js.map +1 -1
  2245. package/components/Paging/locale/types/types.js +1 -0
  2246. package/components/PasswordInput/ClosedIcon/ClosedIcon.js +17 -0
  2247. package/components/PasswordInput/ClosedIcon/ClosedIcon.js.map +1 -0
  2248. package/components/PasswordInput/ClosedIcon/package.json +6 -0
  2249. package/components/PasswordInput/ClosedIcon.d.ts +3 -0
  2250. package/components/PasswordInput/OpenedIcon/OpenedIcon.js +17 -0
  2251. package/components/PasswordInput/OpenedIcon/OpenedIcon.js.map +1 -0
  2252. package/components/PasswordInput/OpenedIcon/package.json +6 -0
  2253. package/components/PasswordInput/OpenedIcon.d.ts +3 -0
  2254. package/components/PasswordInput/PasswordInput/PasswordInput.js +119 -58
  2255. package/components/PasswordInput/PasswordInput/PasswordInput.js.map +1 -1
  2256. package/components/PasswordInput/PasswordInput.d.ts +22 -9
  2257. package/components/PasswordInput/PasswordInput.md +28 -9
  2258. package/components/PasswordInput/PasswordInput.styles/PasswordInput.styles.js +20 -47
  2259. package/components/PasswordInput/PasswordInput.styles/PasswordInput.styles.js.map +1 -1
  2260. package/components/PasswordInput/PasswordInput.styles.d.ts +7 -2
  2261. package/components/PasswordInput/PasswordInputIcon/PasswordInputIcon.js +24 -0
  2262. package/components/PasswordInput/PasswordInputIcon/PasswordInputIcon.js.map +1 -0
  2263. package/components/PasswordInput/PasswordInputIcon/package.json +6 -0
  2264. package/components/PasswordInput/PasswordInputIcon.d.ts +5 -0
  2265. package/components/PasswordInput/index/index.js.map +1 -1
  2266. package/components/PasswordInput/locale/index/index.js +8 -0
  2267. package/components/PasswordInput/locale/index/index.js.map +1 -0
  2268. package/components/PasswordInput/locale/index/package.json +6 -0
  2269. package/components/PasswordInput/locale/index.d.ts +4 -0
  2270. package/components/PasswordInput/locale/locales/en/en.js +4 -0
  2271. package/components/PasswordInput/locale/locales/en/en.js.map +1 -0
  2272. package/components/PasswordInput/locale/locales/en/package.json +6 -0
  2273. package/components/PasswordInput/locale/locales/en.d.ts +2 -0
  2274. package/components/PasswordInput/locale/locales/ru/package.json +6 -0
  2275. package/components/PasswordInput/locale/locales/ru/ru.js +4 -0
  2276. package/components/PasswordInput/locale/locales/ru/ru.js.map +1 -0
  2277. package/components/PasswordInput/locale/locales/ru.d.ts +2 -0
  2278. package/components/PasswordInput/locale/package.json +6 -0
  2279. package/components/PasswordInput/locale/types/package.json +6 -0
  2280. package/components/PasswordInput/locale/types/types.js +1 -0
  2281. package/components/PasswordInput/locale/types/types.js.map +1 -0
  2282. package/components/PasswordInput/locale/types.d.ts +4 -0
  2283. package/components/Radio/Radio/Radio.js +186 -95
  2284. package/components/Radio/Radio/Radio.js.map +1 -1
  2285. package/components/Radio/Radio.d.ts +66 -29
  2286. package/components/Radio/Radio.md +56 -14
  2287. package/components/Radio/Radio.mixins/Radio.mixins.js +28 -0
  2288. package/components/Radio/Radio.mixins/Radio.mixins.js.map +1 -0
  2289. package/components/Radio/Radio.mixins/package.json +6 -0
  2290. package/components/Radio/Radio.mixins.d.ts +5 -0
  2291. package/components/Radio/Radio.styles/Radio.styles.js +62 -141
  2292. package/components/Radio/Radio.styles/Radio.styles.js.map +1 -1
  2293. package/components/Radio/Radio.styles.d.ts +27 -11
  2294. package/components/Radio/index/index.js.map +1 -1
  2295. package/components/RadioGroup/Prevent/Prevent.js +2 -4
  2296. package/components/RadioGroup/Prevent/Prevent.js.map +1 -1
  2297. package/components/RadioGroup/RadioGroup/RadioGroup.js +119 -142
  2298. package/components/RadioGroup/RadioGroup/RadioGroup.js.map +1 -1
  2299. package/components/RadioGroup/RadioGroup.d.ts +73 -98
  2300. package/components/RadioGroup/RadioGroup.md +43 -43
  2301. package/components/RadioGroup/RadioGroup.styles/RadioGroup.styles.js +8 -47
  2302. package/components/RadioGroup/RadioGroup.styles/RadioGroup.styles.js.map +1 -1
  2303. package/components/RadioGroup/RadioGroup.styles.d.ts +3 -2
  2304. package/components/RadioGroup/RadioGroupContext/RadioGroupContext.js +12 -0
  2305. package/components/RadioGroup/RadioGroupContext/RadioGroupContext.js.map +1 -0
  2306. package/components/RadioGroup/RadioGroupContext/package.json +6 -0
  2307. package/components/RadioGroup/RadioGroupContext.d.ts +10 -0
  2308. package/components/RadioGroup/index/index.js.map +1 -1
  2309. package/components/ResponsiveLayout/ResponsiveLayout/ResponsiveLayout.js +21 -0
  2310. package/components/ResponsiveLayout/ResponsiveLayout/ResponsiveLayout.js.map +1 -0
  2311. package/components/ResponsiveLayout/ResponsiveLayout/package.json +6 -0
  2312. package/components/ResponsiveLayout/ResponsiveLayout.d.ts +12 -0
  2313. package/components/ResponsiveLayout/ResponsiveLayout.md +74 -0
  2314. package/components/ResponsiveLayout/ResponsiveLayoutEvents/ResponsiveLayoutEvents.js +99 -0
  2315. package/components/ResponsiveLayout/ResponsiveLayoutEvents/ResponsiveLayoutEvents.js.map +1 -0
  2316. package/components/ResponsiveLayout/ResponsiveLayoutEvents/package.json +6 -0
  2317. package/components/ResponsiveLayout/ResponsiveLayoutEvents.d.ts +11 -0
  2318. package/components/ResponsiveLayout/decorator/decorator.js +61 -0
  2319. package/components/ResponsiveLayout/decorator/decorator.js.map +1 -0
  2320. package/components/ResponsiveLayout/decorator/package.json +6 -0
  2321. package/components/ResponsiveLayout/decorator.d.ts +33 -0
  2322. package/components/ResponsiveLayout/index/index.js +3 -0
  2323. package/components/ResponsiveLayout/index/index.js.map +1 -0
  2324. package/components/ResponsiveLayout/index/package.json +6 -0
  2325. package/components/ResponsiveLayout/index.d.ts +3 -0
  2326. package/components/ResponsiveLayout/package.json +6 -0
  2327. package/components/ResponsiveLayout/types/package.json +6 -0
  2328. package/components/ResponsiveLayout/types/types.js +1 -0
  2329. package/components/ResponsiveLayout/types/types.js.map +1 -0
  2330. package/components/ResponsiveLayout/types.d.ts +11 -0
  2331. package/components/ResponsiveLayout/useResponsiveLayout/package.json +6 -0
  2332. package/components/ResponsiveLayout/useResponsiveLayout/useResponsiveLayout.js +80 -0
  2333. package/components/ResponsiveLayout/useResponsiveLayout/useResponsiveLayout.js.map +1 -0
  2334. package/components/ResponsiveLayout/useResponsiveLayout.d.ts +2 -0
  2335. package/components/ScrollContainer/ScrollBar/ScrollBar.js +312 -0
  2336. package/components/ScrollContainer/ScrollBar/ScrollBar.js.map +1 -0
  2337. package/components/ScrollContainer/ScrollBar/package.json +6 -0
  2338. package/components/ScrollContainer/ScrollBar.d.ts +47 -0
  2339. package/components/ScrollContainer/ScrollContainer/ScrollContainer.js +187 -244
  2340. package/components/ScrollContainer/ScrollContainer/ScrollContainer.js.map +1 -1
  2341. package/components/ScrollContainer/ScrollContainer.constants/ScrollContainer.constants.js +32 -0
  2342. package/components/ScrollContainer/ScrollContainer.constants/ScrollContainer.constants.js.map +1 -0
  2343. package/components/ScrollContainer/ScrollContainer.constants/package.json +6 -0
  2344. package/components/ScrollContainer/ScrollContainer.constants.d.ts +23 -0
  2345. package/components/ScrollContainer/ScrollContainer.d.ts +76 -27
  2346. package/components/ScrollContainer/ScrollContainer.helpers/ScrollContainer.helpers.js +58 -0
  2347. package/components/ScrollContainer/ScrollContainer.helpers/ScrollContainer.helpers.js.map +1 -0
  2348. package/components/ScrollContainer/ScrollContainer.helpers/package.json +6 -0
  2349. package/components/ScrollContainer/ScrollContainer.helpers.d.ts +10 -0
  2350. package/components/ScrollContainer/ScrollContainer.md +195 -60
  2351. package/components/ScrollContainer/ScrollContainer.styles/ScrollContainer.styles.js +53 -62
  2352. package/components/ScrollContainer/ScrollContainer.styles/ScrollContainer.styles.js.map +1 -1
  2353. package/components/ScrollContainer/ScrollContainer.styles.d.ts +23 -4
  2354. package/components/ScrollContainer/index/index.js.map +1 -1
  2355. package/components/Select/ArrowDownIcon/ArrowDownIcon.js +17 -0
  2356. package/components/Select/ArrowDownIcon/ArrowDownIcon.js.map +1 -0
  2357. package/components/Select/ArrowDownIcon/package.json +6 -0
  2358. package/components/Select/ArrowDownIcon.d.ts +3 -0
  2359. package/components/Select/Item/Item.js +2 -4
  2360. package/components/Select/Item/Item.js.map +1 -1
  2361. package/components/Select/Item.d.ts +4 -2
  2362. package/components/Select/Select/Select.js +334 -182
  2363. package/components/Select/Select/Select.js.map +1 -1
  2364. package/components/Select/Select.d.ts +43 -47
  2365. package/components/Select/Select.md +98 -23
  2366. package/components/Select/Select.styles/Select.styles.js +35 -119
  2367. package/components/Select/Select.styles/Select.styles.js.map +1 -1
  2368. package/components/Select/Select.styles.d.ts +13 -7
  2369. package/components/Select/index/index.js.map +1 -1
  2370. package/components/Select/locale/index/index.js.map +1 -1
  2371. package/components/Select/locale/locales/en/en.js +1 -1
  2372. package/components/Select/locale/locales/en/en.js.map +1 -1
  2373. package/components/Select/locale/locales/ru/ru.js +1 -1
  2374. package/components/Select/locale/locales/ru/ru.js.map +1 -1
  2375. package/components/Select/locale/types/types.js +1 -0
  2376. package/components/Select/selectTheme/package.json +6 -0
  2377. package/components/Select/selectTheme/selectTheme.js +32 -0
  2378. package/components/Select/selectTheme/selectTheme.js.map +1 -0
  2379. package/components/Select/selectTheme.d.ts +3 -0
  2380. package/components/SidePage/SidePage/SidePage.js +180 -100
  2381. package/components/SidePage/SidePage/SidePage.js.map +1 -1
  2382. package/components/SidePage/SidePage.d.ts +35 -4
  2383. package/components/SidePage/SidePage.md +64 -48
  2384. package/components/SidePage/SidePage.styles/SidePage.styles.js +102 -301
  2385. package/components/SidePage/SidePage.styles/SidePage.styles.js.map +1 -1
  2386. package/components/SidePage/SidePage.styles.d.ts +38 -18
  2387. package/components/SidePage/SidePageBody/SidePageBody.js +33 -16
  2388. package/components/SidePage/SidePageBody/SidePageBody.js.map +1 -1
  2389. package/components/SidePage/SidePageBody.d.ts +7 -1
  2390. package/components/SidePage/SidePageCloseButton/SidePageCloseButton.js +42 -0
  2391. package/components/SidePage/SidePageCloseButton/SidePageCloseButton.js.map +1 -0
  2392. package/components/SidePage/SidePageCloseButton/package.json +6 -0
  2393. package/components/SidePage/SidePageCloseButton.d.ts +1 -0
  2394. package/components/SidePage/SidePageContainer/SidePageContainer.js +46 -15
  2395. package/components/SidePage/SidePageContainer/SidePageContainer.js.map +1 -1
  2396. package/components/SidePage/SidePageContainer.d.ts +10 -1
  2397. package/components/SidePage/SidePageContext/SidePageContext.js +6 -2
  2398. package/components/SidePage/SidePageContext/SidePageContext.js.map +1 -1
  2399. package/components/SidePage/SidePageContext.d.ts +8 -0
  2400. package/components/SidePage/SidePageFooter/SidePageFooter.js +83 -35
  2401. package/components/SidePage/SidePageFooter/SidePageFooter.js.map +1 -1
  2402. package/components/SidePage/SidePageFooter.d.ts +24 -7
  2403. package/components/SidePage/SidePageHeader/SidePageHeader.js +103 -53
  2404. package/components/SidePage/SidePageHeader/SidePageHeader.js.map +1 -1
  2405. package/components/SidePage/SidePageHeader.d.ts +20 -5
  2406. package/components/SidePage/index/index.js.map +1 -1
  2407. package/components/SidePage/locale/index/index.js +8 -0
  2408. package/components/SidePage/locale/index/index.js.map +1 -0
  2409. package/components/SidePage/locale/index/package.json +6 -0
  2410. package/components/SidePage/locale/index.d.ts +4 -0
  2411. package/components/SidePage/locale/locales/en/en.js +3 -0
  2412. package/components/SidePage/locale/locales/en/en.js.map +1 -0
  2413. package/components/SidePage/locale/locales/en/package.json +6 -0
  2414. package/components/SidePage/locale/locales/en.d.ts +2 -0
  2415. package/components/SidePage/locale/locales/ru/package.json +6 -0
  2416. package/components/SidePage/locale/locales/ru/ru.js +3 -0
  2417. package/components/SidePage/locale/locales/ru/ru.js.map +1 -0
  2418. package/components/SidePage/locale/locales/ru.d.ts +2 -0
  2419. package/components/SidePage/locale/package.json +6 -0
  2420. package/components/SidePage/locale/types/package.json +6 -0
  2421. package/components/SidePage/locale/types/types.js +1 -0
  2422. package/components/SidePage/locale/types/types.js.map +1 -0
  2423. package/components/SidePage/locale/types.d.ts +3 -0
  2424. package/components/Spinner/Spinner/Spinner.js +63 -60
  2425. package/components/Spinner/Spinner/Spinner.js.map +1 -1
  2426. package/components/Spinner/Spinner.d.ts +33 -21
  2427. package/components/Spinner/Spinner.md +35 -34
  2428. package/components/Spinner/Spinner.styles/Spinner.styles.js +31 -107
  2429. package/components/Spinner/Spinner.styles/Spinner.styles.js.map +1 -1
  2430. package/components/Spinner/Spinner.styles.d.ts +13 -8
  2431. package/components/Spinner/SpinnerFallbackAnimation/SpinnerFallbackAnimation.js +173 -0
  2432. package/components/Spinner/SpinnerFallbackAnimation/SpinnerFallbackAnimation.js.map +1 -0
  2433. package/components/Spinner/SpinnerFallbackAnimation/package.json +6 -0
  2434. package/components/Spinner/SpinnerFallbackAnimation.d.ts +25 -0
  2435. package/components/Spinner/index/index.js.map +1 -1
  2436. package/components/Spinner/locale/index/index.js.map +1 -1
  2437. package/components/Spinner/locale/locales/en/en.js.map +1 -1
  2438. package/components/Spinner/locale/locales/ru/ru.js.map +1 -1
  2439. package/components/Spinner/locale/types/types.js +1 -0
  2440. package/components/Sticky/Sticky/Sticky.js +58 -43
  2441. package/components/Sticky/Sticky/Sticky.js.map +1 -1
  2442. package/components/Sticky/Sticky.d.ts +17 -6
  2443. package/components/Sticky/Sticky.md +27 -27
  2444. package/components/Sticky/Sticky.styles/Sticky.styles.js +10 -46
  2445. package/components/Sticky/Sticky.styles/Sticky.styles.js.map +1 -1
  2446. package/components/Sticky/Sticky.styles.d.ts +2 -1
  2447. package/components/Sticky/index/index.js.map +1 -1
  2448. package/components/Switcher/Switcher/Switcher.js +139 -60
  2449. package/components/Switcher/Switcher/Switcher.js.map +1 -1
  2450. package/components/Switcher/Switcher.d.ts +36 -11
  2451. package/components/Switcher/Switcher.md +107 -10
  2452. package/components/Switcher/Switcher.styles/Switcher.styles.js +22 -47
  2453. package/components/Switcher/Switcher.styles/Switcher.styles.js.map +1 -1
  2454. package/components/Switcher/Switcher.styles.d.ts +8 -3
  2455. package/components/Switcher/helpers/helpers.js +3 -0
  2456. package/components/Switcher/helpers/helpers.js.map +1 -0
  2457. package/components/Switcher/helpers/package.json +6 -0
  2458. package/components/Switcher/helpers.d.ts +1 -0
  2459. package/components/Switcher/index/index.js.map +1 -1
  2460. package/components/Switcher/switcherTheme/package.json +6 -0
  2461. package/components/Switcher/switcherTheme/switcherTheme.js +23 -0
  2462. package/components/Switcher/switcherTheme/switcherTheme.js.map +1 -0
  2463. package/components/Switcher/switcherTheme.d.ts +2 -0
  2464. package/components/Tabs/Indicator/Indicator.js +30 -31
  2465. package/components/Tabs/Indicator/Indicator.js.map +1 -1
  2466. package/components/Tabs/Indicator.d.ts +3 -3
  2467. package/components/Tabs/Indicator.styles/Indicator.styles.js +8 -57
  2468. package/components/Tabs/Indicator.styles/Indicator.styles.js.map +1 -1
  2469. package/components/Tabs/Indicator.styles.d.ts +7 -6
  2470. package/components/Tabs/Tab/Tab.js +60 -79
  2471. package/components/Tabs/Tab/Tab.js.map +1 -1
  2472. package/components/Tabs/Tab.d.ts +32 -55
  2473. package/components/Tabs/Tab.md +71 -0
  2474. package/components/Tabs/Tab.styles/Tab.styles.js +80 -106
  2475. package/components/Tabs/Tab.styles/Tab.styles.js.map +1 -1
  2476. package/components/Tabs/Tab.styles.d.ts +32 -10
  2477. package/components/Tabs/Tabs/Tabs.js +66 -55
  2478. package/components/Tabs/Tabs/Tabs.js.map +1 -1
  2479. package/components/Tabs/Tabs.d.ts +34 -29
  2480. package/components/Tabs/Tabs.md +53 -28
  2481. package/components/Tabs/Tabs.styles/Tabs.styles.js +17 -25
  2482. package/components/Tabs/Tabs.styles/Tabs.styles.js.map +1 -1
  2483. package/components/Tabs/Tabs.styles.d.ts +5 -2
  2484. package/components/Tabs/TabsContext/TabsContext.js +3 -1
  2485. package/components/Tabs/TabsContext/TabsContext.js.map +1 -1
  2486. package/components/Tabs/TabsContext.d.ts +10 -8
  2487. package/components/Tabs/helpers/helpers.js +28 -0
  2488. package/components/Tabs/helpers/helpers.js.map +1 -0
  2489. package/components/Tabs/helpers/package.json +6 -0
  2490. package/components/Tabs/helpers.d.ts +6 -0
  2491. package/components/Tabs/index/index.js.map +1 -1
  2492. package/components/Textarea/Textarea/Textarea.js +285 -120
  2493. package/components/Textarea/Textarea/Textarea.js.map +1 -1
  2494. package/components/Textarea/Textarea.d.ts +77 -16
  2495. package/components/Textarea/Textarea.md +56 -9
  2496. package/components/Textarea/Textarea.mixins/Textarea.mixins.js +14 -0
  2497. package/components/Textarea/Textarea.mixins/Textarea.mixins.js.map +1 -0
  2498. package/components/Textarea/Textarea.mixins/package.json +6 -0
  2499. package/components/Textarea/Textarea.mixins.d.ts +3 -0
  2500. package/components/Textarea/Textarea.styles/Textarea.styles.js +60 -70
  2501. package/components/Textarea/Textarea.styles/Textarea.styles.js.map +1 -1
  2502. package/components/Textarea/Textarea.styles.d.ts +22 -5
  2503. package/components/Textarea/TextareaCounter/TextareaCounter.js +102 -0
  2504. package/components/Textarea/TextareaCounter/TextareaCounter.js.map +1 -0
  2505. package/components/Textarea/TextareaCounter/package.json +6 -0
  2506. package/components/Textarea/TextareaCounter.d.ts +14 -0
  2507. package/components/Textarea/TextareaHelpers/TextareaHelpers.js +12 -5
  2508. package/components/Textarea/TextareaHelpers/TextareaHelpers.js.map +1 -1
  2509. package/components/Textarea/TextareaHelpers.d.ts +8 -1
  2510. package/components/Textarea/index/index.js.map +1 -1
  2511. package/components/Toast/Toast/Toast.js +75 -44
  2512. package/components/Toast/Toast/Toast.js.map +1 -1
  2513. package/components/Toast/Toast.d.ts +29 -13
  2514. package/components/Toast/Toast.md +174 -41
  2515. package/components/Toast/Toast.styles/Toast.styles.js +7 -46
  2516. package/components/Toast/Toast.styles/Toast.styles.js.map +1 -1
  2517. package/components/Toast/Toast.styles.d.ts +1 -1
  2518. package/components/Toast/ToastStatic/ToastStatic.js +8 -9
  2519. package/components/Toast/ToastStatic/ToastStatic.js.map +1 -1
  2520. package/components/Toast/ToastStatic.d.ts +3 -2
  2521. package/components/Toast/ToastView/ToastView.js +70 -42
  2522. package/components/Toast/ToastView/ToastView.js.map +1 -1
  2523. package/components/Toast/ToastView.d.ts +8 -6
  2524. package/components/Toast/ToastView.styles/ToastView.styles.js +34 -59
  2525. package/components/Toast/ToastView.styles/ToastView.styles.js.map +1 -1
  2526. package/components/Toast/ToastView.styles.d.ts +7 -6
  2527. package/components/Toast/index/index.js.map +1 -1
  2528. package/components/Toast/locale/index/index.js +8 -0
  2529. package/components/Toast/locale/index/index.js.map +1 -0
  2530. package/components/Toast/locale/index/package.json +6 -0
  2531. package/components/Toast/locale/index.d.ts +4 -0
  2532. package/components/Toast/locale/locales/en/en.js +3 -0
  2533. package/components/Toast/locale/locales/en/en.js.map +1 -0
  2534. package/components/Toast/locale/locales/en/package.json +6 -0
  2535. package/components/Toast/locale/locales/en.d.ts +2 -0
  2536. package/components/Toast/locale/locales/ru/package.json +6 -0
  2537. package/components/Toast/locale/locales/ru/ru.js +3 -0
  2538. package/components/Toast/locale/locales/ru/ru.js.map +1 -0
  2539. package/components/Toast/locale/locales/ru.d.ts +2 -0
  2540. package/components/Toast/locale/package.json +6 -0
  2541. package/components/Toast/locale/types/package.json +6 -0
  2542. package/components/Toast/locale/types/types.js +1 -0
  2543. package/components/Toast/locale/types/types.js.map +1 -0
  2544. package/components/Toast/locale/types.d.ts +3 -0
  2545. package/components/Toggle/Toggle/Toggle.js +200 -42
  2546. package/components/Toggle/Toggle/Toggle.js.map +1 -1
  2547. package/components/Toggle/Toggle.d.ts +82 -6
  2548. package/components/Toggle/Toggle.md +110 -9
  2549. package/components/Toggle/Toggle.mixins/Toggle.mixins.js +35 -0
  2550. package/components/Toggle/Toggle.mixins/Toggle.mixins.js.map +1 -0
  2551. package/components/Toggle/Toggle.mixins/package.json +6 -0
  2552. package/components/Toggle/Toggle.mixins.d.ts +7 -0
  2553. package/components/Toggle/Toggle.styles/Toggle.styles.js +123 -118
  2554. package/components/Toggle/Toggle.styles/Toggle.styles.js.map +1 -1
  2555. package/components/Toggle/Toggle.styles.d.ts +51 -10
  2556. package/components/Toggle/index/index.js.map +1 -1
  2557. package/components/Token/Token/Token.js +68 -29
  2558. package/components/Token/Token/Token.js.map +1 -1
  2559. package/components/Token/Token.d.ts +18 -4
  2560. package/components/Token/Token.md +112 -112
  2561. package/components/Token/Token.styles/Token.styles.js +61 -132
  2562. package/components/Token/Token.styles/Token.styles.js.map +1 -1
  2563. package/components/Token/Token.styles.d.ts +33 -23
  2564. package/components/Token/index/index.js.map +1 -1
  2565. package/components/Token/locale/index/index.js +8 -0
  2566. package/components/Token/locale/index/index.js.map +1 -0
  2567. package/components/Token/locale/index/package.json +6 -0
  2568. package/components/Token/locale/index.d.ts +4 -0
  2569. package/components/Token/locale/locales/en/en.js +3 -0
  2570. package/components/Token/locale/locales/en/en.js.map +1 -0
  2571. package/components/Token/locale/locales/en/package.json +6 -0
  2572. package/components/Token/locale/locales/en.d.ts +2 -0
  2573. package/components/Token/locale/locales/ru/package.json +6 -0
  2574. package/components/Token/locale/locales/ru/ru.js +3 -0
  2575. package/components/Token/locale/locales/ru/ru.js.map +1 -0
  2576. package/components/Token/locale/locales/ru.d.ts +2 -0
  2577. package/components/Token/locale/package.json +6 -0
  2578. package/components/Token/locale/types/package.json +6 -0
  2579. package/components/Token/locale/types/types.js +1 -0
  2580. package/components/Token/locale/types/types.js.map +1 -0
  2581. package/components/Token/locale/types.d.ts +3 -0
  2582. package/components/TokenInput/TextWidthHelper/TextWidthHelper.js +21 -14
  2583. package/components/TokenInput/TextWidthHelper/TextWidthHelper.js.map +1 -1
  2584. package/components/TokenInput/TextWidthHelper.d.ts +8 -0
  2585. package/components/TokenInput/TokenInput/TokenInput.js +591 -178
  2586. package/components/TokenInput/TokenInput/TokenInput.js.map +1 -1
  2587. package/components/TokenInput/TokenInput.d.ts +155 -18
  2588. package/components/TokenInput/TokenInput.md +196 -83
  2589. package/components/TokenInput/TokenInput.styles/TokenInput.styles.js +36 -79
  2590. package/components/TokenInput/TokenInput.styles/TokenInput.styles.js.map +1 -1
  2591. package/components/TokenInput/TokenInput.styles.d.ts +15 -8
  2592. package/components/TokenInput/TokenInputMenu/TokenInputMenu.js +41 -11
  2593. package/components/TokenInput/TokenInputMenu/TokenInputMenu.js.map +1 -1
  2594. package/components/TokenInput/TokenInputMenu.d.ts +16 -2
  2595. package/components/TokenInput/TokenInputReducer/TokenInputReducer.js +41 -1
  2596. package/components/TokenInput/TokenInputReducer/TokenInputReducer.js.map +1 -1
  2597. package/components/TokenInput/TokenInputReducer.d.ts +5 -0
  2598. package/components/TokenInput/index/index.js.map +1 -1
  2599. package/components/TokenInput/locale/index/index.js.map +1 -1
  2600. package/components/TokenInput/locale/locales/en/en.js +1 -1
  2601. package/components/TokenInput/locale/locales/en/en.js.map +1 -1
  2602. package/components/TokenInput/locale/locales/ru/ru.js +1 -1
  2603. package/components/TokenInput/locale/locales/ru/ru.js.map +1 -1
  2604. package/components/TokenInput/locale/types/types.js +1 -0
  2605. package/components/Tooltip/Tooltip/Tooltip.js +162 -63
  2606. package/components/Tooltip/Tooltip/Tooltip.js.map +1 -1
  2607. package/components/Tooltip/Tooltip.d.ts +53 -40
  2608. package/components/Tooltip/Tooltip.md +293 -212
  2609. package/components/Tooltip/Tooltip.styles/Tooltip.styles.js +6 -25
  2610. package/components/Tooltip/Tooltip.styles/Tooltip.styles.js.map +1 -1
  2611. package/components/Tooltip/Tooltip.styles.d.ts +4 -3
  2612. package/components/Tooltip/index/index.js.map +1 -1
  2613. package/components/TooltipMenu/TooltipMenu/TooltipMenu.js +58 -23
  2614. package/components/TooltipMenu/TooltipMenu/TooltipMenu.js.map +1 -1
  2615. package/components/TooltipMenu/TooltipMenu.d.ts +43 -18
  2616. package/components/TooltipMenu/TooltipMenu.md +238 -115
  2617. package/components/TooltipMenu/index/index.js.map +1 -1
  2618. package/hooks/useDrop/package.json +6 -0
  2619. package/hooks/useDrop/useDrop.js +61 -0
  2620. package/hooks/useDrop/useDrop.js.map +1 -0
  2621. package/hooks/useDrop.d.ts +11 -0
  2622. package/hooks/useEffectWithoutInitCall/package.json +6 -0
  2623. package/hooks/useEffectWithoutInitCall/useEffectWithoutInitCall.js +11 -0
  2624. package/hooks/useEffectWithoutInitCall/useEffectWithoutInitCall.js.map +1 -0
  2625. package/hooks/useEffectWithoutInitCall.d.ts +2 -0
  2626. package/hooks/useMemoObject/package.json +6 -0
  2627. package/hooks/useMemoObject/useMemoObject.js +6 -0
  2628. package/hooks/useMemoObject/useMemoObject.js.map +1 -0
  2629. package/hooks/useMemoObject.d.ts +2 -0
  2630. package/index.d.ts +13 -7
  2631. package/index.js +13 -7
  2632. package/index.js.map +1 -1
  2633. package/internal/BGRuler/BGRuler.js +27 -23
  2634. package/internal/BGRuler/BGRuler.js.map +1 -1
  2635. package/internal/BGRuler.d.ts +13 -15
  2636. package/internal/CloseButtonIcon/CloseButtonIcon/CloseButtonIcon.js +66 -0
  2637. package/internal/CloseButtonIcon/CloseButtonIcon/CloseButtonIcon.js.map +1 -0
  2638. package/internal/CloseButtonIcon/CloseButtonIcon/package.json +6 -0
  2639. package/internal/CloseButtonIcon/CloseButtonIcon.d.ts +35 -0
  2640. package/internal/CloseButtonIcon/CloseButtonIcon.styles/CloseButtonIcon.styles.js +20 -0
  2641. package/internal/CloseButtonIcon/CloseButtonIcon.styles/CloseButtonIcon.styles.js.map +1 -0
  2642. package/internal/CloseButtonIcon/CloseButtonIcon.styles/package.json +6 -0
  2643. package/internal/CloseButtonIcon/CloseButtonIcon.styles.d.ts +7 -0
  2644. package/internal/CloseButtonIcon/CrossIcon/CrossIcon.js +23 -0
  2645. package/internal/CloseButtonIcon/CrossIcon/CrossIcon.js.map +1 -0
  2646. package/internal/CloseButtonIcon/CrossIcon/package.json +6 -0
  2647. package/internal/CloseButtonIcon/CrossIcon.d.ts +3 -0
  2648. package/internal/CommonWrapper/CommonWrapper/CommonWrapper.js +106 -0
  2649. package/internal/CommonWrapper/CommonWrapper/CommonWrapper.js.map +1 -0
  2650. package/internal/CommonWrapper/CommonWrapper/package.json +6 -0
  2651. package/internal/CommonWrapper/CommonWrapper.d.ts +33 -0
  2652. package/internal/CommonWrapper/index/index.js +1 -0
  2653. package/internal/CommonWrapper/index/index.js.map +1 -0
  2654. package/internal/CommonWrapper/index/package.json +6 -0
  2655. package/internal/CommonWrapper/index.d.ts +1 -0
  2656. package/internal/CommonWrapper/package.json +6 -0
  2657. package/internal/ComponentCombinator/ComponentCombinator.js +17 -13
  2658. package/internal/ComponentCombinator/ComponentCombinator.js.map +1 -1
  2659. package/internal/ComponentCombinator.d.ts +6 -8
  2660. package/internal/ComponentTable/ComponentTable.js +30 -20
  2661. package/internal/ComponentTable/ComponentTable.js.map +1 -1
  2662. package/internal/ComponentTable.d.ts +9 -8
  2663. package/internal/CustomComboBox/ArrowDownIcon/ArrowDownIcon.js +17 -0
  2664. package/internal/CustomComboBox/ArrowDownIcon/ArrowDownIcon.js.map +1 -0
  2665. package/internal/CustomComboBox/ArrowDownIcon/package.json +6 -0
  2666. package/internal/CustomComboBox/ArrowDownIcon.d.ts +3 -0
  2667. package/internal/CustomComboBox/ComboBoxMenu/ComboBoxMenu.js +114 -49
  2668. package/internal/CustomComboBox/ComboBoxMenu/ComboBoxMenu.js.map +1 -1
  2669. package/internal/CustomComboBox/ComboBoxMenu.d.ts +23 -8
  2670. package/internal/CustomComboBox/ComboBoxView/ComboBoxView.js +232 -108
  2671. package/internal/CustomComboBox/ComboBoxView/ComboBoxView.js.map +1 -1
  2672. package/internal/CustomComboBox/ComboBoxView.d.ts +40 -17
  2673. package/internal/CustomComboBox/CustomComboBox/CustomComboBox.js +111 -70
  2674. package/internal/CustomComboBox/CustomComboBox/CustomComboBox.js.map +1 -1
  2675. package/internal/CustomComboBox/CustomComboBox.d.ts +28 -7
  2676. package/internal/CustomComboBox/CustomComboBox.styles/CustomComboBox.styles.js +7 -36
  2677. package/internal/CustomComboBox/CustomComboBox.styles/CustomComboBox.styles.js.map +1 -1
  2678. package/internal/CustomComboBox/CustomComboBox.styles.d.ts +2 -2
  2679. package/internal/CustomComboBox/CustomComboBoxReducer/CustomComboBoxReducer.js +52 -45
  2680. package/internal/CustomComboBox/CustomComboBoxReducer/CustomComboBoxReducer.js.map +1 -1
  2681. package/internal/CustomComboBox/CustomComboBoxReducer.d.ts +18 -17
  2682. package/internal/CustomComboBox/CustomComboBoxTypes/CustomComboBoxTypes.js.map +1 -1
  2683. package/internal/CustomComboBox/getComboBoxTheme/getComboBoxTheme.js +6 -0
  2684. package/internal/CustomComboBox/getComboBoxTheme/getComboBoxTheme.js.map +1 -0
  2685. package/internal/CustomComboBox/getComboBoxTheme/package.json +6 -0
  2686. package/internal/CustomComboBox/getComboBoxTheme.d.ts +2 -0
  2687. package/internal/CustomComboBox/index/index.js.map +1 -1
  2688. package/internal/CustomComboBox/locale/index/index.js.map +1 -1
  2689. package/internal/CustomComboBox/locale/locales/en/en.js.map +1 -1
  2690. package/internal/CustomComboBox/locale/locales/ru/ru.js.map +1 -1
  2691. package/internal/CustomComboBox/locale/types/types.js +1 -0
  2692. package/internal/DataTids/DATATIDS.md +12 -0
  2693. package/internal/DataTids/DataTids/DataTids.js +69 -0
  2694. package/internal/DataTids/DataTids/DataTids.js.map +1 -0
  2695. package/internal/DataTids/DataTids/package.json +6 -0
  2696. package/internal/DataTids/DataTids.d.ts +12 -0
  2697. package/internal/DataTids/DataTids.styles/DataTids.styles.js +22 -0
  2698. package/internal/DataTids/DataTids.styles/DataTids.styles.js.map +1 -0
  2699. package/internal/DataTids/DataTids.styles/package.json +6 -0
  2700. package/internal/DataTids/DataTids.styles.d.ts +7 -0
  2701. package/internal/DataTids/componentsDataTids/componentsDataTids.js +14 -0
  2702. package/internal/DataTids/componentsDataTids/componentsDataTids.js.map +1 -0
  2703. package/internal/DataTids/componentsDataTids/package.json +6 -0
  2704. package/internal/DataTids/componentsDataTids.d.ts +5 -0
  2705. package/internal/DateSelect/DateSelect/DateSelect.js +172 -76
  2706. package/internal/DateSelect/DateSelect/DateSelect.js.map +1 -1
  2707. package/internal/DateSelect/DateSelect.d.ts +16 -8
  2708. package/internal/DateSelect/DateSelect.styles/DateSelect.styles.js +28 -181
  2709. package/internal/DateSelect/DateSelect.styles/DateSelect.styles.js.map +1 -1
  2710. package/internal/DateSelect/DateSelect.styles.d.ts +16 -11
  2711. package/internal/DateSelect/index/index.js.map +1 -1
  2712. package/internal/DateSelect/locale/index/index.js +8 -0
  2713. package/internal/DateSelect/locale/index/index.js.map +1 -0
  2714. package/internal/DateSelect/locale/index/package.json +6 -0
  2715. package/internal/DateSelect/locale/index.d.ts +4 -0
  2716. package/internal/DateSelect/locale/locales/en/en.js +5 -0
  2717. package/internal/DateSelect/locale/locales/en/en.js.map +1 -0
  2718. package/internal/DateSelect/locale/locales/en/package.json +6 -0
  2719. package/internal/DateSelect/locale/locales/en.d.ts +2 -0
  2720. package/internal/DateSelect/locale/locales/ru/package.json +6 -0
  2721. package/internal/DateSelect/locale/locales/ru/ru.js +5 -0
  2722. package/internal/DateSelect/locale/locales/ru/ru.js.map +1 -0
  2723. package/internal/DateSelect/locale/locales/ru.d.ts +2 -0
  2724. package/internal/DateSelect/locale/package.json +6 -0
  2725. package/internal/DateSelect/locale/types/package.json +6 -0
  2726. package/internal/DateSelect/locale/types/types.js +1 -0
  2727. package/internal/DateSelect/locale/types/types.js.map +1 -0
  2728. package/internal/DateSelect/locale/types.d.ts +5 -0
  2729. package/internal/DropdownContainer/DropdownContainer/DropdownContainer.js +67 -67
  2730. package/internal/DropdownContainer/DropdownContainer/DropdownContainer.js.map +1 -1
  2731. package/internal/DropdownContainer/DropdownContainer.d.ts +15 -15
  2732. package/internal/DropdownContainer/DropdownContainer.styles/DropdownContainer.styles.js +10 -0
  2733. package/internal/DropdownContainer/DropdownContainer.styles/DropdownContainer.styles.js.map +1 -0
  2734. package/internal/DropdownContainer/DropdownContainer.styles/package.json +6 -0
  2735. package/internal/DropdownContainer/DropdownContainer.styles.d.ts +3 -0
  2736. package/internal/DropdownContainer/getManualPosition/getManualPosition.js +36 -0
  2737. package/internal/DropdownContainer/getManualPosition/getManualPosition.js.map +1 -0
  2738. package/internal/DropdownContainer/getManualPosition/package.json +6 -0
  2739. package/internal/DropdownContainer/getManualPosition.d.ts +19 -0
  2740. package/internal/DropdownContainer/index/index.js.map +1 -1
  2741. package/internal/FileUploaderControl/FileUploaderControlContext/FileUploaderControlContext.js +2 -0
  2742. package/internal/FileUploaderControl/FileUploaderControlContext/FileUploaderControlContext.js.map +1 -0
  2743. package/internal/FileUploaderControl/FileUploaderControlContext/package.json +6 -0
  2744. package/internal/FileUploaderControl/FileUploaderControlContext.d.ts +14 -0
  2745. package/internal/FileUploaderControl/FileUploaderControlProvider/FileUploaderControlProvider.js +95 -0
  2746. package/internal/FileUploaderControl/FileUploaderControlProvider/FileUploaderControlProvider.js.map +1 -0
  2747. package/internal/FileUploaderControl/FileUploaderControlProvider/package.json +6 -0
  2748. package/internal/FileUploaderControl/FileUploaderControlProvider.d.ts +14 -0
  2749. package/internal/FileUploaderControl/FileUploaderFile/DeleteIcon/DeleteIcon.js +17 -0
  2750. package/internal/FileUploaderControl/FileUploaderFile/DeleteIcon/DeleteIcon.js.map +1 -0
  2751. package/internal/FileUploaderControl/FileUploaderFile/DeleteIcon/package.json +6 -0
  2752. package/internal/FileUploaderControl/FileUploaderFile/DeleteIcon.d.ts +3 -0
  2753. package/internal/FileUploaderControl/FileUploaderFile/ErrorIcon/ErrorIcon.js +17 -0
  2754. package/internal/FileUploaderControl/FileUploaderFile/ErrorIcon/ErrorIcon.js.map +1 -0
  2755. package/internal/FileUploaderControl/FileUploaderFile/ErrorIcon/package.json +6 -0
  2756. package/internal/FileUploaderControl/FileUploaderFile/ErrorIcon.d.ts +3 -0
  2757. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile/FileUploaderFile.js +189 -0
  2758. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile/FileUploaderFile.js.map +1 -0
  2759. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile/package.json +6 -0
  2760. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.d.ts +19 -0
  2761. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.styles/FileUploaderFile.styles.js +53 -0
  2762. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.styles/FileUploaderFile.styles.js.map +1 -0
  2763. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.styles/package.json +6 -0
  2764. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFile.styles.d.ts +18 -0
  2765. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFileStatusIcon/FileUploaderFileStatusIcon.js +60 -0
  2766. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFileStatusIcon/FileUploaderFileStatusIcon.js.map +1 -0
  2767. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFileStatusIcon/package.json +6 -0
  2768. package/internal/FileUploaderControl/FileUploaderFile/FileUploaderFileStatusIcon.d.ts +12 -0
  2769. package/internal/FileUploaderControl/FileUploaderFile/OkIcon/OkIcon.js +17 -0
  2770. package/internal/FileUploaderControl/FileUploaderFile/OkIcon/OkIcon.js.map +1 -0
  2771. package/internal/FileUploaderControl/FileUploaderFile/OkIcon/package.json +6 -0
  2772. package/internal/FileUploaderControl/FileUploaderFile/OkIcon.d.ts +3 -0
  2773. package/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList/FileUploaderFileList.js +40 -0
  2774. package/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList/FileUploaderFileList.js.map +1 -0
  2775. package/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList/package.json +6 -0
  2776. package/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.d.ts +15 -0
  2777. package/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.styles/FileUploaderFileList.styles.js +23 -0
  2778. package/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.styles/FileUploaderFileList.styles.js.map +1 -0
  2779. package/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.styles/package.json +6 -0
  2780. package/internal/FileUploaderControl/FileUploaderFileList/FileUploaderFileList.styles.d.ts +8 -0
  2781. package/internal/FileUploaderControl/FileUploaderFileValidationResult/FileUploaderFileValidationResult.js +16 -0
  2782. package/internal/FileUploaderControl/FileUploaderFileValidationResult/FileUploaderFileValidationResult.js.map +1 -0
  2783. package/internal/FileUploaderControl/FileUploaderFileValidationResult/package.json +6 -0
  2784. package/internal/FileUploaderControl/FileUploaderFileValidationResult.d.ts +7 -0
  2785. package/internal/FileUploaderControl/fileUtils/fileUtils.js +19 -0
  2786. package/internal/FileUploaderControl/fileUtils/fileUtils.js.map +1 -0
  2787. package/internal/FileUploaderControl/fileUtils/package.json +6 -0
  2788. package/internal/FileUploaderControl/fileUtils.d.ts +14 -0
  2789. package/internal/FileUploaderControl/hooks/useControlLocale/package.json +6 -0
  2790. package/internal/FileUploaderControl/hooks/useControlLocale/useControlLocale.js +5 -0
  2791. package/internal/FileUploaderControl/hooks/useControlLocale/useControlLocale.js.map +1 -0
  2792. package/internal/FileUploaderControl/hooks/useControlLocale.d.ts +1 -0
  2793. package/internal/FileUploaderControl/hooks/useFileUploaderSize/package.json +6 -0
  2794. package/internal/FileUploaderControl/hooks/useFileUploaderSize/useFileUploaderSize.js +21 -0
  2795. package/internal/FileUploaderControl/hooks/useFileUploaderSize/useFileUploaderSize.js.map +1 -0
  2796. package/internal/FileUploaderControl/hooks/useFileUploaderSize.d.ts +2 -0
  2797. package/internal/FileUploaderControl/hooks/useUpload/package.json +6 -0
  2798. package/internal/FileUploaderControl/hooks/useUpload/useUpload.js +56 -0
  2799. package/internal/FileUploaderControl/hooks/useUpload/useUpload.js.map +1 -0
  2800. package/internal/FileUploaderControl/hooks/useUpload.d.ts +3 -0
  2801. package/internal/FileUploaderControl/withFileUploaderControlProvider/package.json +6 -0
  2802. package/internal/FileUploaderControl/withFileUploaderControlProvider/withFileUploaderControlProvider.js +19 -0
  2803. package/internal/FileUploaderControl/withFileUploaderControlProvider/withFileUploaderControlProvider.js.map +1 -0
  2804. package/internal/FileUploaderControl/withFileUploaderControlProvider.d.ts +3 -0
  2805. package/internal/FocusTrap/FocusTrap/FocusTrap.js +18 -12
  2806. package/internal/FocusTrap/FocusTrap/FocusTrap.js.map +1 -1
  2807. package/internal/FocusTrap/FocusTrap.d.ts +4 -2
  2808. package/internal/FocusTrap/index/index.js.map +1 -1
  2809. package/internal/HideBodyVerticalScroll/HideBodyVerticalScroll/HideBodyVerticalScroll.js +31 -68
  2810. package/internal/HideBodyVerticalScroll/HideBodyVerticalScroll/HideBodyVerticalScroll.js.map +1 -1
  2811. package/internal/HideBodyVerticalScroll/HideBodyVerticalScroll.d.ts +1 -3
  2812. package/internal/HideBodyVerticalScroll/index/index.js.map +1 -1
  2813. package/internal/IgnoreLayerClick/IgnoreLayerClick/IgnoreLayerClick.js +14 -13
  2814. package/internal/IgnoreLayerClick/IgnoreLayerClick/IgnoreLayerClick.js.map +1 -1
  2815. package/internal/IgnoreLayerClick/IgnoreLayerClick.d.ts +1 -1
  2816. package/internal/IgnoreLayerClick/index/index.js.map +1 -1
  2817. package/internal/InputLikeText/HiddenInput/HiddenInput.js +11 -20
  2818. package/internal/InputLikeText/HiddenInput/HiddenInput.js.map +1 -1
  2819. package/internal/InputLikeText/InputLikeText/InputLikeText.js +217 -122
  2820. package/internal/InputLikeText/InputLikeText/InputLikeText.js.map +1 -1
  2821. package/internal/InputLikeText/InputLikeText.d.ts +16 -5
  2822. package/internal/InputLikeText/InputLikeText.styles/InputLikeText.styles.js +10 -59
  2823. package/internal/InputLikeText/InputLikeText.styles/InputLikeText.styles.js.map +1 -1
  2824. package/internal/InputLikeText/InputLikeText.styles.d.ts +3 -3
  2825. package/internal/InputLikeText/index/index.js.map +1 -1
  2826. package/internal/InternalMenu/InternalMenu/InternalMenu.js +116 -83
  2827. package/internal/InternalMenu/InternalMenu/InternalMenu.js.map +1 -1
  2828. package/internal/InternalMenu/InternalMenu.d.ts +25 -14
  2829. package/internal/InternalMenu/InternalMenu.styles/InternalMenu.styles.js +20 -73
  2830. package/internal/InternalMenu/InternalMenu.styles/InternalMenu.styles.js.map +1 -1
  2831. package/internal/InternalMenu/InternalMenu.styles.d.ts +10 -7
  2832. package/internal/InternalMenu/addIconPaddingIfPartOfMenu/addIconPaddingIfPartOfMenu.js +14 -0
  2833. package/internal/InternalMenu/addIconPaddingIfPartOfMenu/addIconPaddingIfPartOfMenu.js.map +1 -0
  2834. package/internal/InternalMenu/addIconPaddingIfPartOfMenu/package.json +6 -0
  2835. package/internal/InternalMenu/addIconPaddingIfPartOfMenu.d.ts +2 -0
  2836. package/internal/InternalMenu/index/index.js.map +1 -1
  2837. package/internal/InternalMenu/isActiveElement/isActiveElement.js.map +1 -1
  2838. package/internal/InternalMenu/isIconPaddingEnabled/isIconPaddingEnabled.js +6 -0
  2839. package/internal/InternalMenu/isIconPaddingEnabled/isIconPaddingEnabled.js.map +1 -0
  2840. package/internal/InternalMenu/isIconPaddingEnabled/package.json +6 -0
  2841. package/internal/InternalMenu/isIconPaddingEnabled.d.ts +2 -0
  2842. package/internal/MaskCharLowLine/MaskCharLowLine/MaskCharLowLine.js +16 -0
  2843. package/internal/MaskCharLowLine/MaskCharLowLine/MaskCharLowLine.js.map +1 -0
  2844. package/internal/MaskCharLowLine/MaskCharLowLine/package.json +6 -0
  2845. package/internal/MaskCharLowLine/MaskCharLowLine.d.ts +9 -0
  2846. package/internal/MaskCharLowLine/MaskCharLowLine.styles/MaskCharLowLine.styles.js +10 -0
  2847. package/internal/MaskCharLowLine/MaskCharLowLine.styles/MaskCharLowLine.styles.js.map +1 -0
  2848. package/internal/MaskCharLowLine/MaskCharLowLine.styles/package.json +6 -0
  2849. package/internal/MaskCharLowLine/MaskCharLowLine.styles.d.ts +3 -0
  2850. package/internal/MaskCharLowLine/index/index.js +1 -0
  2851. package/internal/MaskCharLowLine/index/index.js.map +1 -0
  2852. package/internal/MaskCharLowLine/index/package.json +6 -0
  2853. package/internal/MaskCharLowLine/index.d.ts +1 -0
  2854. package/internal/MaskCharLowLine/package.json +6 -0
  2855. package/internal/MaskedInput/MaskedInput/MaskedInput.js +70 -35
  2856. package/internal/MaskedInput/MaskedInput/MaskedInput.js.map +1 -1
  2857. package/internal/MaskedInput/MaskedInput.d.ts +9 -2
  2858. package/internal/MaskedInput/MaskedInput.styles/MaskedInput.styles.js +9 -39
  2859. package/internal/MaskedInput/MaskedInput.styles/MaskedInput.styles.js.map +1 -1
  2860. package/internal/MaskedInput/MaskedInput.styles.d.ts +4 -2
  2861. package/internal/MaskedInput/index/index.js.map +1 -1
  2862. package/internal/Menu/Menu/Menu.js +296 -97
  2863. package/internal/Menu/Menu/Menu.js.map +1 -1
  2864. package/internal/Menu/Menu.d.ts +56 -13
  2865. package/internal/Menu/Menu.styles/Menu.styles.js +38 -24
  2866. package/internal/Menu/Menu.styles/Menu.styles.js.map +1 -1
  2867. package/internal/Menu/Menu.styles.d.ts +15 -3
  2868. package/internal/Menu/index/index.js.map +1 -1
  2869. package/internal/Menu/isActiveElement/isActiveElement.js.map +1 -1
  2870. package/internal/MenuMessage/MenuMessage/MenuMessage.js +48 -0
  2871. package/internal/MenuMessage/MenuMessage/MenuMessage.js.map +1 -0
  2872. package/internal/MenuMessage/MenuMessage/package.json +6 -0
  2873. package/internal/MenuMessage/MenuMessage.d.ts +12 -0
  2874. package/internal/MenuMessage/MenuMessage.styles/MenuMessage.styles.js +32 -0
  2875. package/internal/MenuMessage/MenuMessage.styles/MenuMessage.styles.js.map +1 -0
  2876. package/internal/MenuMessage/MenuMessage.styles/package.json +6 -0
  2877. package/internal/MenuMessage/MenuMessage.styles.d.ts +8 -0
  2878. package/internal/MenuMessage/index/index.js +1 -0
  2879. package/internal/MenuMessage/index/index.js.map +1 -0
  2880. package/internal/MenuMessage/index/package.json +6 -0
  2881. package/internal/MenuMessage/index.d.ts +1 -0
  2882. package/internal/MenuMessage/package.json +6 -0
  2883. package/internal/MobilePopup/MobilePopup/MobilePopup.js +88 -0
  2884. package/internal/MobilePopup/MobilePopup/MobilePopup.js.map +1 -0
  2885. package/internal/MobilePopup/MobilePopup/package.json +6 -0
  2886. package/internal/MobilePopup/MobilePopup.d.ts +39 -0
  2887. package/internal/MobilePopup/MobilePopup.styles/MobilePopup.styles.js +29 -0
  2888. package/internal/MobilePopup/MobilePopup.styles/MobilePopup.styles.js.map +1 -0
  2889. package/internal/MobilePopup/MobilePopup.styles/package.json +6 -0
  2890. package/internal/MobilePopup/MobilePopup.styles.d.ts +10 -0
  2891. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader/MobilePopupHeader.js +42 -0
  2892. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader/MobilePopupHeader.js.map +1 -0
  2893. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader/package.json +6 -0
  2894. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.d.ts +14 -0
  2895. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.styles/MobilePopupHeader.styles.js +23 -0
  2896. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.styles/MobilePopupHeader.styles.js.map +1 -0
  2897. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.styles/package.json +6 -0
  2898. package/internal/MobilePopup/MobilePopupHeader/MobilePopupHeader.styles.d.ts +8 -0
  2899. package/internal/MobilePopup/MobilePopupHeader/index/index.js +1 -0
  2900. package/internal/MobilePopup/MobilePopupHeader/index/index.js.map +1 -0
  2901. package/internal/MobilePopup/MobilePopupHeader/index/package.json +6 -0
  2902. package/internal/MobilePopup/MobilePopupHeader/index.d.ts +1 -0
  2903. package/internal/MobilePopup/MobilePopupHeader/package.json +6 -0
  2904. package/internal/MobilePopup/index/index.js +1 -0
  2905. package/internal/MobilePopup/index/index.js.map +1 -0
  2906. package/internal/MobilePopup/index/package.json +6 -0
  2907. package/internal/MobilePopup/index.d.ts +1 -0
  2908. package/internal/MobilePopup/package.json +6 -0
  2909. package/internal/NativeDateInput/NativeDateInput/NativeDateInput.js +66 -0
  2910. package/internal/NativeDateInput/NativeDateInput/NativeDateInput.js.map +1 -0
  2911. package/internal/NativeDateInput/NativeDateInput/package.json +6 -0
  2912. package/internal/NativeDateInput/NativeDateInput.d.ts +23 -0
  2913. package/internal/NativeDateInput/NativeDateInput.styles/NativeDateInput.styles.js +11 -0
  2914. package/internal/NativeDateInput/NativeDateInput.styles/NativeDateInput.styles.js.map +1 -0
  2915. package/internal/NativeDateInput/NativeDateInput.styles/package.json +6 -0
  2916. package/internal/NativeDateInput/NativeDateInput.styles.d.ts +3 -0
  2917. package/internal/NativeDateInput/index/index.js +1 -0
  2918. package/internal/NativeDateInput/index/index.js.map +1 -0
  2919. package/internal/NativeDateInput/index/package.json +6 -0
  2920. package/internal/NativeDateInput/index.d.ts +1 -0
  2921. package/internal/NativeDateInput/package.json +6 -0
  2922. package/internal/NativeDateInput/utils/package.json +6 -0
  2923. package/internal/NativeDateInput/utils/utils.js +54 -0
  2924. package/internal/NativeDateInput/utils/utils.js.map +1 -0
  2925. package/internal/NativeDateInput/utils.d.ts +7 -0
  2926. package/internal/PerformanceMetrics/PerformanceMetrics/PerformanceMetrics.js +13 -16
  2927. package/internal/PerformanceMetrics/PerformanceMetrics/PerformanceMetrics.js.map +1 -1
  2928. package/internal/Popup/Popup/Popup.js +347 -189
  2929. package/internal/Popup/Popup/Popup.js.map +1 -1
  2930. package/internal/Popup/Popup.d.ts +63 -31
  2931. package/internal/Popup/Popup.styles/Popup.styles.js +16 -145
  2932. package/internal/Popup/Popup.styles/Popup.styles.js.map +1 -1
  2933. package/internal/Popup/Popup.styles.d.ts +7 -6
  2934. package/internal/Popup/PopupHelper/PopupHelper.js +5 -2
  2935. package/internal/Popup/PopupHelper/PopupHelper.js.map +1 -1
  2936. package/internal/Popup/PopupHelper.d.ts +3 -3
  2937. package/internal/Popup/PopupPin/PopupPin.js +31 -31
  2938. package/internal/Popup/PopupPin/PopupPin.js.map +1 -1
  2939. package/internal/Popup/PopupPin.d.ts +1 -1
  2940. package/internal/Popup/PopupPin.styles/PopupPin.styles.js +4 -13
  2941. package/internal/Popup/PopupPin.styles/PopupPin.styles.js.map +1 -1
  2942. package/internal/Popup/PopupPin.styles.d.ts +1 -1
  2943. package/internal/Popup/index/index.js.map +1 -1
  2944. package/internal/Popup/types/package.json +6 -0
  2945. package/internal/Popup/types/types.js +1 -0
  2946. package/internal/Popup/types/types.js.map +1 -0
  2947. package/internal/Popup/types.d.ts +2 -0
  2948. package/internal/PopupMenu/PopupMenu/PopupMenu.js +98 -36
  2949. package/internal/PopupMenu/PopupMenu/PopupMenu.js.map +1 -1
  2950. package/internal/PopupMenu/PopupMenu.d.ts +36 -16
  2951. package/internal/PopupMenu/PopupMenu.styles/PopupMenu.styles.js +5 -24
  2952. package/internal/PopupMenu/PopupMenu.styles/PopupMenu.styles.js.map +1 -1
  2953. package/internal/PopupMenu/PopupMenu.styles.d.ts +1 -1
  2954. package/internal/PopupMenu/index/index.js.map +1 -1
  2955. package/internal/PopupMenu/validatePositions/validatePositions.js +8 -8
  2956. package/internal/PopupMenu/validatePositions/validatePositions.js.map +1 -1
  2957. package/internal/PopupMenu/validatePositions.d.ts +2 -2
  2958. package/internal/RenderContainer/RenderContainer/RenderContainer.js +19 -12
  2959. package/internal/RenderContainer/RenderContainer/RenderContainer.js.map +1 -1
  2960. package/internal/RenderContainer/RenderContainer.d.ts +1 -1
  2961. package/internal/RenderContainer/RenderContainerTypes/RenderContainerTypes.js +1 -0
  2962. package/internal/RenderContainer/RenderContainerTypes.d.ts +6 -1
  2963. package/internal/RenderContainer/RenderInnerContainer/RenderInnerContainer.js +54 -16
  2964. package/internal/RenderContainer/RenderInnerContainer/RenderInnerContainer.js.map +1 -1
  2965. package/internal/RenderContainer/RenderInnerContainer.d.ts +10 -2
  2966. package/internal/RenderContainer/index/index.js.map +1 -1
  2967. package/internal/RenderLayer/RenderLayer/RenderLayer.js +36 -25
  2968. package/internal/RenderLayer/RenderLayer/RenderLayer.js.map +1 -1
  2969. package/internal/RenderLayer/RenderLayer.d.ts +11 -6
  2970. package/internal/RenderLayer/index/index.js.map +1 -1
  2971. package/internal/ResizeDetector/ResizeDetector/ResizeDetector.js +12 -10
  2972. package/internal/ResizeDetector/ResizeDetector/ResizeDetector.js.map +1 -1
  2973. package/internal/ResizeDetector/ResizeDetector.d.ts +1 -0
  2974. package/internal/ResizeDetector/ResizeDetector.styles/ResizeDetector.styles.js +9 -35
  2975. package/internal/ResizeDetector/ResizeDetector.styles/ResizeDetector.styles.js.map +1 -1
  2976. package/internal/ResizeDetector/ResizeDetector.styles.d.ts +2 -1
  2977. package/internal/ResizeDetector/index/index.js.map +1 -1
  2978. package/internal/TextWidthHelper/TextWidthHelper/TextWidthHelper.js +50 -0
  2979. package/internal/TextWidthHelper/TextWidthHelper/TextWidthHelper.js.map +1 -0
  2980. package/internal/TextWidthHelper/TextWidthHelper/package.json +6 -0
  2981. package/internal/TextWidthHelper/TextWidthHelper.d.ts +15 -0
  2982. package/internal/TextWidthHelper/TextWidthHelper.styles/TextWidthHelper.styles.js +14 -0
  2983. package/internal/TextWidthHelper/TextWidthHelper.styles/TextWidthHelper.styles.js.map +1 -0
  2984. package/internal/TextWidthHelper/TextWidthHelper.styles/package.json +6 -0
  2985. package/internal/TextWidthHelper/TextWidthHelper.styles.d.ts +4 -0
  2986. package/internal/ThemePlayground/AnotherInputsPlayground/AnotherInputsPlayground.js +3 -5
  2987. package/internal/ThemePlayground/AnotherInputsPlayground/AnotherInputsPlayground.js.map +1 -1
  2988. package/internal/ThemePlayground/AnotherInputsPlayground.d.ts +11 -6
  2989. package/internal/ThemePlayground/CheckboxPlayground/CheckboxPlayground.js +6 -20
  2990. package/internal/ThemePlayground/CheckboxPlayground/CheckboxPlayground.js.map +1 -1
  2991. package/internal/ThemePlayground/CheckboxPlayground.d.ts +1 -4
  2992. package/internal/ThemePlayground/ComponentsGroup/ComponentsGroup.js +7 -7
  2993. package/internal/ThemePlayground/ComponentsGroup/ComponentsGroup.js.map +1 -1
  2994. package/internal/ThemePlayground/ComponentsGroup.d.ts +1 -1
  2995. package/internal/ThemePlayground/CurrencyInputPlayground/CurrencyInputPlayground.js +2 -4
  2996. package/internal/ThemePlayground/CurrencyInputPlayground/CurrencyInputPlayground.js.map +1 -1
  2997. package/internal/ThemePlayground/CurrencyInputPlayground.d.ts +7 -6
  2998. package/internal/ThemePlayground/FxInputPlayground/FxInputPlayground.js +12 -10
  2999. package/internal/ThemePlayground/FxInputPlayground/FxInputPlayground.js.map +1 -1
  3000. package/internal/ThemePlayground/FxInputPlayground.d.ts +6 -4
  3001. package/internal/ThemePlayground/HintPlayground/HintPlayground.js +6 -8
  3002. package/internal/ThemePlayground/HintPlayground/HintPlayground.js.map +1 -1
  3003. package/internal/ThemePlayground/HintPlayground.d.ts +1 -1
  3004. package/internal/ThemePlayground/PagingPlayground/PagingPlayground.js +4 -6
  3005. package/internal/ThemePlayground/PagingPlayground/PagingPlayground.js.map +1 -1
  3006. package/internal/ThemePlayground/PagingPlayground.d.ts +6 -6
  3007. package/internal/ThemePlayground/Playground/Playground.js +107 -93
  3008. package/internal/ThemePlayground/Playground/Playground.js.map +1 -1
  3009. package/internal/ThemePlayground/Playground.d.ts +4 -2
  3010. package/internal/ThemePlayground/Playground.md +7 -7
  3011. package/internal/ThemePlayground/Playground.styles/Playground.styles.js +28 -201
  3012. package/internal/ThemePlayground/Playground.styles/Playground.styles.js.map +1 -1
  3013. package/internal/ThemePlayground/Playground.styles.d.ts +13 -10
  3014. package/internal/ThemePlayground/RadioPlayground/RadioPlayground.js +9 -23
  3015. package/internal/ThemePlayground/RadioPlayground/RadioPlayground.js.map +1 -1
  3016. package/internal/ThemePlayground/RadioPlayground.d.ts +1 -4
  3017. package/internal/ThemePlayground/SelectPlayground/SelectPlayground.js +2 -4
  3018. package/internal/ThemePlayground/SelectPlayground/SelectPlayground.js.map +1 -1
  3019. package/internal/ThemePlayground/SelectPlayground.d.ts +9 -6
  3020. package/internal/ThemePlayground/ShowcaseGroup/ShowcaseGroup.js +9 -3
  3021. package/internal/ThemePlayground/ShowcaseGroup/ShowcaseGroup.js.map +1 -1
  3022. package/internal/ThemePlayground/ShowcaseGroup.d.ts +0 -1
  3023. package/internal/ThemePlayground/SizesGroup/SizesGroup.js +29 -0
  3024. package/internal/ThemePlayground/SizesGroup/SizesGroup.js.map +1 -0
  3025. package/internal/ThemePlayground/SizesGroup/package.json +6 -0
  3026. package/internal/ThemePlayground/SizesGroup.d.ts +5 -0
  3027. package/internal/ThemePlayground/SwitcherPlayground/SwitcherPlayground.js +2 -4
  3028. package/internal/ThemePlayground/SwitcherPlayground/SwitcherPlayground.js.map +1 -1
  3029. package/internal/ThemePlayground/SwitcherPlayground.d.ts +9 -8
  3030. package/internal/ThemePlayground/ThemeContextPlayground/ThemeContextPlayground.js +55 -38
  3031. package/internal/ThemePlayground/ThemeContextPlayground/ThemeContextPlayground.js.map +1 -1
  3032. package/internal/ThemePlayground/ThemeContextPlayground.d.ts +8 -2
  3033. package/internal/ThemePlayground/ThemeEditor/ThemeEditor.js +82 -53
  3034. package/internal/ThemePlayground/ThemeEditor/ThemeEditor.js.map +1 -1
  3035. package/internal/ThemePlayground/ThemeEditor.d.ts +1 -4
  3036. package/internal/ThemePlayground/TogglePlayground/TogglePlayground.js +10 -24
  3037. package/internal/ThemePlayground/TogglePlayground/TogglePlayground.js.map +1 -1
  3038. package/internal/ThemePlayground/TogglePlayground.d.ts +2 -7
  3039. package/internal/ThemePlayground/TokenInputPlayground/TokenInputPlayground.js +5 -9
  3040. package/internal/ThemePlayground/TokenInputPlayground/TokenInputPlayground.js.map +1 -1
  3041. package/internal/ThemePlayground/TokenInputPlayground.d.ts +6 -4
  3042. package/internal/ThemePlayground/VariableValue/VariableValue.js +64 -47
  3043. package/internal/ThemePlayground/VariableValue/VariableValue.js.map +1 -1
  3044. package/internal/ThemePlayground/VariableValue.d.ts +8 -6
  3045. package/internal/ThemePlayground/constants/constants.js +28 -3
  3046. package/internal/ThemePlayground/constants/constants.js.map +1 -1
  3047. package/internal/ThemePlayground/constants.d.ts +7 -2
  3048. package/internal/ThemePlayground/darkTheme/darkTheme.js +119 -72
  3049. package/internal/ThemePlayground/darkTheme/darkTheme.js.map +1 -1
  3050. package/internal/ThemePlayground/darkTheme.d.ts +72 -312
  3051. package/internal/ThemePlayground/helpers/helpers.js +1 -2
  3052. package/internal/ThemePlayground/helpers/helpers.js.map +1 -1
  3053. package/internal/ThemePlayground/helpers.d.ts +1 -1
  3054. package/internal/ThemeShowcase/ThemeShowcase/ThemeShowcase.js +182 -183
  3055. package/internal/ThemeShowcase/ThemeShowcase/ThemeShowcase.js.map +1 -1
  3056. package/internal/ThemeShowcase/ThemeShowcase.d.ts +1 -1
  3057. package/internal/ThemeShowcase/ThemeShowcase.md +13 -13
  3058. package/internal/ThemeShowcase/ThemeShowcase.styles/ThemeShowcase.styles.js +42 -203
  3059. package/internal/ThemeShowcase/ThemeShowcase.styles/ThemeShowcase.styles.js.map +1 -1
  3060. package/internal/ThemeShowcase/ThemeShowcase.styles.d.ts +10 -3
  3061. package/internal/ThemeShowcase/VariablesCollector/VariablesCollector.js +79 -66
  3062. package/internal/ThemeShowcase/VariablesCollector/VariablesCollector.js.map +1 -1
  3063. package/internal/ThemeShowcase/VariablesCollector.d.ts +1 -1
  3064. package/internal/ZIndex/ZIndex/ZIndex.js +73 -37
  3065. package/internal/ZIndex/ZIndex/ZIndex.js.map +1 -1
  3066. package/internal/ZIndex/ZIndex.d.ts +24 -12
  3067. package/internal/ZIndex/ZIndexStorage/ZIndexStorage.js +18 -14
  3068. package/internal/ZIndex/ZIndexStorage/ZIndexStorage.js.map +1 -1
  3069. package/internal/ZIndex/ZIndexStorage.d.ts +4 -6
  3070. package/internal/ZIndex/index/index.js.map +1 -1
  3071. package/internal/icons/16px/icon.styles/icon.styles.js +5 -24
  3072. package/internal/icons/16px/icon.styles/icon.styles.js.map +1 -1
  3073. package/internal/icons/16px/icon.styles.d.ts +1 -1
  3074. package/internal/icons/16px/index/index.js +175 -67
  3075. package/internal/icons/16px/index/index.js.map +1 -1
  3076. package/internal/icons/16px/index.d.ts +20 -14
  3077. package/internal/icons/20px/Icon/Icon.js +20 -26
  3078. package/internal/icons/20px/Icon/Icon.js.map +1 -1
  3079. package/internal/icons/20px/Icon.d.ts +11 -14
  3080. package/internal/icons/20px/icon.styles/icon.styles.js +8 -28
  3081. package/internal/icons/20px/icon.styles/icon.styles.js.map +1 -1
  3082. package/internal/icons/20px/icon.styles.d.ts +2 -1
  3083. package/internal/icons/20px/index/index.js +2 -1
  3084. package/internal/icons/20px/index/index.js.map +1 -1
  3085. package/internal/icons/20px/index.d.ts +1 -0
  3086. package/internal/icons/20px/svg/package.json +6 -0
  3087. package/internal/icons/20px/svg/svg.js +115 -0
  3088. package/internal/icons/20px/svg/svg.js.map +1 -0
  3089. package/internal/icons/20px/svg.d.ts +14 -0
  3090. package/internal/icons/CloudIcon/CloudIcon.js +5 -3
  3091. package/internal/icons/CloudIcon/CloudIcon.js.map +1 -1
  3092. package/internal/icons/CloudIcon.d.ts +0 -1
  3093. package/internal/icons/CrossIcon/CrossIcon.js +6 -4
  3094. package/internal/icons/CrossIcon/CrossIcon.js.map +1 -1
  3095. package/internal/icons/CrossIcon.d.ts +0 -1
  3096. package/internal/icons/SpinnerIcon/SpinnerIcon.js +74 -10
  3097. package/internal/icons/SpinnerIcon/SpinnerIcon.js.map +1 -1
  3098. package/internal/icons/SpinnerIcon.d.ts +26 -16
  3099. package/internal/icons/SpinnerIcon.styles/SpinnerIcon.styles.js +11 -24
  3100. package/internal/icons/SpinnerIcon.styles/SpinnerIcon.styles.js.map +1 -1
  3101. package/internal/icons/SpinnerIcon.styles.d.ts +3 -1
  3102. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon16Light/ArrowALeftIcon16Light.js +11 -0
  3103. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon16Light/ArrowALeftIcon16Light.js.map +1 -0
  3104. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon16Light/package.json +6 -0
  3105. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon16Light.d.ts +2 -0
  3106. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon20Light/ArrowALeftIcon20Light.js +12 -0
  3107. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon20Light/ArrowALeftIcon20Light.js.map +1 -0
  3108. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon20Light/package.json +6 -0
  3109. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon20Light.d.ts +2 -0
  3110. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon24Regular/ArrowALeftIcon24Regular.js +12 -0
  3111. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon24Regular/ArrowALeftIcon24Regular.js.map +1 -0
  3112. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon24Regular/package.json +6 -0
  3113. package/internal/icons2022/ArrowALeftIcon/ArrowALeftIcon24Regular.d.ts +2 -0
  3114. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon16Light/ArrowARightIcon16Light.js +11 -0
  3115. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon16Light/ArrowARightIcon16Light.js.map +1 -0
  3116. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon16Light/package.json +6 -0
  3117. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon16Light.d.ts +2 -0
  3118. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon20Light/ArrowARightIcon20Light.js +12 -0
  3119. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon20Light/ArrowARightIcon20Light.js.map +1 -0
  3120. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon20Light/package.json +6 -0
  3121. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon20Light.d.ts +2 -0
  3122. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon24Regular/ArrowARightIcon24Regular.js +12 -0
  3123. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon24Regular/ArrowARightIcon24Regular.js.map +1 -0
  3124. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon24Regular/package.json +6 -0
  3125. package/internal/icons2022/ArrowARightIcon/ArrowARightIcon24Regular.d.ts +2 -0
  3126. package/internal/icons2022/ArrowAUpIcon/ArrowAUp16Light/ArrowAUp16Light.js +11 -0
  3127. package/internal/icons2022/ArrowAUpIcon/ArrowAUp16Light/ArrowAUp16Light.js.map +1 -0
  3128. package/internal/icons2022/ArrowAUpIcon/ArrowAUp16Light/package.json +6 -0
  3129. package/internal/icons2022/ArrowAUpIcon/ArrowAUp16Light.d.ts +2 -0
  3130. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon16Regular/ArrowCDownIcon16Regular.js +11 -0
  3131. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon16Regular/ArrowCDownIcon16Regular.js.map +1 -0
  3132. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon16Regular/package.json +6 -0
  3133. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon16Regular.d.ts +2 -0
  3134. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon20Regular/ArrowCDownIcon20Regular.js +12 -0
  3135. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon20Regular/ArrowCDownIcon20Regular.js.map +1 -0
  3136. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon20Regular/package.json +6 -0
  3137. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon20Regular.d.ts +2 -0
  3138. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon24Regular/ArrowCDownIcon24Regular.js +12 -0
  3139. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon24Regular/ArrowCDownIcon24Regular.js.map +1 -0
  3140. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon24Regular/package.json +6 -0
  3141. package/internal/icons2022/ArrowCDownIcon/ArrowCDownIcon24Regular.d.ts +2 -0
  3142. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon16Light/ArrowCRightIcon16Light.js +11 -0
  3143. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon16Light/ArrowCRightIcon16Light.js.map +1 -0
  3144. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon16Light/package.json +6 -0
  3145. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon16Light.d.ts +2 -0
  3146. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon20Light/ArrowCRightIcon20Light.js +12 -0
  3147. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon20Light/ArrowCRightIcon20Light.js.map +1 -0
  3148. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon20Light/package.json +6 -0
  3149. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon20Light.d.ts +2 -0
  3150. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon24Regular/ArrowCRightIcon24Regular.js +12 -0
  3151. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon24Regular/ArrowCRightIcon24Regular.js.map +1 -0
  3152. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon24Regular/package.json +6 -0
  3153. package/internal/icons2022/ArrowCRightIcon/ArrowCRightIcon24Regular.d.ts +2 -0
  3154. package/internal/icons2022/ArrowCUpIcon/ArrowCUpIcon16Regular/ArrowCUpIcon16Regular.js +11 -0
  3155. package/internal/icons2022/ArrowCUpIcon/ArrowCUpIcon16Regular/ArrowCUpIcon16Regular.js.map +1 -0
  3156. package/internal/icons2022/ArrowCUpIcon/ArrowCUpIcon16Regular/package.json +6 -0
  3157. package/internal/icons2022/ArrowCUpIcon/ArrowCUpIcon16Regular.d.ts +2 -0
  3158. package/internal/icons2022/ArrowCollapseCVOpenIcon/ArrowCollapseCVOpenIcon16Regular/ArrowCollapseCVOpenIcon16Regular.js +13 -0
  3159. package/internal/icons2022/ArrowCollapseCVOpenIcon/ArrowCollapseCVOpenIcon16Regular/ArrowCollapseCVOpenIcon16Regular.js.map +1 -0
  3160. package/internal/icons2022/ArrowCollapseCVOpenIcon/ArrowCollapseCVOpenIcon16Regular/package.json +6 -0
  3161. package/internal/icons2022/ArrowCollapseCVOpenIcon/ArrowCollapseCVOpenIcon16Regular.d.ts +2 -0
  3162. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon16Light/ArrowShapeDRadiusUpLeftIcon16Light.js +13 -0
  3163. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon16Light/ArrowShapeDRadiusUpLeftIcon16Light.js.map +1 -0
  3164. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon16Light/package.json +6 -0
  3165. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon16Light.d.ts +2 -0
  3166. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon20Light/ArrowShapeDRadiusUpLeftIcon20Light.js +14 -0
  3167. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon20Light/ArrowShapeDRadiusUpLeftIcon20Light.js.map +1 -0
  3168. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon20Light/package.json +6 -0
  3169. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon20Light.d.ts +2 -0
  3170. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon24Regular/ArrowShapeDRadiusUpLeftIcon24Regular.js +14 -0
  3171. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon24Regular/ArrowShapeDRadiusUpLeftIcon24Regular.js.map +1 -0
  3172. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon24Regular/package.json +6 -0
  3173. package/internal/icons2022/ArrowShapeDRadiusUpLeftIcon/ArrowShapeDRadiusUpLeftIcon24Regular.d.ts +2 -0
  3174. package/internal/icons2022/BaseIcon/BaseIcon.js +44 -0
  3175. package/internal/icons2022/BaseIcon/BaseIcon.js.map +1 -0
  3176. package/internal/icons2022/BaseIcon/package.json +6 -0
  3177. package/internal/icons2022/BaseIcon.d.ts +11 -0
  3178. package/internal/icons2022/CalendarIcon/CalendarIcon16Light/CalendarIcon16Light.js +29 -0
  3179. package/internal/icons2022/CalendarIcon/CalendarIcon16Light/CalendarIcon16Light.js.map +1 -0
  3180. package/internal/icons2022/CalendarIcon/CalendarIcon16Light/package.json +6 -0
  3181. package/internal/icons2022/CalendarIcon/CalendarIcon16Light.d.ts +2 -0
  3182. package/internal/icons2022/CalendarIcon/CalendarIcon20Light/CalendarIcon20Light.js +30 -0
  3183. package/internal/icons2022/CalendarIcon/CalendarIcon20Light/CalendarIcon20Light.js.map +1 -0
  3184. package/internal/icons2022/CalendarIcon/CalendarIcon20Light/package.json +6 -0
  3185. package/internal/icons2022/CalendarIcon/CalendarIcon20Light.d.ts +2 -0
  3186. package/internal/icons2022/CalendarIcon/CalendarIcon24Regular/CalendarIcon24Regular.js +30 -0
  3187. package/internal/icons2022/CalendarIcon/CalendarIcon24Regular/CalendarIcon24Regular.js.map +1 -0
  3188. package/internal/icons2022/CalendarIcon/CalendarIcon24Regular/package.json +6 -0
  3189. package/internal/icons2022/CalendarIcon/CalendarIcon24Regular.d.ts +2 -0
  3190. package/internal/icons2022/CheckAIcon/CheckAIcon16Light/CheckAIcon16Light.js +11 -0
  3191. package/internal/icons2022/CheckAIcon/CheckAIcon16Light/CheckAIcon16Light.js.map +1 -0
  3192. package/internal/icons2022/CheckAIcon/CheckAIcon16Light/package.json +6 -0
  3193. package/internal/icons2022/CheckAIcon/CheckAIcon16Light.d.ts +2 -0
  3194. package/internal/icons2022/CheckAIcon/CheckAIcon16Regular/CheckAIcon16Regular.js +11 -0
  3195. package/internal/icons2022/CheckAIcon/CheckAIcon16Regular/CheckAIcon16Regular.js.map +1 -0
  3196. package/internal/icons2022/CheckAIcon/CheckAIcon16Regular/package.json +6 -0
  3197. package/internal/icons2022/CheckAIcon/CheckAIcon16Regular.d.ts +2 -0
  3198. package/internal/icons2022/CheckAIcon/CheckAIcon16Solid/CheckAIcon16Solid.js +11 -0
  3199. package/internal/icons2022/CheckAIcon/CheckAIcon16Solid/CheckAIcon16Solid.js.map +1 -0
  3200. package/internal/icons2022/CheckAIcon/CheckAIcon16Solid/package.json +6 -0
  3201. package/internal/icons2022/CheckAIcon/CheckAIcon16Solid.d.ts +2 -0
  3202. package/internal/icons2022/CheckAIcon/CheckAIcon20Light/CheckAIcon20Light.js +12 -0
  3203. package/internal/icons2022/CheckAIcon/CheckAIcon20Light/CheckAIcon20Light.js.map +1 -0
  3204. package/internal/icons2022/CheckAIcon/CheckAIcon20Light/package.json +6 -0
  3205. package/internal/icons2022/CheckAIcon/CheckAIcon20Light.d.ts +2 -0
  3206. package/internal/icons2022/CheckAIcon/CheckAIcon20Solid/CheckAIcon20Solid.js +12 -0
  3207. package/internal/icons2022/CheckAIcon/CheckAIcon20Solid/CheckAIcon20Solid.js.map +1 -0
  3208. package/internal/icons2022/CheckAIcon/CheckAIcon20Solid/package.json +6 -0
  3209. package/internal/icons2022/CheckAIcon/CheckAIcon20Solid.d.ts +2 -0
  3210. package/internal/icons2022/CheckAIcon/CheckAIcon24Regular/CheckAIcon24Regular.js +12 -0
  3211. package/internal/icons2022/CheckAIcon/CheckAIcon24Regular/CheckAIcon24Regular.js.map +1 -0
  3212. package/internal/icons2022/CheckAIcon/CheckAIcon24Regular/package.json +6 -0
  3213. package/internal/icons2022/CheckAIcon/CheckAIcon24Regular.d.ts +2 -0
  3214. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon16Light/EyeClosedIcon16Light.js +11 -0
  3215. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon16Light/EyeClosedIcon16Light.js.map +1 -0
  3216. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon16Light/package.json +6 -0
  3217. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon16Light.d.ts +2 -0
  3218. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon20Light/EyeClosedIcon20Light.js +12 -0
  3219. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon20Light/EyeClosedIcon20Light.js.map +1 -0
  3220. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon20Light/package.json +6 -0
  3221. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon20Light.d.ts +2 -0
  3222. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon24Regular/EyeClosedIcon24Regular.js +12 -0
  3223. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon24Regular/EyeClosedIcon24Regular.js.map +1 -0
  3224. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon24Regular/package.json +6 -0
  3225. package/internal/icons2022/EyeClosedIcon/EyeClosedIcon24Regular.d.ts +2 -0
  3226. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon16Light/EyeOpenIcon16Light.js +17 -0
  3227. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon16Light/EyeOpenIcon16Light.js.map +1 -0
  3228. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon16Light/package.json +6 -0
  3229. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon16Light.d.ts +2 -0
  3230. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon20Light/EyeOpenIcon20Light.js +18 -0
  3231. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon20Light/EyeOpenIcon20Light.js.map +1 -0
  3232. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon20Light/package.json +6 -0
  3233. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon20Light.d.ts +2 -0
  3234. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon24Regular/EyeOpenIcon24Regular.js +18 -0
  3235. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon24Regular/EyeOpenIcon24Regular.js.map +1 -0
  3236. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon24Regular/package.json +6 -0
  3237. package/internal/icons2022/EyeOpenIcon/EyeOpenIcon24Regular.d.ts +2 -0
  3238. package/internal/icons2022/LoadingIcon/LoadingIcon.js +43 -0
  3239. package/internal/icons2022/LoadingIcon/LoadingIcon.js.map +1 -0
  3240. package/internal/icons2022/LoadingIcon/package.json +6 -0
  3241. package/internal/icons2022/LoadingIcon.d.ts +4 -0
  3242. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon16Light/MathFunctionIcon16Light.js +13 -0
  3243. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon16Light/MathFunctionIcon16Light.js.map +1 -0
  3244. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon16Light/package.json +6 -0
  3245. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon16Light.d.ts +2 -0
  3246. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon20Light/MathFunctionIcon20Light.js +14 -0
  3247. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon20Light/MathFunctionIcon20Light.js.map +1 -0
  3248. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon20Light/package.json +6 -0
  3249. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon20Light.d.ts +2 -0
  3250. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon24Regular/MathFunctionIcon24Regular.js +14 -0
  3251. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon24Regular/MathFunctionIcon24Regular.js.map +1 -0
  3252. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon24Regular/package.json +6 -0
  3253. package/internal/icons2022/MathFunctionIcon/MathFunctionIcon24Regular.d.ts +2 -0
  3254. package/internal/icons2022/MinusCircleIcon/MinusCircleIcon16Light/MinusCircleIcon16Light.js +15 -0
  3255. package/internal/icons2022/MinusCircleIcon/MinusCircleIcon16Light/MinusCircleIcon16Light.js.map +1 -0
  3256. package/internal/icons2022/MinusCircleIcon/MinusCircleIcon16Light/package.json +6 -0
  3257. package/internal/icons2022/MinusCircleIcon/MinusCircleIcon16Light.d.ts +2 -0
  3258. package/internal/icons2022/MinusCircleIcon/MinusCircleIcon16Regular/MinusCircleIcon16Regular.js +15 -0
  3259. package/internal/icons2022/MinusCircleIcon/MinusCircleIcon16Regular/MinusCircleIcon16Regular.js.map +1 -0
  3260. package/internal/icons2022/MinusCircleIcon/MinusCircleIcon16Regular/package.json +6 -0
  3261. package/internal/icons2022/MinusCircleIcon/MinusCircleIcon16Regular.d.ts +2 -0
  3262. package/internal/icons2022/MinusCircleIcon/MinusCircleIcon20Light/MinusCircleIcon20Light.js +16 -0
  3263. package/internal/icons2022/MinusCircleIcon/MinusCircleIcon20Light/MinusCircleIcon20Light.js.map +1 -0
  3264. package/internal/icons2022/MinusCircleIcon/MinusCircleIcon20Light/package.json +6 -0
  3265. package/internal/icons2022/MinusCircleIcon/MinusCircleIcon20Light.d.ts +2 -0
  3266. package/internal/icons2022/MinusCircleIcon/MinusCircleIcon24Regular/MinusCircleIcon24Regular.js +16 -0
  3267. package/internal/icons2022/MinusCircleIcon/MinusCircleIcon24Regular/MinusCircleIcon24Regular.js.map +1 -0
  3268. package/internal/icons2022/MinusCircleIcon/MinusCircleIcon24Regular/package.json +6 -0
  3269. package/internal/icons2022/MinusCircleIcon/MinusCircleIcon24Regular.d.ts +2 -0
  3270. package/internal/icons2022/NetUploadIcon/NetUploadIcon16Light/NetUploadIcon16Light.js +13 -0
  3271. package/internal/icons2022/NetUploadIcon/NetUploadIcon16Light/NetUploadIcon16Light.js.map +1 -0
  3272. package/internal/icons2022/NetUploadIcon/NetUploadIcon16Light/package.json +6 -0
  3273. package/internal/icons2022/NetUploadIcon/NetUploadIcon16Light.d.ts +2 -0
  3274. package/internal/icons2022/NetUploadIcon/NetUploadIcon20Light/NetUploadIcon20Light.js +14 -0
  3275. package/internal/icons2022/NetUploadIcon/NetUploadIcon20Light/NetUploadIcon20Light.js.map +1 -0
  3276. package/internal/icons2022/NetUploadIcon/NetUploadIcon20Light/package.json +6 -0
  3277. package/internal/icons2022/NetUploadIcon/NetUploadIcon20Light.d.ts +2 -0
  3278. package/internal/icons2022/NetUploadIcon/NetUploadIcon24Regular/NetUploadIcon24Regular.js +14 -0
  3279. package/internal/icons2022/NetUploadIcon/NetUploadIcon24Regular/NetUploadIcon24Regular.js.map +1 -0
  3280. package/internal/icons2022/NetUploadIcon/NetUploadIcon24Regular/package.json +6 -0
  3281. package/internal/icons2022/NetUploadIcon/NetUploadIcon24Regular.d.ts +2 -0
  3282. package/internal/icons2022/QuestionCircleIcon/QuestionCircleIcon16Solid/QuestionCircleIcon16Solid.js +13 -0
  3283. package/internal/icons2022/QuestionCircleIcon/QuestionCircleIcon16Solid/QuestionCircleIcon16Solid.js.map +1 -0
  3284. package/internal/icons2022/QuestionCircleIcon/QuestionCircleIcon16Solid/package.json +6 -0
  3285. package/internal/icons2022/QuestionCircleIcon/QuestionCircleIcon16Solid.d.ts +2 -0
  3286. package/internal/icons2022/SearchLoupeIcon/SearchLoupeIcon16Regular/SearchLoupeIcon16Regular.js +13 -0
  3287. package/internal/icons2022/SearchLoupeIcon/SearchLoupeIcon16Regular/SearchLoupeIcon16Regular.js.map +1 -0
  3288. package/internal/icons2022/SearchLoupeIcon/SearchLoupeIcon16Regular/package.json +6 -0
  3289. package/internal/icons2022/SearchLoupeIcon/SearchLoupeIcon16Regular.d.ts +2 -0
  3290. package/internal/icons2022/ShapeSquareIcon/ShapeSquareIcon16Solid/ShapeSquareIcon16Solid.js +11 -0
  3291. package/internal/icons2022/ShapeSquareIcon/ShapeSquareIcon16Solid/ShapeSquareIcon16Solid.js.map +1 -0
  3292. package/internal/icons2022/ShapeSquareIcon/ShapeSquareIcon16Solid/package.json +6 -0
  3293. package/internal/icons2022/ShapeSquareIcon/ShapeSquareIcon16Solid.d.ts +2 -0
  3294. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon16Light/UiMenuDotsThreeVIcon16Light.js +15 -0
  3295. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon16Light/UiMenuDotsThreeVIcon16Light.js.map +1 -0
  3296. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon16Light/package.json +6 -0
  3297. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon16Light.d.ts +2 -0
  3298. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon20Regular/UiMenuDotsThreeVIcon20Regular.js +16 -0
  3299. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon20Regular/UiMenuDotsThreeVIcon20Regular.js.map +1 -0
  3300. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon20Regular/package.json +6 -0
  3301. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon20Regular.d.ts +2 -0
  3302. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon24Regular/UiMenuDotsThreeVIcon24Regular.js +16 -0
  3303. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon24Regular/UiMenuDotsThreeVIcon24Regular.js.map +1 -0
  3304. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon24Regular/package.json +6 -0
  3305. package/internal/icons2022/UiMenuDotsThreeVIcon/UiMenuDotsThreeVIcon24Regular.d.ts +2 -0
  3306. package/internal/icons2022/XIcon/XIcon16Light/XIcon16Light.js +11 -0
  3307. package/internal/icons2022/XIcon/XIcon16Light/XIcon16Light.js.map +1 -0
  3308. package/internal/icons2022/XIcon/XIcon16Light/package.json +6 -0
  3309. package/internal/icons2022/XIcon/XIcon16Light.d.ts +2 -0
  3310. package/internal/icons2022/XIcon/XIcon16Regular/XIcon16Regular.js +11 -0
  3311. package/internal/icons2022/XIcon/XIcon16Regular/XIcon16Regular.js.map +1 -0
  3312. package/internal/icons2022/XIcon/XIcon16Regular/package.json +6 -0
  3313. package/internal/icons2022/XIcon/XIcon16Regular.d.ts +2 -0
  3314. package/internal/icons2022/XIcon/XIcon20Light/XIcon20Light.js +12 -0
  3315. package/internal/icons2022/XIcon/XIcon20Light/XIcon20Light.js.map +1 -0
  3316. package/internal/icons2022/XIcon/XIcon20Light/package.json +6 -0
  3317. package/internal/icons2022/XIcon/XIcon20Light.d.ts +2 -0
  3318. package/internal/icons2022/XIcon/XIcon20Regular/XIcon20Regular.js +12 -0
  3319. package/internal/icons2022/XIcon/XIcon20Regular/XIcon20Regular.js.map +1 -0
  3320. package/internal/icons2022/XIcon/XIcon20Regular/package.json +6 -0
  3321. package/internal/icons2022/XIcon/XIcon20Regular.d.ts +2 -0
  3322. package/internal/icons2022/XIcon/XIcon24Regular/XIcon24Regular.js +12 -0
  3323. package/internal/icons2022/XIcon/XIcon24Regular/XIcon24Regular.js.map +1 -0
  3324. package/internal/icons2022/XIcon/XIcon24Regular/package.json +6 -0
  3325. package/internal/icons2022/XIcon/XIcon24Regular.d.ts +2 -0
  3326. package/internal/icons2022/iconConstants/iconConstants.js +7 -0
  3327. package/internal/icons2022/iconConstants/iconConstants.js.map +1 -0
  3328. package/internal/icons2022/iconConstants/package.json +6 -0
  3329. package/internal/icons2022/iconConstants.d.ts +8 -0
  3330. package/internal/icons2022/iconSizer/iconSizer.js +39 -0
  3331. package/internal/icons2022/iconSizer/iconSizer.js.map +1 -0
  3332. package/internal/icons2022/iconSizer/package.json +6 -0
  3333. package/internal/icons2022/iconSizer.d.ts +11 -0
  3334. package/internal/themes/DarkTheme/DarkTheme.js +270 -0
  3335. package/internal/themes/DarkTheme/DarkTheme.js.map +1 -0
  3336. package/internal/themes/DarkTheme/package.json +6 -0
  3337. package/internal/themes/DarkTheme.d.ts +142 -0
  3338. package/internal/themes/DefaultTheme/DefaultTheme.js +3134 -413
  3339. package/internal/themes/DefaultTheme/DefaultTheme.js.map +1 -1
  3340. package/internal/themes/DefaultTheme.d.ts +1124 -202
  3341. package/internal/themes/NotFlat/NotFlat.js +311 -0
  3342. package/internal/themes/NotFlat/NotFlat.js.map +1 -0
  3343. package/internal/themes/NotFlat/package.json +6 -0
  3344. package/internal/themes/NotFlat.d.ts +134 -0
  3345. package/internal/themes/OldColors/OldColors.js +172 -0
  3346. package/internal/themes/OldColors/OldColors.js.map +1 -0
  3347. package/internal/themes/OldColors/package.json +6 -0
  3348. package/internal/themes/OldColors.d.ts +116 -0
  3349. package/internal/themes/Theme2022/Theme2022.js +512 -0
  3350. package/internal/themes/Theme2022/Theme2022.js.map +1 -0
  3351. package/internal/themes/Theme2022/package.json +6 -0
  3352. package/internal/themes/Theme2022.d.ts +306 -0
  3353. package/internal/themes/Theme2022Dark/Theme2022Dark.js +287 -0
  3354. package/internal/themes/Theme2022Dark/Theme2022Dark.js.map +1 -0
  3355. package/internal/themes/Theme2022Dark/package.json +6 -0
  3356. package/internal/themes/Theme2022Dark.d.ts +192 -0
  3357. package/lib/ConditionalHandler/ConditionalHandler.js +4 -6
  3358. package/lib/ConditionalHandler/ConditionalHandler.js.map +1 -1
  3359. package/lib/ConditionalHandler.d.ts +3 -2
  3360. package/lib/InstanceWithAnchorElement/InstanceWithAnchorElement.js +3 -0
  3361. package/lib/InstanceWithAnchorElement/InstanceWithAnchorElement.js.map +1 -0
  3362. package/lib/InstanceWithAnchorElement/package.json +6 -0
  3363. package/lib/InstanceWithAnchorElement.d.ts +5 -0
  3364. package/lib/LayoutEvents/LayoutEvents.js +12 -4
  3365. package/lib/LayoutEvents/LayoutEvents.js.map +1 -1
  3366. package/lib/ModalStack/ModalStack.js +65 -6
  3367. package/lib/ModalStack/ModalStack.js.map +1 -1
  3368. package/lib/ModalStack.d.ts +6 -1
  3369. package/lib/SSRSafe/SSRSafe.js +30 -2
  3370. package/lib/SSRSafe/SSRSafe.js.map +1 -1
  3371. package/lib/SSRSafe.d.ts +5 -0
  3372. package/lib/Supports/Supports.js.map +1 -1
  3373. package/lib/Upgrades/Upgrades.js +16 -0
  3374. package/lib/Upgrades/Upgrades.js.map +1 -1
  3375. package/lib/Upgrades.d.ts +2 -0
  3376. package/lib/animation/index/index.js +2 -2
  3377. package/lib/animation/index/index.js.map +1 -1
  3378. package/lib/animation/index.d.ts +1 -1
  3379. package/lib/animation/presets/presets.js.map +1 -1
  3380. package/lib/animation/stepper/stepper.js.map +1 -1
  3381. package/lib/callChildRef/callChildRef/callChildRef.js +14 -0
  3382. package/lib/callChildRef/callChildRef/callChildRef.js.map +1 -0
  3383. package/lib/callChildRef/callChildRef/package.json +6 -0
  3384. package/lib/callChildRef/callChildRef.d.ts +3 -0
  3385. package/lib/chars/chars.js +8 -0
  3386. package/lib/chars/chars.js.map +1 -0
  3387. package/lib/chars/package.json +6 -0
  3388. package/lib/chars.d.ts +8 -0
  3389. package/lib/client/client.js +16 -0
  3390. package/lib/client/client.js.map +1 -0
  3391. package/lib/client/package.json +6 -0
  3392. package/lib/client.d.ts +16 -0
  3393. package/lib/createPropsGetter/createPropsGetter.js +1 -0
  3394. package/lib/createPropsGetter/createPropsGetter.js.map +1 -1
  3395. package/lib/createPropsGetter.d.ts +2 -1
  3396. package/lib/currentEnvironment/currentEnvironment.js +34 -3
  3397. package/lib/currentEnvironment/currentEnvironment.js.map +1 -1
  3398. package/lib/date/InternalDate/InternalDate.js +22 -11
  3399. package/lib/date/InternalDate/InternalDate.js.map +1 -1
  3400. package/lib/date/InternalDate.d.ts +1 -1
  3401. package/lib/date/InternalDateCalculator/InternalDateCalculator.js +16 -7
  3402. package/lib/date/InternalDateCalculator/InternalDateCalculator.js.map +1 -1
  3403. package/lib/date/InternalDateCalculator.d.ts +1 -1
  3404. package/lib/date/InternalDateGetter/InternalDateGetter.js +24 -10
  3405. package/lib/date/InternalDateGetter/InternalDateGetter.js.map +1 -1
  3406. package/lib/date/InternalDateGetter.d.ts +1 -1
  3407. package/lib/date/InternalDateSetter/InternalDateSetter.js +1 -3
  3408. package/lib/date/InternalDateSetter/InternalDateSetter.js.map +1 -1
  3409. package/lib/date/InternalDateTransformer/InternalDateTransformer.js +12 -4
  3410. package/lib/date/InternalDateTransformer/InternalDateTransformer.js.map +1 -1
  3411. package/lib/date/InternalDateTransformer.d.ts +6 -6
  3412. package/lib/date/InternalDateValidator/InternalDateValidator.js +84 -39
  3413. package/lib/date/InternalDateValidator/InternalDateValidator.js.map +1 -1
  3414. package/lib/date/InternalDateValidator.d.ts +1 -1
  3415. package/lib/date/constants/constants.js.map +1 -1
  3416. package/lib/date/localeSets/localeSets.js.map +1 -1
  3417. package/lib/date/types/types.js.map +1 -1
  3418. package/lib/date/types.d.ts +4 -0
  3419. package/lib/dom/getDOMRect/getDOMRect.js +40 -0
  3420. package/lib/dom/getDOMRect/getDOMRect.js.map +1 -0
  3421. package/lib/dom/getDOMRect/package.json +6 -0
  3422. package/lib/dom/getDOMRect.d.ts +11 -0
  3423. package/lib/dom/getScrollWidth/getScrollWidth.js +1 -1
  3424. package/lib/dom/getScrollWidth/getScrollWidth.js.map +1 -1
  3425. package/lib/dom/tabbableHelpers/package.json +6 -0
  3426. package/lib/dom/tabbableHelpers/tabbableHelpers.js +34 -0
  3427. package/lib/dom/tabbableHelpers/tabbableHelpers.js.map +1 -0
  3428. package/lib/dom/tabbableHelpers.d.ts +16 -0
  3429. package/lib/events/MouseDrag/MouseDrag.js +37 -33
  3430. package/lib/events/MouseDrag/MouseDrag.js.map +1 -1
  3431. package/lib/events/fixClickFocusIE/fixClickFocusIE.js +2 -2
  3432. package/lib/events/fixClickFocusIE/fixClickFocusIE.js.map +1 -1
  3433. package/lib/events/fixFirefoxModifiedClickOnLabel/fixFirefoxModifiedClickOnLabel.js +19 -0
  3434. package/lib/events/fixFirefoxModifiedClickOnLabel/fixFirefoxModifiedClickOnLabel.js.map +1 -0
  3435. package/lib/events/fixFirefoxModifiedClickOnLabel/package.json +6 -0
  3436. package/lib/events/fixFirefoxModifiedClickOnLabel.d.ts +2 -0
  3437. package/lib/events/keyListener/keyListener.js +22 -0
  3438. package/lib/events/keyListener/keyListener.js.map +1 -0
  3439. package/lib/events/keyListener/package.json +6 -0
  3440. package/lib/events/keyListener.d.ts +7 -0
  3441. package/lib/events/keyboard/KeyboardEventCodes/KeyboardEventCodes.js.map +1 -1
  3442. package/lib/events/keyboard/KeyboardMapKeys/KeyboardMapKeys.js +4 -2
  3443. package/lib/events/keyboard/KeyboardMapKeys/KeyboardMapKeys.js.map +1 -1
  3444. package/lib/events/keyboard/KeyboardMapKeys.d.ts +2 -2
  3445. package/lib/events/keyboard/extractCode/extractCode.js +5 -5
  3446. package/lib/events/keyboard/extractCode/extractCode.js.map +1 -1
  3447. package/lib/events/keyboard/identifiers/identifiers.js +13 -2
  3448. package/lib/events/keyboard/identifiers/identifiers.js.map +1 -1
  3449. package/lib/events/keyboard/identifiers.d.ts +1 -0
  3450. package/lib/events/stopPropagation/stopPropagation.js.map +1 -1
  3451. package/lib/events/tabListener/tabListener.js +2 -15
  3452. package/lib/events/tabListener/tabListener.js.map +1 -1
  3453. package/lib/events/tabListener.d.ts +1 -6
  3454. package/lib/extractKeyboardAction/extractKeyboardAction.js +1 -4
  3455. package/lib/extractKeyboardAction/extractKeyboardAction.js.map +1 -1
  3456. package/lib/extractKeyboardAction.d.ts +1 -1
  3457. package/lib/filterProps/filterProps.js +0 -1
  3458. package/lib/filterProps/filterProps.js.map +1 -1
  3459. package/lib/forwardRefAndName/forwardRefAndName.js +22 -0
  3460. package/lib/forwardRefAndName/forwardRefAndName.js.map +1 -0
  3461. package/lib/forwardRefAndName/package.json +6 -0
  3462. package/lib/forwardRefAndName.d.ts +9 -0
  3463. package/lib/getDisplayName/getDisplayName.js +3 -0
  3464. package/lib/getDisplayName/getDisplayName.js.map +1 -0
  3465. package/lib/getDisplayName/package.json +6 -0
  3466. package/lib/getDisplayName.d.ts +3 -0
  3467. package/lib/listenFocusOutside/listenFocusOutside.js +18 -17
  3468. package/lib/listenFocusOutside/listenFocusOutside.js.map +1 -1
  3469. package/lib/listenFocusOutside.d.ts +5 -1
  3470. package/lib/locale/LOCALECONTEXT.md +222 -246
  3471. package/lib/locale/LocaleContext/LocaleContext.js +3 -2
  3472. package/lib/locale/LocaleContext/LocaleContext.js.map +1 -1
  3473. package/lib/locale/LocaleHelper/LocaleHelper.js +1 -5
  3474. package/lib/locale/LocaleHelper/LocaleHelper.js.map +1 -1
  3475. package/lib/locale/constants/constants.js.map +1 -1
  3476. package/lib/locale/decorators/decorators.js +9 -7
  3477. package/lib/locale/decorators/decorators.js.map +1 -1
  3478. package/lib/locale/decorators.d.ts +4 -3
  3479. package/lib/locale/index/index.js.map +1 -1
  3480. package/lib/locale/types/types.js.map +1 -1
  3481. package/lib/locale/types.d.ts +11 -6
  3482. package/lib/locale/useLocaleForControl/package.json +6 -0
  3483. package/lib/locale/useLocaleForControl/useLocaleForControl.js +12 -0
  3484. package/lib/locale/useLocaleForControl/useLocaleForControl.js.map +1 -0
  3485. package/lib/locale/useLocaleForControl.d.ts +3 -0
  3486. package/lib/memo/memo.js +2 -4
  3487. package/lib/memo/memo.js.map +1 -1
  3488. package/lib/memo.d.ts +3 -1
  3489. package/lib/needsPolyfillPlaceholder/needsPolyfillPlaceholder.js +21 -0
  3490. package/lib/needsPolyfillPlaceholder/needsPolyfillPlaceholder.js.map +1 -0
  3491. package/lib/needsPolyfillPlaceholder/package.json +6 -0
  3492. package/lib/needsPolyfillPlaceholder.d.ts +6 -0
  3493. package/lib/net/fetch/fetch.js +2 -3
  3494. package/lib/net/fetch/fetch.js.map +1 -1
  3495. package/lib/reactGetTextContent/reactGetTextContent.js +1 -2
  3496. package/lib/reactGetTextContent/reactGetTextContent.js.map +1 -1
  3497. package/lib/rootNode/getRootNode/getRootNode.js +71 -0
  3498. package/lib/rootNode/getRootNode/getRootNode.js.map +1 -0
  3499. package/lib/rootNode/getRootNode/package.json +6 -0
  3500. package/lib/rootNode/getRootNode.d.ts +12 -0
  3501. package/lib/rootNode/index/index.js +2 -0
  3502. package/lib/rootNode/index/index.js.map +1 -0
  3503. package/lib/rootNode/index/package.json +6 -0
  3504. package/lib/rootNode/index.d.ts +2 -0
  3505. package/lib/rootNode/package.json +6 -0
  3506. package/lib/rootNode/rootNodeDecorator/package.json +6 -0
  3507. package/lib/rootNode/rootNodeDecorator/rootNodeDecorator.js +60 -0
  3508. package/lib/rootNode/rootNodeDecorator/rootNodeDecorator.js.map +1 -0
  3509. package/lib/rootNode/rootNodeDecorator.d.ts +56 -0
  3510. package/lib/stringUtils/package.json +6 -0
  3511. package/lib/stringUtils/stringUtils.js +15 -0
  3512. package/lib/stringUtils/stringUtils.js.map +1 -0
  3513. package/lib/stringUtils.d.ts +1 -0
  3514. package/lib/styles/ColorFactory/ColorFactory.js +14 -14
  3515. package/lib/styles/ColorFactory/ColorFactory.js.map +1 -1
  3516. package/lib/styles/ColorFunctions/ColorFunctions.js +2 -2
  3517. package/lib/styles/ColorFunctions/ColorFunctions.js.map +1 -1
  3518. package/lib/styles/ColorHelpers/ColorHelpers.js +26 -9
  3519. package/lib/styles/ColorHelpers/ColorHelpers.js.map +1 -1
  3520. package/lib/styles/ColorHelpers.d.ts +1 -0
  3521. package/lib/styles/ColorKeywords/ColorKeywords.js.map +1 -1
  3522. package/lib/styles/ColorObject/ColorObject.js +10 -8
  3523. package/lib/styles/ColorObject/ColorObject.js.map +1 -1
  3524. package/lib/styles/ColorObject.d.ts +1 -0
  3525. package/lib/styles/DimensionFunctions/DimensionFunctions.js.map +1 -1
  3526. package/lib/styles/HoldSelectionColor/HoldSelectionColor.js +9 -0
  3527. package/lib/styles/HoldSelectionColor/HoldSelectionColor.js.map +1 -0
  3528. package/lib/styles/HoldSelectionColor/package.json +6 -0
  3529. package/lib/styles/HoldSelectionColor.d.ts +1 -0
  3530. package/lib/styles/Mixins/Mixins.js +3 -21
  3531. package/lib/styles/Mixins/Mixins.js.map +1 -1
  3532. package/lib/styles/getLabGrotesqueBaselineCompensation/getLabGrotesqueBaselineCompensation.js +9 -0
  3533. package/lib/styles/getLabGrotesqueBaselineCompensation/getLabGrotesqueBaselineCompensation.js.map +1 -0
  3534. package/lib/styles/getLabGrotesqueBaselineCompensation/package.json +6 -0
  3535. package/lib/styles/getLabGrotesqueBaselineCompensation.d.ts +1 -0
  3536. package/lib/taskWithDelayAndMinimalDuration/package.json +6 -0
  3537. package/lib/taskWithDelayAndMinimalDuration/taskWithDelayAndMinimalDuration.js +76 -0
  3538. package/lib/taskWithDelayAndMinimalDuration/taskWithDelayAndMinimalDuration.js.map +1 -0
  3539. package/lib/taskWithDelayAndMinimalDuration.d.ts +21 -0
  3540. package/lib/theming/AnimationKeyframes/AnimationKeyframes.js +8 -72
  3541. package/lib/theming/AnimationKeyframes/AnimationKeyframes.js.map +1 -1
  3542. package/lib/theming/AnimationKeyframes.d.ts +5 -6
  3543. package/lib/theming/Emotion/Emotion.js +24 -9
  3544. package/lib/theming/Emotion/Emotion.js.map +1 -1
  3545. package/lib/theming/Emotion.d.ts +11 -10
  3546. package/lib/theming/Theme/Theme.js +1 -0
  3547. package/lib/theming/Theme.d.ts +1 -2
  3548. package/lib/theming/ThemeContext/ThemeContext.js +2 -1
  3549. package/lib/theming/ThemeContext/ThemeContext.js.map +1 -1
  3550. package/lib/theming/ThemeContext.d.ts +1 -1
  3551. package/lib/theming/ThemeContext.md +285 -237
  3552. package/lib/theming/ThemeFactory/ThemeFactory.js +29 -24
  3553. package/lib/theming/ThemeFactory/ThemeFactory.js.map +1 -1
  3554. package/lib/theming/ThemeFactory.d.ts +3 -3
  3555. package/lib/theming/ThemeHelpers/ThemeHelpers.js +72 -0
  3556. package/lib/theming/ThemeHelpers/ThemeHelpers.js.map +1 -0
  3557. package/lib/theming/ThemeHelpers/package.json +6 -0
  3558. package/lib/theming/ThemeHelpers.d.ts +21 -0
  3559. package/lib/theming/themes/DarkTheme/DarkTheme.js +4 -0
  3560. package/lib/theming/themes/DarkTheme/DarkTheme.js.map +1 -0
  3561. package/lib/theming/themes/DarkTheme/package.json +6 -0
  3562. package/lib/theming/themes/DarkTheme.d.ts +1 -0
  3563. package/lib/theming/themes/DefaultTheme/DefaultTheme.js +2 -1
  3564. package/lib/theming/themes/DefaultTheme/DefaultTheme.js.map +1 -1
  3565. package/lib/theming/themes/DefaultTheme.d.ts +1 -1
  3566. package/lib/theming/themes/DefaultTheme8pxOld/DefaultTheme8pxOld.js +5 -0
  3567. package/lib/theming/themes/DefaultTheme8pxOld/DefaultTheme8pxOld.js.map +1 -0
  3568. package/lib/theming/themes/DefaultTheme8pxOld/package.json +6 -0
  3569. package/lib/theming/themes/DefaultTheme8pxOld.d.ts +1 -0
  3570. package/lib/theming/themes/DefaultThemeMobile/DefaultThemeMobile.js +5 -0
  3571. package/lib/theming/themes/DefaultThemeMobile/DefaultThemeMobile.js.map +1 -0
  3572. package/lib/theming/themes/DefaultThemeMobile/package.json +6 -0
  3573. package/lib/theming/themes/DefaultThemeMobile.d.ts +3 -0
  3574. package/lib/theming/themes/FlatTheme8pxOld/FlatTheme8pxOld.js +4 -0
  3575. package/lib/theming/themes/FlatTheme8pxOld/FlatTheme8pxOld.js.map +1 -0
  3576. package/lib/theming/themes/FlatTheme8pxOld/package.json +6 -0
  3577. package/lib/theming/themes/FlatTheme8pxOld.d.ts +1 -0
  3578. package/lib/theming/themes/Theme2022/Theme2022.js +5 -0
  3579. package/lib/theming/themes/Theme2022/Theme2022.js.map +1 -0
  3580. package/lib/theming/themes/Theme2022/package.json +6 -0
  3581. package/lib/theming/themes/Theme2022.d.ts +1 -0
  3582. package/lib/theming/themes/Theme2022Dark/Theme2022Dark.js +6 -0
  3583. package/lib/theming/themes/Theme2022Dark/Theme2022Dark.js.map +1 -0
  3584. package/lib/theming/themes/Theme2022Dark/package.json +6 -0
  3585. package/lib/theming/themes/Theme2022Dark.d.ts +1 -0
  3586. package/lib/theming/useTheme/package.json +6 -0
  3587. package/lib/theming/useTheme/useTheme.js +5 -0
  3588. package/lib/theming/useTheme/useTheme.js.map +1 -0
  3589. package/lib/theming/useTheme.d.ts +1 -0
  3590. package/lib/types/props/package.json +6 -0
  3591. package/lib/types/props/props.js +1 -0
  3592. package/lib/types/props/props.js.map +1 -0
  3593. package/lib/types/props.d.ts +1 -0
  3594. package/lib/uidUtils/package.json +6 -0
  3595. package/lib/uidUtils/uidUtils.js +4 -0
  3596. package/lib/uidUtils/uidUtils.js.map +1 -0
  3597. package/lib/uidUtils.d.ts +1 -0
  3598. package/lib/utils/utils.js +160 -29
  3599. package/lib/utils/utils.js.map +1 -1
  3600. package/lib/utils.d.ts +70 -12
  3601. package/lib/withClassWrapper/package.json +6 -0
  3602. package/lib/withClassWrapper/withClassWrapper.js +67 -0
  3603. package/lib/withClassWrapper/withClassWrapper.js.map +1 -0
  3604. package/lib/withClassWrapper.d.ts +71 -0
  3605. package/package.json +139 -23
  3606. package/typings/console.d.ts +3 -3
  3607. package/typings/event-types.d.ts +4 -4
  3608. package/typings/fonts.d.ts +12 -12
  3609. package/typings/global.d.ts +10 -6
  3610. package/typings/html.d.ts +123 -0
  3611. package/typings/images.d.ts +1 -1
  3612. package/typings/normalize-wheel.d.ts +5 -5
  3613. package/typings/stories.d.ts +7 -0
  3614. package/typings/stylis-plugin-extra-scope.d.ts +3 -3
  3615. package/typings/utility-types.d.ts +20 -14
  3616. package/cjs/components/Button/Corners.d.ts +0 -6
  3617. package/cjs/components/Button/Corners.js +0 -5
  3618. package/cjs/components/Button/Corners.js.map +0 -1
  3619. package/cjs/components/DatePicker/Picker.styles.d.ts +0 -4
  3620. package/cjs/components/DatePicker/Picker.styles.js +0 -39
  3621. package/cjs/components/DatePicker/Picker.styles.js.map +0 -1
  3622. package/cjs/components/Fias/Fias.d.ts +0 -130
  3623. package/cjs/components/Fias/Fias.js +0 -343
  3624. package/cjs/components/Fias/Fias.js.map +0 -1
  3625. package/cjs/components/Fias/Fias.md +0 -451
  3626. package/cjs/components/Fias/Fias.styles.d.ts +0 -4
  3627. package/cjs/components/Fias/Fias.styles.js +0 -15
  3628. package/cjs/components/Fias/Fias.styles.js.map +0 -1
  3629. package/cjs/components/Fias/FiasModal.d.ts +0 -15
  3630. package/cjs/components/Fias/FiasModal.js +0 -44
  3631. package/cjs/components/Fias/FiasModal.js.map +0 -1
  3632. package/cjs/components/Fias/FiasSearch/FiasSearch.d.ts +0 -56
  3633. package/cjs/components/Fias/FiasSearch/FiasSearch.js +0 -129
  3634. package/cjs/components/Fias/FiasSearch/FiasSearch.js.map +0 -1
  3635. package/cjs/components/Fias/FiasSearch/FiasSearch.md +0 -78
  3636. package/cjs/components/Fias/Form/FiasComboBox.d.ts +0 -34
  3637. package/cjs/components/Fias/Form/FiasComboBox.js +0 -136
  3638. package/cjs/components/Fias/Form/FiasComboBox.js.map +0 -1
  3639. package/cjs/components/Fias/Form/FiasCountrySelector.d.ts +0 -19
  3640. package/cjs/components/Fias/Form/FiasCountrySelector.js +0 -87
  3641. package/cjs/components/Fias/Form/FiasCountrySelector.js.map +0 -1
  3642. package/cjs/components/Fias/Form/FiasForm.d.ts +0 -70
  3643. package/cjs/components/Fias/Form/FiasForm.js +0 -547
  3644. package/cjs/components/Fias/Form/FiasForm.js.map +0 -1
  3645. package/cjs/components/Fias/Form/FiasForm.styles.d.ts +0 -5
  3646. package/cjs/components/Fias/Form/FiasForm.styles.js +0 -24
  3647. package/cjs/components/Fias/Form/FiasForm.styles.js.map +0 -1
  3648. package/cjs/components/Fias/api/FiasAPI.d.ts +0 -26
  3649. package/cjs/components/Fias/api/FiasAPI.js +0 -288
  3650. package/cjs/components/Fias/api/FiasAPI.js.map +0 -1
  3651. package/cjs/components/Fias/api/FiasAPIResultFactory.d.ts +0 -5
  3652. package/cjs/components/Fias/api/FiasAPIResultFactory.js +0 -16
  3653. package/cjs/components/Fias/api/FiasAPIResultFactory.js.map +0 -1
  3654. package/cjs/components/Fias/api/FiasMockAPI.d.ts +0 -8
  3655. package/cjs/components/Fias/api/FiasMockAPI.js +0 -66
  3656. package/cjs/components/Fias/api/FiasMockAPI.js.map +0 -1
  3657. package/cjs/components/Fias/api/data.json +0 -285
  3658. package/cjs/components/Fias/constants/abbreviations.d.ts +0 -3
  3659. package/cjs/components/Fias/constants/abbreviations.js +0 -158
  3660. package/cjs/components/Fias/constants/abbreviations.js.map +0 -1
  3661. package/cjs/components/Fias/index.d.ts +0 -5
  3662. package/cjs/components/Fias/index.js +0 -5
  3663. package/cjs/components/Fias/index.js.map +0 -1
  3664. package/cjs/components/Fias/locale/index.d.ts +0 -4
  3665. package/cjs/components/Fias/locale/index.js +0 -9
  3666. package/cjs/components/Fias/locale/index.js.map +0 -1
  3667. package/cjs/components/Fias/locale/locales/ru.d.ts +0 -2
  3668. package/cjs/components/Fias/locale/locales/ru.js +0 -72
  3669. package/cjs/components/Fias/locale/locales/ru.js.map +0 -1
  3670. package/cjs/components/Fias/locale/types.d.ts +0 -56
  3671. package/cjs/components/Fias/locale/types.js +0 -1
  3672. package/cjs/components/Fias/logger/FiasLogger.d.ts +0 -8
  3673. package/cjs/components/Fias/logger/FiasLogger.js +0 -12
  3674. package/cjs/components/Fias/logger/FiasLogger.js.map +0 -1
  3675. package/cjs/components/Fias/models/FiasAddress.d.ts +0 -96
  3676. package/cjs/components/Fias/models/FiasAddress.js +0 -576
  3677. package/cjs/components/Fias/models/FiasAddress.js.map +0 -1
  3678. package/cjs/components/Fias/models/FiasAddressElement.d.ts +0 -18
  3679. package/cjs/components/Fias/models/FiasAddressElement.js +0 -187
  3680. package/cjs/components/Fias/models/FiasAddressElement.js.map +0 -1
  3681. package/cjs/components/Fias/models/FiasData.d.ts +0 -20
  3682. package/cjs/components/Fias/models/FiasData.js +0 -106
  3683. package/cjs/components/Fias/models/FiasData.js.map +0 -1
  3684. package/cjs/components/Fias/types.d.ts +0 -142
  3685. package/cjs/components/Fias/types.js +0 -109
  3686. package/cjs/components/Fias/types.js.map +0 -1
  3687. package/cjs/components/LocaleProvider/LocaleProvider.d.ts +0 -24
  3688. package/cjs/components/LocaleProvider/LocaleProvider.js +0 -43
  3689. package/cjs/components/LocaleProvider/LocaleProvider.js.map +0 -1
  3690. package/cjs/components/LocaleProvider/index.d.ts +0 -1
  3691. package/cjs/components/LocaleProvider/index.js +0 -1
  3692. package/cjs/components/LocaleProvider/index.js.map +0 -1
  3693. package/cjs/components/Logotype/Logotype.d.ts +0 -82
  3694. package/cjs/components/Logotype/Logotype.js +0 -203
  3695. package/cjs/components/Logotype/Logotype.js.map +0 -1
  3696. package/cjs/components/Logotype/Logotype.md +0 -33
  3697. package/cjs/components/Logotype/Logotype.styles.d.ts +0 -10
  3698. package/cjs/components/Logotype/Logotype.styles.js +0 -91
  3699. package/cjs/components/Logotype/Logotype.styles.js.map +0 -1
  3700. package/cjs/components/Logotype/ProductWidget.d.ts +0 -3
  3701. package/cjs/components/Logotype/ProductWidget.js +0 -17
  3702. package/cjs/components/Logotype/ProductWidget.js.map +0 -1
  3703. package/cjs/components/Logotype/index.d.ts +0 -1
  3704. package/cjs/components/Logotype/index.js +0 -1
  3705. package/cjs/components/Logotype/index.js.map +0 -1
  3706. package/cjs/components/Logotype/locale/index.d.ts +0 -4
  3707. package/cjs/components/Logotype/locale/index.js +0 -11
  3708. package/cjs/components/Logotype/locale/index.js.map +0 -1
  3709. package/cjs/components/Logotype/locale/locales/en.d.ts +0 -2
  3710. package/cjs/components/Logotype/locale/locales/en.js +0 -5
  3711. package/cjs/components/Logotype/locale/locales/en.js.map +0 -1
  3712. package/cjs/components/Logotype/locale/locales/ru.d.ts +0 -2
  3713. package/cjs/components/Logotype/locale/locales/ru.js +0 -5
  3714. package/cjs/components/Logotype/locale/locales/ru.js.map +0 -1
  3715. package/cjs/components/Logotype/locale/types.d.ts +0 -4
  3716. package/cjs/components/Logotype/locale/types.js +0 -1
  3717. package/cjs/components/Modal/helpers.d.ts +0 -6
  3718. package/cjs/components/Modal/helpers.js +0 -20
  3719. package/cjs/components/Modal/helpers.js.map +0 -1
  3720. package/cjs/components/Spinner/SpinnerFallback.d.ts +0 -29
  3721. package/cjs/components/Spinner/SpinnerFallback.js +0 -104
  3722. package/cjs/components/Spinner/SpinnerFallback.js.map +0 -1
  3723. package/cjs/components/Spinner/fallback_circle.png +0 -0
  3724. package/cjs/components/Spinner/fallback_circle_big.png +0 -0
  3725. package/cjs/components/Spinner/fallback_circle_dimmed.png +0 -0
  3726. package/cjs/components/Spinner/fallback_circle_mini.png +0 -0
  3727. package/cjs/components/Spinner/fallback_circle_normal.png +0 -0
  3728. package/cjs/components/Spinner/fallback_cloud_big.png +0 -0
  3729. package/cjs/components/Spinner/fallback_cloud_normal.png +0 -0
  3730. package/cjs/components/ThemeConsumer/ThemeConsumer.d.ts +0 -10
  3731. package/cjs/components/ThemeConsumer/ThemeConsumer.js +0 -17
  3732. package/cjs/components/ThemeConsumer/ThemeConsumer.js.map +0 -1
  3733. package/cjs/components/ThemeConsumer/index.d.ts +0 -1
  3734. package/cjs/components/ThemeConsumer/index.js +0 -1
  3735. package/cjs/components/ThemeConsumer/index.js.map +0 -1
  3736. package/cjs/components/ThemeProvider/ThemeProvider.d.ts +0 -16
  3737. package/cjs/components/ThemeProvider/ThemeProvider.js +0 -56
  3738. package/cjs/components/ThemeProvider/ThemeProvider.js.map +0 -1
  3739. package/cjs/components/ThemeProvider/index.d.ts +0 -1
  3740. package/cjs/components/ThemeProvider/index.js +0 -1
  3741. package/cjs/components/ThemeProvider/index.js.map +0 -1
  3742. package/cjs/components/TopBar/TopBar.d.ts +0 -113
  3743. package/cjs/components/TopBar/TopBar.js +0 -257
  3744. package/cjs/components/TopBar/TopBar.js.map +0 -1
  3745. package/cjs/components/TopBar/TopBar.md +0 -111
  3746. package/cjs/components/TopBar/TopBar.styles.d.ts +0 -24
  3747. package/cjs/components/TopBar/TopBar.styles.js +0 -198
  3748. package/cjs/components/TopBar/TopBar.styles.js.map +0 -1
  3749. package/cjs/components/TopBar/TopBarButtonItem.d.ts +0 -25
  3750. package/cjs/components/TopBar/TopBarButtonItem.js +0 -35
  3751. package/cjs/components/TopBar/TopBarButtonItem.js.map +0 -1
  3752. package/cjs/components/TopBar/TopBarDivider.d.ts +0 -11
  3753. package/cjs/components/TopBar/TopBarDivider.js +0 -17
  3754. package/cjs/components/TopBar/TopBarDivider.js.map +0 -1
  3755. package/cjs/components/TopBar/TopBarDropdown.d.ts +0 -29
  3756. package/cjs/components/TopBar/TopBarDropdown.js +0 -82
  3757. package/cjs/components/TopBar/TopBarDropdown.js.map +0 -1
  3758. package/cjs/components/TopBar/TopBarEnd.d.ts +0 -7
  3759. package/cjs/components/TopBar/TopBarEnd.js +0 -12
  3760. package/cjs/components/TopBar/TopBarEnd.js.map +0 -1
  3761. package/cjs/components/TopBar/TopBarItem.d.ts +0 -32
  3762. package/cjs/components/TopBar/TopBarItem.js +0 -70
  3763. package/cjs/components/TopBar/TopBarItem.js.map +0 -1
  3764. package/cjs/components/TopBar/TopBarLogout.d.ts +0 -15
  3765. package/cjs/components/TopBar/TopBarLogout.js +0 -22
  3766. package/cjs/components/TopBar/TopBarLogout.js.map +0 -1
  3767. package/cjs/components/TopBar/TopBarOrganizations.d.ts +0 -30
  3768. package/cjs/components/TopBar/TopBarOrganizations.js +0 -106
  3769. package/cjs/components/TopBar/TopBarOrganizations.js.map +0 -1
  3770. package/cjs/components/TopBar/TopBarStart.d.ts +0 -7
  3771. package/cjs/components/TopBar/TopBarStart.js +0 -12
  3772. package/cjs/components/TopBar/TopBarStart.js.map +0 -1
  3773. package/cjs/components/TopBar/TopBarUser.d.ts +0 -26
  3774. package/cjs/components/TopBar/TopBarUser.js +0 -58
  3775. package/cjs/components/TopBar/TopBarUser.js.map +0 -1
  3776. package/cjs/components/TopBar/index.d.ts +0 -10
  3777. package/cjs/components/TopBar/index.js +0 -10
  3778. package/cjs/components/TopBar/index.js.map +0 -1
  3779. package/cjs/components/TopBar/locale/index.d.ts +0 -4
  3780. package/cjs/components/TopBar/locale/index.js +0 -11
  3781. package/cjs/components/TopBar/locale/index.js.map +0 -1
  3782. package/cjs/components/TopBar/locale/locales/en.d.ts +0 -2
  3783. package/cjs/components/TopBar/locale/locales/en.js +0 -7
  3784. package/cjs/components/TopBar/locale/locales/en.js.map +0 -1
  3785. package/cjs/components/TopBar/locale/locales/ru.d.ts +0 -2
  3786. package/cjs/components/TopBar/locale/locales/ru.js +0 -7
  3787. package/cjs/components/TopBar/locale/locales/ru.js.map +0 -1
  3788. package/cjs/components/TopBar/locale/types.d.ts +0 -6
  3789. package/cjs/components/TopBar/locale/types.js +0 -1
  3790. package/cjs/internal/Calendar/Calendar.d.ts +0 -60
  3791. package/cjs/internal/Calendar/Calendar.js +0 -328
  3792. package/cjs/internal/Calendar/Calendar.js.map +0 -1
  3793. package/cjs/internal/Calendar/Calendar.styles.d.ts +0 -4
  3794. package/cjs/internal/Calendar/Calendar.styles.js +0 -24
  3795. package/cjs/internal/Calendar/Calendar.styles.js.map +0 -1
  3796. package/cjs/internal/Calendar/CalendarDateShape.js +0 -52
  3797. package/cjs/internal/Calendar/CalendarDateShape.js.map +0 -1
  3798. package/cjs/internal/Calendar/CalendarScrollEvents.js.map +0 -1
  3799. package/cjs/internal/Calendar/CalendarUtils.d.ts +0 -18
  3800. package/cjs/internal/Calendar/CalendarUtils.js +0 -64
  3801. package/cjs/internal/Calendar/CalendarUtils.js.map +0 -1
  3802. package/cjs/internal/Calendar/DayCellView.d.ts +0 -14
  3803. package/cjs/internal/Calendar/DayCellView.js +0 -55
  3804. package/cjs/internal/Calendar/DayCellView.js.map +0 -1
  3805. package/cjs/internal/Calendar/DayCellView.styles.d.ts +0 -6
  3806. package/cjs/internal/Calendar/DayCellView.styles.js +0 -53
  3807. package/cjs/internal/Calendar/DayCellView.styles.js.map +0 -1
  3808. package/cjs/internal/Calendar/DayCellViewModel.js +0 -19
  3809. package/cjs/internal/Calendar/DayCellViewModel.js.map +0 -1
  3810. package/cjs/internal/Calendar/Month.d.ts +0 -31
  3811. package/cjs/internal/Calendar/Month.js +0 -176
  3812. package/cjs/internal/Calendar/Month.js.map +0 -1
  3813. package/cjs/internal/Calendar/MonthView.d.ts +0 -21
  3814. package/cjs/internal/Calendar/MonthView.js +0 -119
  3815. package/cjs/internal/Calendar/MonthView.js.map +0 -1
  3816. package/cjs/internal/Calendar/MonthView.styles.d.ts +0 -7
  3817. package/cjs/internal/Calendar/MonthView.styles.js +0 -43
  3818. package/cjs/internal/Calendar/MonthView.styles.js.map +0 -1
  3819. package/cjs/internal/Calendar/MonthViewModel.d.ts +0 -13
  3820. package/cjs/internal/Calendar/MonthViewModel.js +0 -67
  3821. package/cjs/internal/Calendar/MonthViewModel.js.map +0 -1
  3822. package/cjs/internal/Calendar/config.d.ts +0 -24
  3823. package/cjs/internal/Calendar/config.js +0 -28
  3824. package/cjs/internal/Calendar/config.js.map +0 -1
  3825. package/cjs/internal/Calendar/index.js +0 -2
  3826. package/cjs/internal/Calendar/index.js.map +0 -1
  3827. package/cjs/internal/MaskedInput/mask-char-font/font.eot +0 -0
  3828. package/cjs/internal/MaskedInput/mask-char-font/font.woff +0 -0
  3829. package/cjs/internal/MaskedInput/mask-char-font/font.woff2 +0 -0
  3830. package/cjs/internal/PopupMenu/PopupMenuPositions.d.ts +0 -2
  3831. package/cjs/internal/PopupMenu/PopupMenuPositions.js +0 -15
  3832. package/cjs/internal/PopupMenu/PopupMenuPositions.js.map +0 -1
  3833. package/cjs/internal/SpinnerOld/SpinnerOld.d.ts +0 -47
  3834. package/cjs/internal/SpinnerOld/SpinnerOld.js +0 -128
  3835. package/cjs/internal/SpinnerOld/SpinnerOld.js.map +0 -1
  3836. package/cjs/internal/SpinnerOld/SpinnerOld.styles.d.ts +0 -14
  3837. package/cjs/internal/SpinnerOld/SpinnerOld.styles.js +0 -94
  3838. package/cjs/internal/SpinnerOld/SpinnerOld.styles.js.map +0 -1
  3839. package/cjs/internal/SpinnerOld/SpinnerOldFallback.d.ts +0 -30
  3840. package/cjs/internal/SpinnerOld/SpinnerOldFallback.js +0 -120
  3841. package/cjs/internal/SpinnerOld/SpinnerOldFallback.js.map +0 -1
  3842. package/cjs/internal/SpinnerOld/fallback_circle.png +0 -0
  3843. package/cjs/internal/SpinnerOld/fallback_circle_dimmed.png +0 -0
  3844. package/cjs/internal/SpinnerOld/fallback_cloud_big.png +0 -0
  3845. package/cjs/internal/SpinnerOld/fallback_cloud_normal.png +0 -0
  3846. package/cjs/internal/SpinnerOld/index.d.ts +0 -1
  3847. package/cjs/internal/SpinnerOld/index.js +0 -1
  3848. package/cjs/internal/SpinnerOld/index.js.map +0 -1
  3849. package/cjs/internal/SpinnerOld/locale/index.d.ts +0 -4
  3850. package/cjs/internal/SpinnerOld/locale/index.js +0 -11
  3851. package/cjs/internal/SpinnerOld/locale/index.js.map +0 -1
  3852. package/cjs/internal/SpinnerOld/locale/locales/en.d.ts +0 -2
  3853. package/cjs/internal/SpinnerOld/locale/locales/en.js +0 -4
  3854. package/cjs/internal/SpinnerOld/locale/locales/en.js.map +0 -1
  3855. package/cjs/internal/SpinnerOld/locale/locales/ru.d.ts +0 -2
  3856. package/cjs/internal/SpinnerOld/locale/locales/ru.js +0 -4
  3857. package/cjs/internal/SpinnerOld/locale/locales/ru.js.map +0 -1
  3858. package/cjs/internal/SpinnerOld/locale/types.d.ts +0 -4
  3859. package/cjs/internal/SpinnerOld/locale/types.js +0 -1
  3860. package/cjs/internal/icons/20px/Kontur-Iconic-eco-20px.eot +0 -0
  3861. package/cjs/internal/icons/20px/Kontur-Iconic-eco-20px.woff +0 -0
  3862. package/cjs/internal/icons/20px/Kontur-Iconic-eco-20px.woff2 +0 -0
  3863. package/cjs/internal/icons/SpinnerOldIcon.d.ts +0 -11
  3864. package/cjs/internal/icons/SpinnerOldIcon.js +0 -51
  3865. package/cjs/internal/icons/SpinnerOldIcon.js.map +0 -1
  3866. package/cjs/internal/themes/FlatTheme.d.ts +0 -210
  3867. package/cjs/internal/themes/FlatTheme.js +0 -311
  3868. package/cjs/internal/themes/FlatTheme.js.map +0 -1
  3869. package/cjs/lib/MockDate.d.ts +0 -8
  3870. package/cjs/lib/MockDate.js +0 -15
  3871. package/cjs/lib/MockDate.js.map +0 -1
  3872. package/cjs/lib/dom/getFocusableElements.d.ts +0 -41
  3873. package/cjs/lib/dom/getFocusableElements.js +0 -88
  3874. package/cjs/lib/dom/getFocusableElements.js.map +0 -1
  3875. package/cjs/lib/polyfillPlaceholder.d.ts +0 -1
  3876. package/cjs/lib/polyfillPlaceholder.js +0 -15
  3877. package/cjs/lib/polyfillPlaceholder.js.map +0 -1
  3878. package/cjs/lib/theming/themes/FlatTheme.d.ts +0 -1
  3879. package/cjs/lib/theming/themes/FlatTheme.js +0 -4
  3880. package/cjs/lib/theming/themes/FlatTheme.js.map +0 -1
  3881. package/components/Button/Corners/Corners.js +0 -6
  3882. package/components/Button/Corners/Corners.js.map +0 -1
  3883. package/components/Button/Corners/package.json +0 -6
  3884. package/components/Button/Corners.d.ts +0 -6
  3885. package/components/DatePicker/Picker.styles/Picker.styles.js +0 -32
  3886. package/components/DatePicker/Picker.styles/Picker.styles.js.map +0 -1
  3887. package/components/DatePicker/Picker.styles/package.json +0 -6
  3888. package/components/DatePicker/Picker.styles.d.ts +0 -4
  3889. package/components/Fias/Fias/Fias.js +0 -341
  3890. package/components/Fias/Fias/Fias.js.map +0 -1
  3891. package/components/Fias/Fias/package.json +0 -6
  3892. package/components/Fias/Fias.d.ts +0 -130
  3893. package/components/Fias/Fias.md +0 -451
  3894. package/components/Fias/Fias.styles/Fias.styles.js +0 -31
  3895. package/components/Fias/Fias.styles/Fias.styles.js.map +0 -1
  3896. package/components/Fias/Fias.styles/package.json +0 -6
  3897. package/components/Fias/Fias.styles.d.ts +0 -4
  3898. package/components/Fias/FiasModal/FiasModal.js +0 -58
  3899. package/components/Fias/FiasModal/FiasModal.js.map +0 -1
  3900. package/components/Fias/FiasModal/package.json +0 -6
  3901. package/components/Fias/FiasModal.d.ts +0 -15
  3902. package/components/Fias/FiasSearch/FiasSearch/FiasSearch.js +0 -153
  3903. package/components/Fias/FiasSearch/FiasSearch/FiasSearch.js.map +0 -1
  3904. package/components/Fias/FiasSearch/FiasSearch/package.json +0 -6
  3905. package/components/Fias/FiasSearch/FiasSearch.d.ts +0 -56
  3906. package/components/Fias/FiasSearch/FiasSearch.md +0 -78
  3907. package/components/Fias/Form/FiasComboBox/FiasComboBox.js +0 -167
  3908. package/components/Fias/Form/FiasComboBox/FiasComboBox.js.map +0 -1
  3909. package/components/Fias/Form/FiasComboBox/package.json +0 -6
  3910. package/components/Fias/Form/FiasComboBox.d.ts +0 -34
  3911. package/components/Fias/Form/FiasCountrySelector/FiasCountrySelector.js +0 -130
  3912. package/components/Fias/Form/FiasCountrySelector/FiasCountrySelector.js.map +0 -1
  3913. package/components/Fias/Form/FiasCountrySelector/package.json +0 -6
  3914. package/components/Fias/Form/FiasCountrySelector.d.ts +0 -19
  3915. package/components/Fias/Form/FiasForm/FiasForm.js +0 -584
  3916. package/components/Fias/Form/FiasForm/FiasForm.js.map +0 -1
  3917. package/components/Fias/Form/FiasForm/package.json +0 -6
  3918. package/components/Fias/Form/FiasForm.d.ts +0 -70
  3919. package/components/Fias/Form/FiasForm.styles/FiasForm.styles.js +0 -45
  3920. package/components/Fias/Form/FiasForm.styles/FiasForm.styles.js.map +0 -1
  3921. package/components/Fias/Form/FiasForm.styles/package.json +0 -6
  3922. package/components/Fias/Form/FiasForm.styles.d.ts +0 -5
  3923. package/components/Fias/api/FiasAPI/FiasAPI.js +0 -303
  3924. package/components/Fias/api/FiasAPI/FiasAPI.js.map +0 -1
  3925. package/components/Fias/api/FiasAPI/package.json +0 -6
  3926. package/components/Fias/api/FiasAPI.d.ts +0 -26
  3927. package/components/Fias/api/FiasAPIResultFactory/FiasAPIResultFactory.js +0 -19
  3928. package/components/Fias/api/FiasAPIResultFactory/FiasAPIResultFactory.js.map +0 -1
  3929. package/components/Fias/api/FiasAPIResultFactory/package.json +0 -6
  3930. package/components/Fias/api/FiasAPIResultFactory.d.ts +0 -5
  3931. package/components/Fias/api/FiasMockAPI/FiasMockAPI.js +0 -113
  3932. package/components/Fias/api/FiasMockAPI/FiasMockAPI.js.map +0 -1
  3933. package/components/Fias/api/FiasMockAPI/package.json +0 -6
  3934. package/components/Fias/api/FiasMockAPI.d.ts +0 -8
  3935. package/components/Fias/api/data.json +0 -285
  3936. package/components/Fias/constants/abbreviations/abbreviations.js +0 -154
  3937. package/components/Fias/constants/abbreviations/abbreviations.js.map +0 -1
  3938. package/components/Fias/constants/abbreviations/package.json +0 -6
  3939. package/components/Fias/constants/abbreviations.d.ts +0 -3
  3940. package/components/Fias/index/index.js +0 -5
  3941. package/components/Fias/index/index.js.map +0 -1
  3942. package/components/Fias/index/package.json +0 -6
  3943. package/components/Fias/index.d.ts +0 -5
  3944. package/components/Fias/locale/index/index.js +0 -7
  3945. package/components/Fias/locale/index/index.js.map +0 -1
  3946. package/components/Fias/locale/index/package.json +0 -6
  3947. package/components/Fias/locale/index.d.ts +0 -4
  3948. package/components/Fias/locale/locales/ru/package.json +0 -6
  3949. package/components/Fias/locale/locales/ru/ru.js +0 -56
  3950. package/components/Fias/locale/locales/ru/ru.js.map +0 -1
  3951. package/components/Fias/locale/locales/ru.d.ts +0 -2
  3952. package/components/Fias/locale/package.json +0 -6
  3953. package/components/Fias/locale/types/package.json +0 -6
  3954. package/components/Fias/locale/types/types.js +0 -0
  3955. package/components/Fias/locale/types.d.ts +0 -56
  3956. package/components/Fias/logger/FiasLogger/FiasLogger.js +0 -11
  3957. package/components/Fias/logger/FiasLogger/FiasLogger.js.map +0 -1
  3958. package/components/Fias/logger/FiasLogger/package.json +0 -6
  3959. package/components/Fias/logger/FiasLogger.d.ts +0 -8
  3960. package/components/Fias/models/FiasAddress/FiasAddress.js +0 -739
  3961. package/components/Fias/models/FiasAddress/FiasAddress.js.map +0 -1
  3962. package/components/Fias/models/FiasAddress/package.json +0 -6
  3963. package/components/Fias/models/FiasAddress.d.ts +0 -96
  3964. package/components/Fias/models/FiasAddressElement/FiasAddressElement.js +0 -221
  3965. package/components/Fias/models/FiasAddressElement/FiasAddressElement.js.map +0 -1
  3966. package/components/Fias/models/FiasAddressElement/package.json +0 -6
  3967. package/components/Fias/models/FiasAddressElement.d.ts +0 -18
  3968. package/components/Fias/models/FiasData/FiasData.js +0 -99
  3969. package/components/Fias/models/FiasData/FiasData.js.map +0 -1
  3970. package/components/Fias/models/FiasData/package.json +0 -6
  3971. package/components/Fias/models/FiasData.d.ts +0 -20
  3972. package/components/Fias/package.json +0 -6
  3973. package/components/Fias/types/package.json +0 -6
  3974. package/components/Fias/types/types.js +0 -53
  3975. package/components/Fias/types/types.js.map +0 -1
  3976. package/components/Fias/types.d.ts +0 -142
  3977. package/components/LocaleProvider/LocaleProvider/LocaleProvider.js +0 -60
  3978. package/components/LocaleProvider/LocaleProvider/LocaleProvider.js.map +0 -1
  3979. package/components/LocaleProvider/LocaleProvider/package.json +0 -6
  3980. package/components/LocaleProvider/LocaleProvider.d.ts +0 -24
  3981. package/components/LocaleProvider/index/index.js +0 -1
  3982. package/components/LocaleProvider/index/index.js.map +0 -1
  3983. package/components/LocaleProvider/index/package.json +0 -6
  3984. package/components/LocaleProvider/index.d.ts +0 -1
  3985. package/components/LocaleProvider/package.json +0 -6
  3986. package/components/Logotype/Logotype/Logotype.js +0 -169
  3987. package/components/Logotype/Logotype/Logotype.js.map +0 -1
  3988. package/components/Logotype/Logotype/package.json +0 -6
  3989. package/components/Logotype/Logotype.d.ts +0 -82
  3990. package/components/Logotype/Logotype.md +0 -33
  3991. package/components/Logotype/Logotype.styles/Logotype.styles.js +0 -110
  3992. package/components/Logotype/Logotype.styles/Logotype.styles.js.map +0 -1
  3993. package/components/Logotype/Logotype.styles/package.json +0 -6
  3994. package/components/Logotype/Logotype.styles.d.ts +0 -10
  3995. package/components/Logotype/ProductWidget/ProductWidget.js +0 -19
  3996. package/components/Logotype/ProductWidget/ProductWidget.js.map +0 -1
  3997. package/components/Logotype/ProductWidget/package.json +0 -6
  3998. package/components/Logotype/ProductWidget.d.ts +0 -3
  3999. package/components/Logotype/index/index.js +0 -1
  4000. package/components/Logotype/index/index.js.map +0 -1
  4001. package/components/Logotype/index/package.json +0 -6
  4002. package/components/Logotype/index.d.ts +0 -1
  4003. package/components/Logotype/locale/index/index.js +0 -8
  4004. package/components/Logotype/locale/index/index.js.map +0 -1
  4005. package/components/Logotype/locale/index/package.json +0 -6
  4006. package/components/Logotype/locale/index.d.ts +0 -4
  4007. package/components/Logotype/locale/locales/en/en.js +0 -4
  4008. package/components/Logotype/locale/locales/en/en.js.map +0 -1
  4009. package/components/Logotype/locale/locales/en/package.json +0 -6
  4010. package/components/Logotype/locale/locales/en.d.ts +0 -2
  4011. package/components/Logotype/locale/locales/ru/package.json +0 -6
  4012. package/components/Logotype/locale/locales/ru/ru.js +0 -4
  4013. package/components/Logotype/locale/locales/ru/ru.js.map +0 -1
  4014. package/components/Logotype/locale/locales/ru.d.ts +0 -2
  4015. package/components/Logotype/locale/package.json +0 -6
  4016. package/components/Logotype/locale/types/package.json +0 -6
  4017. package/components/Logotype/locale/types/types.js +0 -0
  4018. package/components/Logotype/locale/types.d.ts +0 -4
  4019. package/components/Logotype/package.json +0 -6
  4020. package/components/Modal/helpers/helpers.js +0 -10
  4021. package/components/Modal/helpers/helpers.js.map +0 -1
  4022. package/components/Modal/helpers/package.json +0 -6
  4023. package/components/Modal/helpers.d.ts +0 -6
  4024. package/components/Spinner/SpinnerFallback/SpinnerFallback.js +0 -107
  4025. package/components/Spinner/SpinnerFallback/SpinnerFallback.js.map +0 -1
  4026. package/components/Spinner/SpinnerFallback/package.json +0 -6
  4027. package/components/Spinner/SpinnerFallback.d.ts +0 -29
  4028. package/components/Spinner/fallback_circle.png +0 -0
  4029. package/components/Spinner/fallback_circle_big.png +0 -0
  4030. package/components/Spinner/fallback_circle_dimmed.png +0 -0
  4031. package/components/Spinner/fallback_circle_mini.png +0 -0
  4032. package/components/Spinner/fallback_circle_normal.png +0 -0
  4033. package/components/Spinner/fallback_cloud_big.png +0 -0
  4034. package/components/Spinner/fallback_cloud_normal.png +0 -0
  4035. package/components/ThemeConsumer/ThemeConsumer/ThemeConsumer.js +0 -25
  4036. package/components/ThemeConsumer/ThemeConsumer/ThemeConsumer.js.map +0 -1
  4037. package/components/ThemeConsumer/ThemeConsumer/package.json +0 -6
  4038. package/components/ThemeConsumer/ThemeConsumer.d.ts +0 -10
  4039. package/components/ThemeConsumer/index/index.js +0 -1
  4040. package/components/ThemeConsumer/index/index.js.map +0 -1
  4041. package/components/ThemeConsumer/index/package.json +0 -6
  4042. package/components/ThemeConsumer/index.d.ts +0 -1
  4043. package/components/ThemeConsumer/package.json +0 -6
  4044. package/components/ThemeProvider/ThemeProvider/ThemeProvider.js +0 -51
  4045. package/components/ThemeProvider/ThemeProvider/ThemeProvider.js.map +0 -1
  4046. package/components/ThemeProvider/ThemeProvider/package.json +0 -6
  4047. package/components/ThemeProvider/ThemeProvider.d.ts +0 -16
  4048. package/components/ThemeProvider/index/index.js +0 -1
  4049. package/components/ThemeProvider/index/index.js.map +0 -1
  4050. package/components/ThemeProvider/index/package.json +0 -6
  4051. package/components/ThemeProvider/index.d.ts +0 -1
  4052. package/components/ThemeProvider/package.json +0 -6
  4053. package/components/TopBar/TopBar/TopBar.js +0 -208
  4054. package/components/TopBar/TopBar/TopBar.js.map +0 -1
  4055. package/components/TopBar/TopBar/package.json +0 -6
  4056. package/components/TopBar/TopBar.d.ts +0 -113
  4057. package/components/TopBar/TopBar.md +0 -111
  4058. package/components/TopBar/TopBar.styles/TopBar.styles.js +0 -292
  4059. package/components/TopBar/TopBar.styles/TopBar.styles.js.map +0 -1
  4060. package/components/TopBar/TopBar.styles/package.json +0 -6
  4061. package/components/TopBar/TopBar.styles.d.ts +0 -24
  4062. package/components/TopBar/TopBarButtonItem/TopBarButtonItem.js +0 -42
  4063. package/components/TopBar/TopBarButtonItem/TopBarButtonItem.js.map +0 -1
  4064. package/components/TopBar/TopBarButtonItem/package.json +0 -6
  4065. package/components/TopBar/TopBarButtonItem.d.ts +0 -25
  4066. package/components/TopBar/TopBarDivider/TopBarDivider.js +0 -18
  4067. package/components/TopBar/TopBarDivider/TopBarDivider.js.map +0 -1
  4068. package/components/TopBar/TopBarDivider/package.json +0 -6
  4069. package/components/TopBar/TopBarDivider.d.ts +0 -11
  4070. package/components/TopBar/TopBarDropdown/TopBarDropdown.js +0 -84
  4071. package/components/TopBar/TopBarDropdown/TopBarDropdown.js.map +0 -1
  4072. package/components/TopBar/TopBarDropdown/package.json +0 -6
  4073. package/components/TopBar/TopBarDropdown.d.ts +0 -29
  4074. package/components/TopBar/TopBarEnd/TopBarEnd.js +0 -15
  4075. package/components/TopBar/TopBarEnd/TopBarEnd.js.map +0 -1
  4076. package/components/TopBar/TopBarEnd/package.json +0 -6
  4077. package/components/TopBar/TopBarEnd.d.ts +0 -7
  4078. package/components/TopBar/TopBarItem/TopBarItem.js +0 -76
  4079. package/components/TopBar/TopBarItem/TopBarItem.js.map +0 -1
  4080. package/components/TopBar/TopBarItem/package.json +0 -6
  4081. package/components/TopBar/TopBarItem.d.ts +0 -32
  4082. package/components/TopBar/TopBarLogout/TopBarLogout.js +0 -39
  4083. package/components/TopBar/TopBarLogout/TopBarLogout.js.map +0 -1
  4084. package/components/TopBar/TopBarLogout/package.json +0 -6
  4085. package/components/TopBar/TopBarLogout.d.ts +0 -15
  4086. package/components/TopBar/TopBarOrganizations/TopBarOrganizations.js +0 -113
  4087. package/components/TopBar/TopBarOrganizations/TopBarOrganizations.js.map +0 -1
  4088. package/components/TopBar/TopBarOrganizations/package.json +0 -6
  4089. package/components/TopBar/TopBarOrganizations.d.ts +0 -30
  4090. package/components/TopBar/TopBarStart/TopBarStart.js +0 -15
  4091. package/components/TopBar/TopBarStart/TopBarStart.js.map +0 -1
  4092. package/components/TopBar/TopBarStart/package.json +0 -6
  4093. package/components/TopBar/TopBarStart.d.ts +0 -7
  4094. package/components/TopBar/TopBarUser/TopBarUser.js +0 -72
  4095. package/components/TopBar/TopBarUser/TopBarUser.js.map +0 -1
  4096. package/components/TopBar/TopBarUser/package.json +0 -6
  4097. package/components/TopBar/TopBarUser.d.ts +0 -26
  4098. package/components/TopBar/index/index.js +0 -10
  4099. package/components/TopBar/index/index.js.map +0 -1
  4100. package/components/TopBar/index/package.json +0 -6
  4101. package/components/TopBar/index.d.ts +0 -10
  4102. package/components/TopBar/locale/index/index.js +0 -8
  4103. package/components/TopBar/locale/index/index.js.map +0 -1
  4104. package/components/TopBar/locale/index/package.json +0 -6
  4105. package/components/TopBar/locale/index.d.ts +0 -4
  4106. package/components/TopBar/locale/locales/en/en.js +0 -6
  4107. package/components/TopBar/locale/locales/en/en.js.map +0 -1
  4108. package/components/TopBar/locale/locales/en/package.json +0 -6
  4109. package/components/TopBar/locale/locales/en.d.ts +0 -2
  4110. package/components/TopBar/locale/locales/ru/package.json +0 -6
  4111. package/components/TopBar/locale/locales/ru/ru.js +0 -6
  4112. package/components/TopBar/locale/locales/ru/ru.js.map +0 -1
  4113. package/components/TopBar/locale/locales/ru.d.ts +0 -2
  4114. package/components/TopBar/locale/package.json +0 -6
  4115. package/components/TopBar/locale/types/package.json +0 -6
  4116. package/components/TopBar/locale/types/types.js +0 -0
  4117. package/components/TopBar/locale/types.d.ts +0 -6
  4118. package/components/TopBar/package.json +0 -6
  4119. package/internal/Calendar/Calendar/Calendar.js +0 -397
  4120. package/internal/Calendar/Calendar/Calendar.js.map +0 -1
  4121. package/internal/Calendar/Calendar/package.json +0 -6
  4122. package/internal/Calendar/Calendar.d.ts +0 -60
  4123. package/internal/Calendar/Calendar.styles/Calendar.styles.js +0 -32
  4124. package/internal/Calendar/Calendar.styles/Calendar.styles.js.map +0 -1
  4125. package/internal/Calendar/Calendar.styles/package.json +0 -6
  4126. package/internal/Calendar/Calendar.styles.d.ts +0 -4
  4127. package/internal/Calendar/CalendarDateShape/CalendarDateShape.js.map +0 -1
  4128. package/internal/Calendar/CalendarDateShape/package.json +0 -6
  4129. package/internal/Calendar/CalendarScrollEvents/CalendarScrollEvents.js.map +0 -1
  4130. package/internal/Calendar/CalendarScrollEvents/package.json +0 -6
  4131. package/internal/Calendar/CalendarUtils/CalendarUtils.js +0 -70
  4132. package/internal/Calendar/CalendarUtils/CalendarUtils.js.map +0 -1
  4133. package/internal/Calendar/CalendarUtils/package.json +0 -6
  4134. package/internal/Calendar/CalendarUtils.d.ts +0 -18
  4135. package/internal/Calendar/DayCellView/DayCellView.js +0 -45
  4136. package/internal/Calendar/DayCellView/DayCellView.js.map +0 -1
  4137. package/internal/Calendar/DayCellView/package.json +0 -6
  4138. package/internal/Calendar/DayCellView.d.ts +0 -14
  4139. package/internal/Calendar/DayCellView.styles/DayCellView.styles.js +0 -59
  4140. package/internal/Calendar/DayCellView.styles/DayCellView.styles.js.map +0 -1
  4141. package/internal/Calendar/DayCellView.styles/package.json +0 -6
  4142. package/internal/Calendar/DayCellView.styles.d.ts +0 -6
  4143. package/internal/Calendar/DayCellViewModel/DayCellViewModel.js +0 -20
  4144. package/internal/Calendar/DayCellViewModel/DayCellViewModel.js.map +0 -1
  4145. package/internal/Calendar/DayCellViewModel/package.json +0 -6
  4146. package/internal/Calendar/Month/Month.js +0 -184
  4147. package/internal/Calendar/Month/Month.js.map +0 -1
  4148. package/internal/Calendar/Month/package.json +0 -6
  4149. package/internal/Calendar/Month.d.ts +0 -31
  4150. package/internal/Calendar/MonthView/MonthView.js +0 -112
  4151. package/internal/Calendar/MonthView/MonthView.js.map +0 -1
  4152. package/internal/Calendar/MonthView/package.json +0 -6
  4153. package/internal/Calendar/MonthView.d.ts +0 -21
  4154. package/internal/Calendar/MonthView.styles/MonthView.styles.js +0 -71
  4155. package/internal/Calendar/MonthView.styles/MonthView.styles.js.map +0 -1
  4156. package/internal/Calendar/MonthView.styles/package.json +0 -6
  4157. package/internal/Calendar/MonthView.styles.d.ts +0 -7
  4158. package/internal/Calendar/MonthViewModel/MonthViewModel.js +0 -59
  4159. package/internal/Calendar/MonthViewModel/MonthViewModel.js.map +0 -1
  4160. package/internal/Calendar/MonthViewModel/package.json +0 -6
  4161. package/internal/Calendar/MonthViewModel.d.ts +0 -13
  4162. package/internal/Calendar/config/config.js +0 -28
  4163. package/internal/Calendar/config/config.js.map +0 -1
  4164. package/internal/Calendar/config/package.json +0 -6
  4165. package/internal/Calendar/config.d.ts +0 -24
  4166. package/internal/Calendar/index/index.js.map +0 -1
  4167. package/internal/Calendar/index/package.json +0 -6
  4168. package/internal/Calendar/package.json +0 -6
  4169. package/internal/MaskedInput/mask-char-font/font.eot +0 -0
  4170. package/internal/MaskedInput/mask-char-font/font.woff +0 -0
  4171. package/internal/MaskedInput/mask-char-font/font.woff2 +0 -0
  4172. package/internal/PopupMenu/PopupMenuPositions/PopupMenuPositions.js +0 -1
  4173. package/internal/PopupMenu/PopupMenuPositions/PopupMenuPositions.js.map +0 -1
  4174. package/internal/PopupMenu/PopupMenuPositions/package.json +0 -6
  4175. package/internal/PopupMenu/PopupMenuPositions.d.ts +0 -2
  4176. package/internal/SpinnerOld/SpinnerOld/SpinnerOld.js +0 -112
  4177. package/internal/SpinnerOld/SpinnerOld/SpinnerOld.js.map +0 -1
  4178. package/internal/SpinnerOld/SpinnerOld/package.json +0 -6
  4179. package/internal/SpinnerOld/SpinnerOld.d.ts +0 -47
  4180. package/internal/SpinnerOld/SpinnerOld.styles/SpinnerOld.styles.js +0 -163
  4181. package/internal/SpinnerOld/SpinnerOld.styles/SpinnerOld.styles.js.map +0 -1
  4182. package/internal/SpinnerOld/SpinnerOld.styles/package.json +0 -6
  4183. package/internal/SpinnerOld/SpinnerOld.styles.d.ts +0 -14
  4184. package/internal/SpinnerOld/SpinnerOldFallback/SpinnerOldFallback.js +0 -126
  4185. package/internal/SpinnerOld/SpinnerOldFallback/SpinnerOldFallback.js.map +0 -1
  4186. package/internal/SpinnerOld/SpinnerOldFallback/package.json +0 -6
  4187. package/internal/SpinnerOld/SpinnerOldFallback.d.ts +0 -30
  4188. package/internal/SpinnerOld/fallback_circle.png +0 -0
  4189. package/internal/SpinnerOld/fallback_circle_dimmed.png +0 -0
  4190. package/internal/SpinnerOld/fallback_cloud_big.png +0 -0
  4191. package/internal/SpinnerOld/fallback_cloud_normal.png +0 -0
  4192. package/internal/SpinnerOld/index/index.js +0 -1
  4193. package/internal/SpinnerOld/index/index.js.map +0 -1
  4194. package/internal/SpinnerOld/index/package.json +0 -6
  4195. package/internal/SpinnerOld/index.d.ts +0 -1
  4196. package/internal/SpinnerOld/locale/index/index.js +0 -8
  4197. package/internal/SpinnerOld/locale/index/index.js.map +0 -1
  4198. package/internal/SpinnerOld/locale/index/package.json +0 -6
  4199. package/internal/SpinnerOld/locale/index.d.ts +0 -4
  4200. package/internal/SpinnerOld/locale/locales/en/en.js +0 -3
  4201. package/internal/SpinnerOld/locale/locales/en/en.js.map +0 -1
  4202. package/internal/SpinnerOld/locale/locales/en/package.json +0 -6
  4203. package/internal/SpinnerOld/locale/locales/en.d.ts +0 -2
  4204. package/internal/SpinnerOld/locale/locales/ru/package.json +0 -6
  4205. package/internal/SpinnerOld/locale/locales/ru/ru.js +0 -3
  4206. package/internal/SpinnerOld/locale/locales/ru/ru.js.map +0 -1
  4207. package/internal/SpinnerOld/locale/locales/ru.d.ts +0 -2
  4208. package/internal/SpinnerOld/locale/package.json +0 -6
  4209. package/internal/SpinnerOld/locale/types/package.json +0 -6
  4210. package/internal/SpinnerOld/locale/types/types.js +0 -0
  4211. package/internal/SpinnerOld/locale/types.d.ts +0 -4
  4212. package/internal/SpinnerOld/package.json +0 -6
  4213. package/internal/icons/20px/Kontur-Iconic-eco-20px.eot +0 -0
  4214. package/internal/icons/20px/Kontur-Iconic-eco-20px.woff +0 -0
  4215. package/internal/icons/20px/Kontur-Iconic-eco-20px.woff2 +0 -0
  4216. package/internal/icons/SpinnerOldIcon/SpinnerOldIcon.js +0 -46
  4217. package/internal/icons/SpinnerOldIcon/SpinnerOldIcon.js.map +0 -1
  4218. package/internal/icons/SpinnerOldIcon/package.json +0 -6
  4219. package/internal/icons/SpinnerOldIcon.d.ts +0 -11
  4220. package/internal/themes/FlatTheme/FlatTheme.js +0 -422
  4221. package/internal/themes/FlatTheme/FlatTheme.js.map +0 -1
  4222. package/internal/themes/FlatTheme/package.json +0 -6
  4223. package/internal/themes/FlatTheme.d.ts +0 -210
  4224. package/lib/MockDate/MockDate.js +0 -28
  4225. package/lib/MockDate/MockDate.js.map +0 -1
  4226. package/lib/MockDate/package.json +0 -6
  4227. package/lib/MockDate.d.ts +0 -8
  4228. package/lib/dom/getFocusableElements/getFocusableElements.js +0 -103
  4229. package/lib/dom/getFocusableElements/getFocusableElements.js.map +0 -1
  4230. package/lib/dom/getFocusableElements/package.json +0 -6
  4231. package/lib/dom/getFocusableElements.d.ts +0 -41
  4232. package/lib/polyfillPlaceholder/package.json +0 -6
  4233. package/lib/polyfillPlaceholder/polyfillPlaceholder.js +0 -11
  4234. package/lib/polyfillPlaceholder/polyfillPlaceholder.js.map +0 -1
  4235. package/lib/polyfillPlaceholder.d.ts +0 -1
  4236. package/lib/theming/themes/FlatTheme/FlatTheme.js +0 -3
  4237. package/lib/theming/themes/FlatTheme/FlatTheme.js.map +0 -1
  4238. package/lib/theming/themes/FlatTheme/package.json +0 -6
  4239. package/lib/theming/themes/FlatTheme.d.ts +0 -1
  4240. /package/cjs/components/{Fias → Autocomplete}/locale/types.js.map +0 -0
  4241. /package/cjs/{internal → components}/Calendar/CalendarDateShape.d.ts +0 -0
  4242. /package/cjs/{internal → components}/Calendar/CalendarScrollEvents.d.ts +0 -0
  4243. /package/cjs/{internal → components}/Calendar/CalendarScrollEvents.js +0 -0
  4244. /package/cjs/{internal → components}/Calendar/DayCellViewModel.d.ts +0 -0
  4245. /package/cjs/{internal → components}/Calendar/index.d.ts +0 -0
  4246. /package/cjs/components/{Logotype → Calendar}/locale/types.js.map +0 -0
  4247. /package/cjs/components/{TopBar → FileUploader}/locale/types.js.map +0 -0
  4248. /package/cjs/{internal/SpinnerOld → components/Modal}/locale/types.js.map +0 -0
  4249. /package/{components/Fias/locale/types → cjs/components/PasswordInput/locale}/types.js.map +0 -0
  4250. /package/{components/Logotype/locale/types → cjs/components/ResponsiveLayout}/types.js.map +0 -0
  4251. /package/{components/TopBar/locale/types → cjs/components/SidePage/locale}/types.js.map +0 -0
  4252. /package/{internal/SpinnerOld/locale/types → cjs/components/Toast/locale}/types.js.map +0 -0
  4253. /package/{internal → components}/Calendar/CalendarDateShape/CalendarDateShape.js +0 -0
  4254. /package/{internal → components}/Calendar/CalendarDateShape.d.ts +0 -0
  4255. /package/{internal → components}/Calendar/CalendarScrollEvents/CalendarScrollEvents.js +0 -0
  4256. /package/{internal → components}/Calendar/CalendarScrollEvents.d.ts +0 -0
  4257. /package/{internal → components}/Calendar/DayCellViewModel.d.ts +0 -0
  4258. /package/{internal → components}/Calendar/index/index.js +0 -0
  4259. /package/{internal → components}/Calendar/index.d.ts +0 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,3366 @@
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.17.0-next.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.16.1...@skbkontur/react-ui@4.17.0-next.2) (2023-10-16)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **Button:** update disabled and hover styles ([#3272](https://github.com/skbkontur/retail-ui/issues/3272)) ([5653505](https://github.com/skbkontur/retail-ui/commit/56535052fb0b4edea30636b6b66cd0bd5fe8af63))
12
+ * **Button:** update styles in disabled Button ([#3279](https://github.com/skbkontur/retail-ui/issues/3279)) ([80e2f91](https://github.com/skbkontur/retail-ui/commit/80e2f919d47a29c14c7fcd0d6612b22e9f4f1449))
13
+ * **ComboBox:** fix mobile overlay not closing when using public methods ([#3268](https://github.com/skbkontur/retail-ui/issues/3268)) ([46ffefa](https://github.com/skbkontur/retail-ui/commit/46ffefad121c0525f502d169c5d0052bff49129e))
14
+ * **ComboBox:** submit form on Enter if closed ([#3264](https://github.com/skbkontur/retail-ui/issues/3264)) ([3646b08](https://github.com/skbkontur/retail-ui/commit/3646b08bb6e4e5b05c54513301626ab52eb9a2f9))
15
+ * **Paging:** disable forward button when current page is last ([#3273](https://github.com/skbkontur/retail-ui/issues/3273)) ([9b3a0b7](https://github.com/skbkontur/retail-ui/commit/9b3a0b74cafaa7753a62da43a8edaef30eae617c))
16
+ * **Sticky:** fix width calc in fixed state on page resize ([#3285](https://github.com/skbkontur/retail-ui/issues/3285)) ([8d19d82](https://github.com/skbkontur/retail-ui/commit/8d19d82d2ac07c16e442e8dd0478603ba7e84fb6))
17
+
18
+
19
+ ### Features
20
+
21
+ * **Kebab/Hint/Toast:** remove Pin and update style ([#3274](https://github.com/skbkontur/retail-ui/issues/3274)) ([b248448](https://github.com/skbkontur/retail-ui/commit/b248448241ae75eeaf70d2137c6e8aca779c3edf))
22
+
23
+
24
+
25
+
26
+
27
+ # [4.17.0-next.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.17.0-next.0...@skbkontur/react-ui@4.17.0-next.1) (2023-10-13)
28
+
29
+
30
+ ### Bug Fixes
31
+
32
+ * **ComboBox:** fix mobile overlay not closing when using public methods ([#3268](https://github.com/skbkontur/retail-ui/issues/3268)) ([46ffefa](https://github.com/skbkontur/retail-ui/commit/46ffefad121c0525f502d169c5d0052bff49129e))
33
+ * **ComboBox:** submit form on Enter if closed ([#3264](https://github.com/skbkontur/retail-ui/issues/3264)) ([3646b08](https://github.com/skbkontur/retail-ui/commit/3646b08bb6e4e5b05c54513301626ab52eb9a2f9))
34
+ * **Sticky:** fix width calc in fixed state on page resize ([#3285](https://github.com/skbkontur/retail-ui/issues/3285)) ([8d19d82](https://github.com/skbkontur/retail-ui/commit/8d19d82d2ac07c16e442e8dd0478603ba7e84fb6))
35
+
36
+
37
+
38
+
39
+
40
+ # [4.17.0-next.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.16.0...@skbkontur/react-ui@4.17.0-next.0) (2023-09-23)
41
+
42
+
43
+ ### Bug Fixes
44
+
45
+ * **Button:** update disabled and hover styles ([#3272](https://github.com/skbkontur/retail-ui/issues/3272)) ([5653505](https://github.com/skbkontur/retail-ui/commit/56535052fb0b4edea30636b6b66cd0bd5fe8af63))
46
+ * **Paging:** disable forward button when current page is last ([#3273](https://github.com/skbkontur/retail-ui/issues/3273)) ([9b3a0b7](https://github.com/skbkontur/retail-ui/commit/9b3a0b74cafaa7753a62da43a8edaef30eae617c))
47
+
48
+
49
+ ### Features
50
+
51
+ * **Kebab/Hint/Toast:** remove Pin and update style ([#3274](https://github.com/skbkontur/retail-ui/issues/3274)) ([b248448](https://github.com/skbkontur/retail-ui/commit/b248448241ae75eeaf70d2137c6e8aca779c3edf))
52
+
53
+
54
+
55
+
56
+
57
+ ## [4.16.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.16.0...@skbkontur/react-ui@4.16.1) (2023-10-16)
58
+
59
+
60
+ ### Bug Fixes
61
+
62
+ * **Button:** fix icons styles on hover in disabled state ([#3281](https://github.com/skbkontur/retail-ui/issues/3281)) ([276e82d](https://github.com/skbkontur/retail-ui/commit/276e82d44ba483ef08ff26827150885ceaaff930))
63
+ * **CurrencyInput:** remove `findDOMNode` console warning in `THEME_2022` ([#3278](https://github.com/skbkontur/retail-ui/issues/3278)) ([21a2a1f](https://github.com/skbkontur/retail-ui/commit/21a2a1f479d243746cf73b40f7300735600a464f))
64
+ * **DateInput:** use `flushSync` in React@18 ([#3286](https://github.com/skbkontur/retail-ui/issues/3286)) ([69efd4d](https://github.com/skbkontur/retail-ui/commit/69efd4d6da9b6546e8bdfbba52fccf676ddea07f))
65
+ * **Button:** add data-tid for spinner icon ([#3277](https://github.com/skbkontur/retail-ui/issues/3277)) ([88a2d15](https://github.com/skbkontur/retail-ui/commit/88a2d1502c537280434ed3004c77d9516e6971af))
66
+
67
+
68
+
69
+
70
+
71
+ # [4.16.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.16.0-next.10...@skbkontur/react-ui@4.16.0) (2023-09-21)
72
+
73
+ ### Features
74
+
75
+ * **Autocomplete,ComboBox,Dropdown,Select:** forward size to MenuItems ([#3265](https://github.com/skbkontur/retail-ui/issues/3265)) ([c0732e5](https://github.com/skbkontur/retail-ui/commit/c0732e51124140e7c1f4a9f7c970e92ca6ddc17a))
76
+ * **MenuHeader,MenuItem:** add prop size ([#3252](https://github.com/skbkontur/retail-ui/issues/3252)) ([e0e981a](https://github.com/skbkontur/retail-ui/commit/e0e981ad61389b04d9cc0ca885ee64c19de389b6))
77
+ * add aria-label to all appropriate components ([#3223](https://github.com/skbkontur/retail-ui/issues/3223)) ([5603ef6](https://github.com/skbkontur/retail-ui/commit/5603ef6eedec2786a68bb86a8b1131b609aea25c))
78
+ * **Checkbox:** add prop size ([#3230](https://github.com/skbkontur/retail-ui/issues/3230)) ([032279a](https://github.com/skbkontur/retail-ui/commit/032279af4673995bbae5f82da0e050ef9da9b53c))
79
+ * **Radio:** add prop size ([#3246](https://github.com/skbkontur/retail-ui/issues/3246)) ([ee270c9](https://github.com/skbkontur/retail-ui/commit/ee270c913d3c7502c27062af8a658e7ab9734098))
80
+ * **Textarea:** add prop size ([#3243](https://github.com/skbkontur/retail-ui/issues/3243)) ([b8c309d](https://github.com/skbkontur/retail-ui/commit/b8c309dfbb6b4ec4a9c3336789a25bd756b2c6cc))
81
+ * **Toggle:** add prop size ([#3233](https://github.com/skbkontur/retail-ui/issues/3233)) ([db76d09](https://github.com/skbkontur/retail-ui/commit/db76d091d6b8d94b25a1710adf9606a09b07c67b))
82
+ * **Tabs:** add prop size ([#3198](https://github.com/skbkontur/retail-ui/issues/3198)) ([69b2299](https://github.com/skbkontur/retail-ui/commit/69b2299e75606c6ee6f381af3591bdfec17e45a7))
83
+ * **InternalMenu:** replace with Menu ([#3234](https://github.com/skbkontur/retail-ui/issues/3234)) ([b19ac8f](https://github.com/skbkontur/retail-ui/commit/b19ac8fcb580384177acbfd2da7ea23b00c8ffdc))
84
+ * **Menu:** improve a11y of dropdown lists ([#3194](https://github.com/skbkontur/retail-ui/issues/3194)) ([c25f090](https://github.com/skbkontur/retail-ui/commit/c25f090f25a9e1078cbe882417f4b2c96559d5ec))
85
+ * **all:** add animations for hover and active states ([#3219](https://github.com/skbkontur/retail-ui/issues/3219)) ([51a6165](https://github.com/skbkontur/retail-ui/commit/51a61652aa8398dbc500cf500af480f883e97857))
86
+
87
+
88
+ ### Bug Fixes
89
+
90
+ * **Button:** disabled state doesn't bubble click ([#3262](https://github.com/skbkontur/retail-ui/issues/3262)) ([79a46a6](https://github.com/skbkontur/retail-ui/commit/79a46a6cc06971b36fc7bff0855b9daaf3bd2750))
91
+ * **Button:** remove outline in disabled state for colored use buttons ([#3244](https://github.com/skbkontur/retail-ui/issues/3244)) ([bd50313](https://github.com/skbkontur/retail-ui/commit/bd503130fff703396ea2e475f1f5998e710dcf98))
92
+ * **ComboBox:** extend getItems type ([#3260](https://github.com/skbkontur/retail-ui/issues/3260)) ([1da0591](https://github.com/skbkontur/retail-ui/commit/1da0591dc2ef91de8c124258da7b167dc6a9fc6c))
93
+ * **Link:** add transition on underline ([#3254](https://github.com/skbkontur/retail-ui/issues/3254)) ([6b9d106](https://github.com/skbkontur/retail-ui/commit/6b9d106369b963e9da6fbc54effb562f4e3467b1))
94
+ * **Toggle:** disable animations for `THEME_2022` ([#3256](https://github.com/skbkontur/retail-ui/issues/3256)) ([cdc9513](https://github.com/skbkontur/retail-ui/commit/cdc95137ce1a46d2720b67435c7c622919068440))
95
+ * **Autocomplete,Select,ComboBox:** add missing horizontal paddings for Menu on mobile ([#3207](https://github.com/skbkontur/retail-ui/issues/3207)) ([15be732](https://github.com/skbkontur/retail-ui/commit/15be73264ae957d5015539217dd76bacef494e25))
96
+ * **Button:** add color to border when `use=text` ([#3216](https://github.com/skbkontur/retail-ui/issues/3216)) ([01a10da](https://github.com/skbkontur/retail-ui/commit/01a10dac6325874581195aaa366ebf8b81bb1cb3))
97
+ * **Button:** add events onClickCapture, onMouseDown and onMouseUp ([#3249](https://github.com/skbkontur/retail-ui/issues/3249)) ([a5b3809](https://github.com/skbkontur/retail-ui/commit/a5b38093371568ac391363349e243075baf107c8))
98
+ * **Button:** repair `btnLink*` theme vars in THEME_2022 ([#3250](https://github.com/skbkontur/retail-ui/issues/3250)) ([5c6673c](https://github.com/skbkontur/retail-ui/commit/5c6673c2710d6d09050690c1f779d7eafaa13b72))
99
+ * **Calendar:** add accessible descriptions ([#3232](https://github.com/skbkontur/retail-ui/issues/3232)) ([b2b0d78](https://github.com/skbkontur/retail-ui/commit/b2b0d78f2d39daaa45e973034de6a533a7e701a3))
100
+ * **Calendar:** return customization of current day border in theme 2022 ([#3186](https://github.com/skbkontur/retail-ui/issues/3186)) ([1595e1d](https://github.com/skbkontur/retail-ui/commit/1595e1df80d72d42116f9604b44565733ce4895f))
101
+ * **DateInput:** remove unnecessary focus half-border ([#3221](https://github.com/skbkontur/retail-ui/issues/3221)) ([4613c66](https://github.com/skbkontur/retail-ui/commit/4613c662675e69401fcfcdfb93fa7c8b33125cca))
102
+ * **DateInput:** set native selection background ([#3222](https://github.com/skbkontur/retail-ui/issues/3222)) ([e3e4935](https://github.com/skbkontur/retail-ui/commit/e3e493523d2efd1d5b0826609180d7b16da5bba0))
103
+ * **Dropdown:** use default button styles ([#3242](https://github.com/skbkontur/retail-ui/issues/3242)) ([ec7aa2f](https://github.com/skbkontur/retail-ui/commit/ec7aa2fcea2230a6f95420544034c610e01291a5))
104
+ * **DropdownMenu,TooltipMenu,Kebab:** add preventIconsOffset prop ([beb6f90](https://github.com/skbkontur/retail-ui/commit/beb6f900f0e4c7c4b9e79d86f8b0066ae75b400d))
105
+ * **Modal:** remove excessive top padding on footer ([#3236](https://github.com/skbkontur/retail-ui/issues/3236)) ([473cb0f](https://github.com/skbkontur/retail-ui/commit/473cb0fe20c5e1f6d904230367600bba37308f1f))
106
+ * handle npm@8.5.0 publish breaking change ([80c5917](https://github.com/skbkontur/retail-ui/commit/80c5917afcdd9787e631c8bb0e64adc472593b2c))
107
+ * **FileUploaderFile:** wrap component in forwardRef ([#3238](https://github.com/skbkontur/retail-ui/issues/3238)) ([8dd42d6](https://github.com/skbkontur/retail-ui/commit/8dd42d6adb442e43f617e76458cc04eaadc30ff2))
108
+ * **InputLikeText:** use debounce to control async content selection ([#3218](https://github.com/skbkontur/retail-ui/issues/3218)) ([39c07d4](https://github.com/skbkontur/retail-ui/commit/39c07d43ee0e70aad99451f9a22dbbe7e276f123))
109
+ * **Select:** add max-width on mobile ([#3210](https://github.com/skbkontur/retail-ui/issues/3210)) ([54f612c](https://github.com/skbkontur/retail-ui/commit/54f612c26a793607d435a0f45b680d1f6235664b))
110
+
111
+
112
+
113
+
114
+
115
+ ## [4.15.7](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.15.6...@skbkontur/react-ui@4.15.7) (2023-08-25)
116
+
117
+
118
+ ### Bug Fixes
119
+
120
+ * **ComboBox:** remove flushSync console error for React18 ([#3253](https://github.com/skbkontur/retail-ui/issues/3253)) ([e71cbad](https://github.com/skbkontur/retail-ui/commit/e71cbad60e3c7be20ead3381b49800cda9c383f7))
121
+ * **Input:** repair icon props ([#3248](https://github.com/skbkontur/retail-ui/issues/3248)) ([54d0349](https://github.com/skbkontur/retail-ui/commit/54d03496a834aa044314f51788048eea2af0ed58))
122
+
123
+
124
+
125
+
126
+
127
+ ## [4.15.6](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.15.5...@skbkontur/react-ui@4.15.6) (2023-08-02)
128
+
129
+ **Note:** Version bump only for package @skbkontur/react-ui
130
+
131
+
132
+
133
+
134
+
135
+ ## [4.15.5](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.15.4...@skbkontur/react-ui@4.15.5) (2023-08-02)
136
+
137
+
138
+ ### Bug Fixes
139
+
140
+ * **InputLikeText:** use debounce to control async content selection ([#3226](https://github.com/skbkontur/retail-ui/issues/3226)) ([18e5947](https://github.com/skbkontur/retail-ui/commit/18e5947086f0a6b161b4fc0d40412a600131337f))
141
+
142
+
143
+
144
+
145
+
146
+ ## [4.15.4](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.15.3...@skbkontur/react-ui@4.15.4) (2023-07-24)
147
+
148
+
149
+ ### Bug Fixes
150
+
151
+ * a correct republish of the previous release
152
+
153
+
154
+
155
+
156
+
157
+ ## [4.15.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.15.2...@skbkontur/react-ui@4.15.3) (2023-07-21)
158
+
159
+
160
+ ### Bug Fixes
161
+
162
+ * **ComboBox,InputLikeText:** use `flushSync` only in React 18 ([#3206](https://github.com/skbkontur/retail-ui/issues/3206)) ([ee55374](https://github.com/skbkontur/retail-ui/commit/ee55374df69f797f1257d99250366770b513a096))
163
+
164
+
165
+
166
+
167
+
168
+ ## [4.15.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.15.1...@skbkontur/react-ui@4.15.2) (2023-07-17)
169
+
170
+
171
+ * **ComboBox:** use `flushSync` only in React@18 ([#3202](https://github.com/skbkontur/retail-ui/issues/3202)) ([9795006](https://github.com/skbkontur/retail-ui/commit/9795006c799b7266fd88bb9dcf5760148c3ad12d))
172
+ * **CurrencyInput:** allow to work with very small or large values ([#3200](https://github.com/skbkontur/retail-ui/issues/3200)) ([ffc234f](https://github.com/skbkontur/retail-ui/commit/ffc234f726479c9a26b3da5c1b768b061dbf52d1))
173
+ * **Link, Button:** add theme variables for border-bottom ([#3203](https://github.com/skbkontur/retail-ui/issues/3203)) ([d418758](https://github.com/skbkontur/retail-ui/commit/d4187586f24d943716b24ac2cfc437e69becf53e))
174
+
175
+
176
+
177
+
178
+
179
+ ## [4.15.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.15.0...@skbkontur/react-ui@4.15.1) (2023-07-04)
180
+
181
+
182
+ ### Bug Fixes
183
+
184
+ * allow use inherit as a linkColor ([#3185](https://github.com/skbkontur/retail-ui/issues/3185)) ([09218bb](https://github.com/skbkontur/retail-ui/commit/09218bb9bce9746e25b1894b9c3631e0a0b44785))
185
+ * **ComboBox:** flushSync throws an error into console ([#3189](https://github.com/skbkontur/retail-ui/issues/3189)) ([8e0d2d2](https://github.com/skbkontur/retail-ui/commit/8e0d2d20f2bd5e5f034841a8057ce4a06012d23b))
186
+ * **html:** get rid of type duplication ([#3188](https://github.com/skbkontur/retail-ui/issues/3188)) ([5de46a4](https://github.com/skbkontur/retail-ui/commit/5de46a4aef7728239f417c225235f9a97ec23cac))
187
+ * **Modal.Header, Modal.Footer:** passing common props ([#3187](https://github.com/skbkontur/retail-ui/issues/3187)) ([4aa327b](https://github.com/skbkontur/retail-ui/commit/4aa327b9b457912591c57b83342e722ae0802506))
188
+ * **theme:** add missing units to values ([#3184](https://github.com/skbkontur/retail-ui/issues/3184)) ([885a372](https://github.com/skbkontur/retail-ui/commit/885a372d8d6b5e3df3894cfee8f59ed685b0c056))
189
+
190
+
191
+
192
+
193
+
194
+ # [4.15.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.14.2...@skbkontur/react-ui@4.15.0) (2023-06-13)
195
+
196
+
197
+ ### Bug Fixes
198
+
199
+ * **Button:** correct link outline position (#IF-867) ([#3132](https://github.com/skbkontur/retail-ui/issues/3132)) ([49c7842](https://github.com/skbkontur/retail-ui/commit/49c7842d5e5a6e04788d0da084346461d424a2e2)), closes [#IF-867](https://github.com/skbkontur/retail-ui/issues/IF-867)
200
+ * **ComboBox:** use flushSync due to auto-batching in React18 ([#3144](https://github.com/skbkontur/retail-ui/issues/3144)) ([16bac3c](https://github.com/skbkontur/retail-ui/commit/16bac3c6f41c15409c23f2e3adbade630fa247ea))
201
+ * **Link:** change color and hover color ([#3182](https://github.com/skbkontur/retail-ui/issues/3182)) ([6ed5bd4](https://github.com/skbkontur/retail-ui/commit/6ed5bd4bfe0a358b86739a72e67d09353c1a4511))
202
+ * **Modal:** configure z-index to correctly work with other components ([#3104](https://github.com/skbkontur/retail-ui/issues/3104)) ([0532871](https://github.com/skbkontur/retail-ui/commit/05328718368c146100665f6b3aa5a03a2810b9c3))
203
+ * **ScrollContainer:** scroll disappears after toggling disabled ([#3152](https://github.com/skbkontur/retail-ui/issues/3152)) ([f1c3444](https://github.com/skbkontur/retail-ui/commit/f1c34444d595b14dcd2d397e6a25c45d2c2bc62c))
204
+ * **Spinner:** avoid circle clipping ([#3153](https://github.com/skbkontur/retail-ui/issues/3153)) ([80c2b59](https://github.com/skbkontur/retail-ui/commit/80c2b593da303f8e56feabc5d6d922c72a9175d7))
205
+
206
+
207
+ ### Features
208
+
209
+ * **Button, Modal, SidePage, Switcher:** pass props for a11y ([#3163](https://github.com/skbkontur/retail-ui/issues/3163)) ([694e8d9](https://github.com/skbkontur/retail-ui/commit/694e8d97fb07842cc925cfdacc35b167fb1ff9b3))
210
+ * **Calendar:** add new public component Calendar ([#2888](https://github.com/skbkontur/retail-ui/issues/2888)) ([d6871c5](https://github.com/skbkontur/retail-ui/commit/d6871c5ee3ed9b3b553f7a1e89da6d37ccd3d211))
211
+
212
+
213
+
214
+
215
+
216
+ ## [4.14.2](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.14.1...@skbkontur/react-ui@4.14.2) (2023-06-09)
217
+
218
+
219
+ ### Bug Fixes
220
+
221
+ * **Button, Input, Kebab:** resize icons according to control's size ([#3183](https://github.com/skbkontur/retail-ui/issues/3183)) ([7dd6e9f](https://github.com/skbkontur/retail-ui/commit/7dd6e9fb0e5899f8fd092888082fd88c2e0e781f))
222
+
223
+
224
+
225
+
226
+
227
+ ## [4.14.1](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.14.0...@skbkontur/react-ui@4.14.1) (2023-06-03)
228
+
229
+
230
+ ### Bug Fixes
231
+
232
+ * **Input:** fix too long `prefix` & missing `placeholder` ([#3170](https://github.com/skbkontur/retail-ui/issues/3170)) ([ab31f22](https://github.com/skbkontur/retail-ui/commit/ab31f2248f1cadeb544b4711f024227d6da64a6a))
233
+
234
+
235
+
236
+
237
+
238
+ # [4.14.0](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.13.4...@skbkontur/react-ui@4.14.0) (2023-05-30)
239
+
240
+
241
+ ### Bug Fixes
242
+
243
+ * **ComboBox:** set as=div for MenuMessage ([#3162](https://github.com/skbkontur/retail-ui/issues/3162)) ([87a84b6](https://github.com/skbkontur/retail-ui/commit/87a84b67ebe79711f3fbad39566575343da73847))
244
+
245
+
246
+ ### Features
247
+
248
+ * **Input:** support new types (#IF-290) ([#3129](https://github.com/skbkontur/retail-ui/issues/3129)) ([c478aab](https://github.com/skbkontur/retail-ui/commit/c478aab0f2198bdadc22f8a6c726534f87270454)), closes [#IF-290](https://github.com/skbkontur/retail-ui/issues/IF-290)
249
+ * **theme:** add full support for THEME_2022 ([#3045](https://github.com/skbkontur/retail-ui/issues/3045)) ([6dac5a4](https://github.com/skbkontur/retail-ui/commit/6dac5a49c4c8aed6fcd8a83ce6fd65d7da211690))
250
+
251
+
252
+
253
+
254
+
255
+ ## [4.13.4](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.13.3...@skbkontur/react-ui@4.13.4) (2023-04-14)
256
+
257
+
258
+ ### Bug Fixes
259
+
260
+ * **Modal,SidePage:** use safety `globalThat` instead of `global` ([#3142](https://github.com/skbkontur/retail-ui/issues/3142)) ([89df16d](https://github.com/skbkontur/retail-ui/commit/89df16db457455ea70c1c9128d17fedb6b503bf8))
261
+
262
+
263
+
264
+
265
+
266
+ ## [4.13.3](https://github.com/skbkontur/retail-ui/compare/@skbkontur/react-ui@4.13.2...@skbkontur/react-ui@4.13.3) (2023-04-12)
267
+
268
+
269
+ ### Bug Fixes
270
+
271
+ * **Hint,Tooltip:** support multiple mount/unmount (React18DevStrictMode) ([f86f3ee](https://github.com/skbkontur/retail-ui/commit/f86f3eeeed608a9abb305f226f227647c258a49c))
272
+ * **Paging:** global styles may cause circles to shrink ([#3128](https://github.com/skbkontur/retail-ui/issues/3128)) ([063201a](https://github.com/skbkontur/retail-ui/commit/063201a51924901c6a01b2fd565290b0ea2f657c))
273
+
274
+
275
+
276
+
277
+
278
+ ## [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)
279
+
280
+
281
+ ### Bug Fixes
282
+
283
+ * **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))
284
+ * **TokenInput:** remove empty tokens on paste ([#3124](https://github.com/skbkontur/retail-ui/issues/3124)) ([a326d92](https://github.com/skbkontur/retail-ui/commit/a326d92e1578e0e901b91c38ecbfc27c9a23b231))
285
+
286
+
287
+
288
+
289
+
290
+ ## [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)
291
+
292
+
293
+ ### Bug Fixes
294
+
295
+ * **MenuMessage:** pass ref ([#3113](https://github.com/skbkontur/retail-ui/issues/3113)) ([3864e08](https://github.com/skbkontur/retail-ui/commit/3864e08017a0f88309ec3e6cb86304e4508c124c))
296
+
297
+
298
+
299
+
300
+
301
+ # [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)
302
+
303
+
304
+ ### Features
305
+
306
+ * **ScrollContainer:** add `hideScrollBar` prop ([#3106](https://github.com/skbkontur/retail-ui/issues/3106)) ([609739b](https://github.com/skbkontur/retail-ui/commit/609739b8cc8586bd32b37de9d96dc8288ea8aff4))
307
+ * add aria-describedby attribute to elements ([#3094](https://github.com/skbkontur/retail-ui/issues/3094)) ([8f37e81](https://github.com/skbkontur/retail-ui/commit/8f37e817b86cee94fca5e7f37a8fdcb9928f289e))
308
+ * **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))
309
+ * **RadioGroup:** add roles for a11y ([#3096](https://github.com/skbkontur/retail-ui/issues/3096)) ([069b588](https://github.com/skbkontur/retail-ui/commit/069b58860e1254da1818bd28d3a17ecba334a702))
310
+
311
+
312
+
313
+
314
+
315
+ # [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)
316
+
317
+
318
+ ### Bug Fixes
319
+
320
+ * **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))
321
+
322
+
323
+ ### Features
324
+
325
+ * **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))
326
+ * **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))
327
+
328
+
329
+
330
+
331
+
332
+ # [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)
333
+
334
+
335
+ ### Bug Fixes
336
+
337
+ * **Modal:** forced scroll on mobile devices ([#3070](https://github.com/skbkontur/retail-ui/issues/3070)) ([a6262de](https://github.com/skbkontur/retail-ui/commit/a6262ded4a727f63fb15a800e432669d27a01df9))
338
+ * **ThemeFactory:** correct `overrideDefaultTheme` method ([#3073](https://github.com/skbkontur/retail-ui/issues/3073)) ([9f9b31e](https://github.com/skbkontur/retail-ui/commit/9f9b31ea961de245b8de1d6986359a918db8f739))
339
+
340
+
341
+ ### Features
342
+
343
+ * **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))
344
+
345
+
346
+
347
+
348
+
349
+ # [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)
350
+
351
+
352
+ ### Features
353
+
354
+ * **Menu:** add theme variable `menuOffsetY` ([#3078](https://github.com/skbkontur/retail-ui/issues/3078)) ([75c0637](https://github.com/skbkontur/retail-ui/commit/75c0637565a13bad2eed7b0d0e1490784011c08d))
355
+
356
+
357
+
358
+
359
+
360
+ ## [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)
361
+
362
+
363
+ ### Bug Fixes
364
+
365
+ * **FileUploader:** validation tooltip position ([#3055](https://github.com/skbkontur/retail-ui/issues/3055)) ([c66886a](https://github.com/skbkontur/retail-ui/commit/c66886aeaed8d8c0cae59435cf5509ba8151c358))
366
+ * **SidePage:** return cross icon on mobile ([#3057](https://github.com/skbkontur/retail-ui/issues/3057)) ([7e29a08](https://github.com/skbkontur/retail-ui/commit/7e29a081feb018704e283e2c39f710d484fa8a35))
367
+
368
+
369
+
370
+
371
+
372
+ ## [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)
373
+
374
+
375
+ ### Bug Fixes
376
+
377
+ * **icons:** add aria-hidden attribute ([#3048](https://github.com/skbkontur/retail-ui/issues/3048)) ([4d2f69b](https://github.com/skbkontur/retail-ui/commit/4d2f69bb08ee00a1798688985013af02d7313b35))
378
+ * **ResponsiveLayout:** configure to work with SSR ([#3052](https://github.com/skbkontur/retail-ui/issues/3052)) ([bd36596](https://github.com/skbkontur/retail-ui/commit/bd365967948b4d5dc525bb8a30c22312b90bc0ce))
379
+ * **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))
380
+ * **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))
381
+
382
+
383
+
384
+
385
+
386
+ # [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)
387
+
388
+
389
+ ### Bug Fixes
390
+
391
+ * **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))
392
+ * **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))
393
+ * export ColorFunctions and DimensionFunctions ([#3043](https://github.com/skbkontur/retail-ui/issues/3043)) ([b3f2c24](https://github.com/skbkontur/retail-ui/commit/b3f2c242fa07f5d7e11dad292bf34e86c932ef9d))
394
+
395
+
396
+ ### Features
397
+
398
+ * **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))
399
+ * **Switcher:** add `renderItem` prop ([#3021](https://github.com/skbkontur/retail-ui/issues/3021)) ([2e6e2a9](https://github.com/skbkontur/retail-ui/commit/2e6e2a907673482cb5678e4ae7e88bfd37b60eee))
400
+
401
+
402
+
403
+
404
+
405
+ # [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)
406
+
407
+
408
+ ### Bug Fixes
409
+
410
+ * **CurrencyInput:** clearing value ([#3025](https://github.com/skbkontur/retail-ui/issues/3025)) ([b30a14f](https://github.com/skbkontur/retail-ui/commit/b30a14f844af0cee0bc8837ff5468a6cede88531))
411
+ * **MenuItem:** icon offset in mobile version ([#3010](https://github.com/skbkontur/retail-ui/issues/3010)) ([6494538](https://github.com/skbkontur/retail-ui/commit/649453816fd86b937590722deadafb9533446bd4))
412
+
413
+
414
+ ### Features
415
+
416
+ * **Switcher:** add buttonProps field to items ([#3017](https://github.com/skbkontur/retail-ui/issues/3017)) ([25c330e](https://github.com/skbkontur/retail-ui/commit/25c330e7020dcd6f58f3e083ddc73bff97ad178c))
417
+
418
+
419
+
420
+
421
+
422
+ # [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)
423
+
424
+
425
+ ### Bug Fixes
426
+
427
+ * **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))
428
+ * **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))
429
+ * **Paging:** visual appearance of disabled state ([#3020](https://github.com/skbkontur/retail-ui/issues/3020)) ([801d630](https://github.com/skbkontur/retail-ui/commit/801d630883f2d3f7723a3ddd32cd9270f96a185f))
430
+ * **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))
431
+ * **toggle:** improve a11y of toggle component ([#3014](https://github.com/skbkontur/retail-ui/issues/3014)) ([e7d97df](https://github.com/skbkontur/retail-ui/commit/e7d97dfa419051bb542e2538bfa6cc85d69826e9))
432
+
433
+
434
+ ### Features
435
+
436
+ * **ComboBox:** add prop `itemWrapper` ([#3016](https://github.com/skbkontur/retail-ui/issues/3016)) ([bdb48bb](https://github.com/skbkontur/retail-ui/commit/bdb48bbfa425e743ebbafb4f0d079b0979ccdee7))
437
+
438
+
439
+
440
+
441
+
442
+ ## [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)
443
+
444
+
445
+ ### Bug Fixes
446
+
447
+ * **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))
448
+
449
+
450
+ ### Reverts
451
+
452
+ * 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)
453
+
454
+
455
+
456
+
457
+
458
+ # [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)
459
+
460
+
461
+ ### Bug Fixes
462
+
463
+ * **DropdownMenu:** apply MenuSeparator instead css ([#2997](https://github.com/skbkontur/retail-ui/issues/2997)) ([a56844f](https://github.com/skbkontur/retail-ui/commit/a56844f2c1b1610f3cc8660ffab8e3a286afe96d))
464
+ * **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))
465
+ * **isNullable:** error in types ([#3005](https://github.com/skbkontur/retail-ui/issues/3005)) ([f6a4411](https://github.com/skbkontur/retail-ui/commit/f6a4411f72aac17a8b887d3ef8287747099f6be8))
466
+
467
+
468
+ ### Features
469
+
470
+ * **CurrencyLabel:** new prop 'hideTrailingZeros' ([#2994](https://github.com/skbkontur/retail-ui/issues/2994)) ([57c3e3a](https://github.com/skbkontur/retail-ui/commit/57c3e3af9c52f7ad896b67e45e6a3391cdefbd5c))
471
+ * **MenuItem:** add rel attribute ([#2998](https://github.com/skbkontur/retail-ui/issues/2998)) ([80f022d](https://github.com/skbkontur/retail-ui/commit/80f022d23c999b9bd3c2e1c3c121890a1d35e067))
472
+ * **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))
473
+ * **SidePage:** update layout on resize SidePageBody ([#3004](https://github.com/skbkontur/retail-ui/issues/3004)) ([09445e2](https://github.com/skbkontur/retail-ui/commit/09445e2a6412b1f20f9e44a7ebd780dde15e740c))
474
+ * **SidePage:** update layout on resize SidePageBody ([#3007](https://github.com/skbkontur/retail-ui/issues/3007)) ([1888bf9](https://github.com/skbkontur/retail-ui/commit/1888bf9f214eb5ce58c2ea72a6f4318e28996b78))
475
+
476
+
477
+
478
+
479
+
480
+ ## [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)
481
+
482
+
483
+ ### Bug Fixes
484
+
485
+ * **Select:** use input's background color ([#2978](https://github.com/skbkontur/retail-ui/issues/2978)) ([560ad55](https://github.com/skbkontur/retail-ui/commit/560ad55f7fe1fa8459e875fdf6bec58bb4658930))
486
+
487
+
488
+
489
+
490
+
491
+ ## [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)
492
+
493
+
494
+ ### Bug Fixes
495
+
496
+ * **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))
497
+ * **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))
498
+
499
+
500
+
501
+
502
+
503
+ ## [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)
504
+
505
+
506
+ ### Bug Fixes
507
+
508
+ * **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))
509
+
510
+
511
+
512
+
513
+
514
+ # [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)
515
+
516
+
517
+ ### Bug Fixes
518
+
519
+ * **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))
520
+ * **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))
521
+ * **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))
522
+ * **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))
523
+
524
+
525
+ ### Features
526
+
527
+ * **ResponsiveLayout,useResponsiveLayout:** custom media queries ([#2957](https://github.com/skbkontur/retail-ui/issues/2957)) ([7befaf9](https://github.com/skbkontur/retail-ui/commit/7befaf9d9222c95d99150aba37988cec9a5b0326))
528
+
529
+
530
+
531
+
532
+
533
+ # [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)
534
+
535
+ **Note:** Version bump due significan refactoring
536
+
537
+
538
+
539
+
540
+
541
+ ## [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)
542
+
543
+
544
+ ### Bug Fixes
545
+
546
+ * **CurrencyInput:** add support comma aliases ([#2974](https://github.com/skbkontur/retail-ui/issues/2974)) ([82bf20b](https://github.com/skbkontur/retail-ui/commit/82bf20b4b5bedc9d24d5f8f8070ee4d598a67287))
547
+ * **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))
548
+ * **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))
549
+ * **Popup:** accept SVG as anchor ([#2946](https://github.com/skbkontur/retail-ui/issues/2946)) ([a5f7283](https://github.com/skbkontur/retail-ui/commit/a5f72836dd0d31d4a109ac2bb0d6d6a4e3109d19))
550
+ * **theme:** add missing units to values ([#2968](https://github.com/skbkontur/retail-ui/issues/2968)) ([b79f626](https://github.com/skbkontur/retail-ui/commit/b79f6264cd9af4ffd21ea3c57d5f849be9504409))
551
+ * **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))
552
+
553
+
554
+
555
+
556
+
557
+ # [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)
558
+
559
+
560
+ ### Bug Fixes
561
+
562
+ * 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))
563
+ * **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))
564
+
565
+
566
+ ### Features
567
+
568
+ * make props with default values truly optional in types ([72d02d5](https://github.com/skbkontur/retail-ui/commit/72d02d511a6ca0ea1a3569942f8cbde2f4c07d25))
569
+
570
+
571
+
572
+
573
+
574
+ ## [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)
575
+
576
+
577
+ ### Bug Fixes
578
+
579
+ * **Modal:** fix paddings flickering ([#2949](https://github.com/skbkontur/retail-ui/issues/2949)) ([d81d152](https://github.com/skbkontur/retail-ui/commit/d81d152e409b3af8cccd9e0f9af9105c8336a2ec))
580
+ * **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)
581
+ * **TooltipMenu:** prevent double scroll ([#2950](https://github.com/skbkontur/retail-ui/issues/2950)) ([42b3f2f](https://github.com/skbkontur/retail-ui/commit/42b3f2f363141ccc1e3b5526cbeab1bc8b5073be))
582
+
583
+
584
+
585
+
586
+
587
+ ## [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)
588
+
589
+
590
+ ### Bug Fixes
591
+
592
+ * **ResponsiveLayout:** fix memory leak ([#2948](https://github.com/skbkontur/retail-ui/issues/2948)) ([29e3243](https://github.com/skbkontur/retail-ui/commit/29e3243f388588e9945da3b1079f4aa2f8a2b0fc))
593
+ * **Tooltip:** fix click outside detection ([#2941](https://github.com/skbkontur/retail-ui/issues/2941)) ([3a560bb](https://github.com/skbkontur/retail-ui/commit/3a560bb9021b796cf72c5c2a54f09f71b339e029))
594
+
595
+
596
+
597
+
598
+
599
+ # [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)
600
+
601
+
602
+ ### Bug Fixes
603
+
604
+ * 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))
605
+ * warnings and mistakes in propTypes ([#2911](https://github.com/skbkontur/retail-ui/issues/2911)) ([74b1071](https://github.com/skbkontur/retail-ui/commit/74b1071d320998081b8ad0d30155867072d003a0))
606
+ * **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))
607
+
608
+
609
+ ### Features
610
+
611
+ * add export data-tids ([#2900](https://github.com/skbkontur/retail-ui/issues/2900)) ([627e841](https://github.com/skbkontur/retail-ui/commit/627e84104cf0b289fcb05d6f73afae4baf38856c))
612
+ * add toKey into RadioGroup ([#2929](https://github.com/skbkontur/retail-ui/issues/2929)) ([45a2697](https://github.com/skbkontur/retail-ui/commit/45a2697139de96233c0c8570b378178b6d59d11e))
613
+
614
+
615
+
616
+
617
+
618
+ ## [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)
619
+
620
+
621
+ ### Bug Fixes
622
+
623
+ * **Checkbox:** fix checking with pressed shift ([#2894](https://github.com/skbkontur/retail-ui/issues/2894)) ([2a3ee39](https://github.com/skbkontur/retail-ui/commit/2a3ee395bcc2844abdf992c9e594ea3ec2d0f593))
624
+ * **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))
625
+ * **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))
626
+ * **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))
627
+
628
+
629
+ ### Features
630
+
631
+ * **tokeninput:** add renderTotalCount and totalCount props ([#2887](https://github.com/skbkontur/retail-ui/issues/2887)) ([e745f07](https://github.com/skbkontur/retail-ui/commit/e745f07f6524df4b1810aa1de304363f249d80c7))
632
+
633
+
634
+
635
+
636
+
637
+ ## [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)
638
+
639
+
640
+ ### Bug Fixes
641
+
642
+ * **MaskedInput:** accept null as value ([#2902](https://github.com/skbkontur/retail-ui/issues/2902)) ([e3414eb](https://github.com/skbkontur/retail-ui/commit/e3414ebfd3934995c415c68df44bb5afd9ecd8c2))
643
+ * **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)
644
+ * **storybook:** StoryFn.story deprecated annotation ([#2798](https://github.com/skbkontur/retail-ui/issues/2798)) ([4c2bd8a](https://github.com/skbkontur/retail-ui/commit/4c2bd8ae93dc8e4a79f25de5baefe7a7c85b0b41))
645
+ * **Tabs:** active tab underline ([839043d](https://github.com/skbkontur/retail-ui/commit/839043d5a78eda18ddba9610134fb4955a91dd43))
646
+ * **TooltipMenu:** add onClose/onOpen props ([#2890](https://github.com/skbkontur/retail-ui/issues/2890)) ([92d4888](https://github.com/skbkontur/retail-ui/commit/92d48880c8feec11a00c8641c59e839a84e31fd2))
647
+
648
+
649
+
650
+
651
+
652
+ # [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)
653
+
654
+
655
+ ### Bug Fixes
656
+
657
+ * **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))
658
+ * **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))
659
+ * **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))
660
+ * **Select:** add menuBorderRadius theme var ([#2864](https://github.com/skbkontur/retail-ui/issues/2864)) ([d7d7827](https://github.com/skbkontur/retail-ui/commit/d7d78271b7945bd22ccbf6a4ff78a3ad61d5041a))
661
+
662
+
663
+ ### Features
664
+
665
+ * 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))
666
+
667
+
668
+
669
+
670
+
671
+ ## [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)
672
+
673
+
674
+ ### Bug Fixes
675
+
676
+ * **Button:** add btnLinkActiveColor theme var ([#2871](https://github.com/skbkontur/retail-ui/issues/2871)) ([0588d56](https://github.com/skbkontur/retail-ui/commit/0588d5699d07668aeb0ba25bece9fb95ea2ca89e))
677
+ * **Popup:** use content container as rootNode instead of anchorElement ([4eed6a0](https://github.com/skbkontur/retail-ui/commit/4eed6a06eaee691a3f2e0c8e474dc9a5b139ac5b))
678
+ * **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)
679
+ * **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))
680
+
681
+
682
+ ### Reverts
683
+
684
+ * 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)
685
+
686
+
687
+
688
+
689
+
690
+ ## [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)
691
+
692
+
693
+ ### Bug Fixes
694
+
695
+ * **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)
696
+
697
+
698
+
699
+
700
+
701
+ ## [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)
702
+
703
+
704
+ ### Bug Fixes
705
+
706
+ * **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))
707
+ * corrected ThemeFactory.overrideDefaultTheme ([#2845](https://github.com/skbkontur/retail-ui/issues/2845)) ([2cc964f](https://github.com/skbkontur/retail-ui/commit/2cc964f5a7f052a442893e1312de1cf9115e131f))
708
+
709
+
710
+
711
+
712
+
713
+ ## [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)
714
+
715
+
716
+ ### Bug Fixes
717
+
718
+ * **SidePage:** fix animation styles ([#2837](https://github.com/skbkontur/retail-ui/issues/2837)) ([2eeebb0](https://github.com/skbkontur/retail-ui/commit/2eeebb00fb651da8062d6b672f8bd71ae0fa7587))
719
+
720
+
721
+
722
+
723
+
724
+ ## [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)
725
+
726
+
727
+ ### Bug Fixes
728
+
729
+ * **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))
730
+ * **SidePage,Toast:** fix animation bugs ([#2835](https://github.com/skbkontur/retail-ui/issues/2835)) ([3c8e77d](https://github.com/skbkontur/retail-ui/commit/3c8e77dc67710b342d8df96043333f2cbf012c73))
731
+
732
+
733
+
734
+
735
+
736
+ ## [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)
737
+
738
+
739
+ ### Bug Fixes
740
+
741
+ * **DatePicker:** scroll to date ([#2829](https://github.com/skbkontur/retail-ui/issues/2829)) ([3f3366d](https://github.com/skbkontur/retail-ui/commit/3f3366dbf16b7348eef3981976cf2d07d0b54e2d))
742
+ * dropdownContainer position (master) ([#2827](https://github.com/skbkontur/retail-ui/issues/2827)) ([81467af](https://github.com/skbkontur/retail-ui/commit/81467af568ff519dd362b32dc8db360856f0ef7a))
743
+ * **Modal:** fix lodash import ([#2824](https://github.com/skbkontur/retail-ui/issues/2824)) ([0f15b5e](https://github.com/skbkontur/retail-ui/commit/0f15b5eb041337eda552d096a34914ed86aad79b))
744
+
745
+
746
+
747
+
748
+
749
+ # [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)
750
+
751
+
752
+ ### Bug Fixes
753
+
754
+ * **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)
755
+ * **Checkbox:** fix baseline ([3571ee3](https://github.com/skbkontur/retail-ui/commit/3571ee3877fd554201b5e901a581207b513c2f20))
756
+ * **GlobalLoader:** Доработали поведение и поправили мелкие баги ([#2767](https://github.com/skbkontur/retail-ui/issues/2767)) ([17a666d](https://github.com/skbkontur/retail-ui/commit/17a666d94acbcebb41c69563a8b489ca0f43da45))
757
+ * **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))
758
+ * **Radio:** fix baseline ([fcb021d](https://github.com/skbkontur/retail-ui/commit/fcb021d1ee63df6a8fecc9d5757c072c6863df28))
759
+ * **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))
760
+ * **react-ui:** don't depend on global line-height ([98cb4dc](https://github.com/skbkontur/retail-ui/commit/98cb4dcb8f71417c89e1fc61b4f1f45ba3119943))
761
+ * **ResponsiveLayout:** fallback for ie11 ([956f723](https://github.com/skbkontur/retail-ui/commit/956f7239c08bdb08d86e6056b2f6b71b540eaf22))
762
+ * **Spinner:** add inline type ([f7a0f35](https://github.com/skbkontur/retail-ui/commit/f7a0f3505b90777424da60d137c32ea25500c81b))
763
+ * **Toggle:** add vars for font-size and line-height ([911f1df](https://github.com/skbkontur/retail-ui/commit/911f1dfd89495265baa6cac2df45a1c52281ac8e))
764
+ * **Toggle:** fix baseline ([1d3960b](https://github.com/skbkontur/retail-ui/commit/1d3960b496fbfec9796e3eb72614b79be7436374))
765
+ * **Tooltip:** add vars for font-size and line-height ([3f27477](https://github.com/skbkontur/retail-ui/commit/3f274776c89ef194383de84f9cd5dbda3c0f6c1b))
766
+
767
+
768
+ ### Features
769
+
770
+ * **FileUploader:** new component FileUploader ([#2542](https://github.com/skbkontur/retail-ui/issues/2542)) ([18d009a](https://github.com/skbkontur/retail-ui/commit/18d009a8ebeafa2379d5fb46a564ead97c3da6a5))
771
+ * **GlobalLoader:** new component GlobalLoader ([#2554](https://github.com/skbkontur/retail-ui/issues/2554)) ([dfeef98](https://github.com/skbkontur/retail-ui/commit/dfeef98098932ee12d8f3591536f51b5add811c6))
772
+ * **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))
773
+ * **Modal:** add mobile version ([#2682](https://github.com/skbkontur/retail-ui/issues/2682)) ([10324c6](https://github.com/skbkontur/retail-ui/commit/10324c69505e11c1638aab7f128e8d0537cd4289))
774
+ * **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)
775
+ * **react-ui:** add lab grotesque compensation ([b1920bb](https://github.com/skbkontur/retail-ui/commit/b1920bbc5534161e686c2147979f47b7bc36b049))
776
+ * **react-ui:** add new theme ([#2592](https://github.com/skbkontur/retail-ui/issues/2592)) ([1aaaf17](https://github.com/skbkontur/retail-ui/commit/1aaaf17785bb624b730e26c525d019ae22acecd0))
777
+ * **react-ui:** dark theme ([#2698](https://github.com/skbkontur/retail-ui/issues/2698)) ([8047743](https://github.com/skbkontur/retail-ui/commit/8047743c1572e753b327a5323c9f4481b0c1db45))
778
+ * **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))
779
+ * **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))
780
+ * **Select,ComboBox,Autocomplete:** add responsive mobile layouts ([861f23a](https://github.com/skbkontur/retail-ui/commit/861f23affdc93e283a7dfdeaddd6b3af7cb27287))
781
+ * **SidePage:** add mobile version ([#2695](https://github.com/skbkontur/retail-ui/issues/2695)) ([46d469b](https://github.com/skbkontur/retail-ui/commit/46d469bcfa57ee2a85f9014f7fa8b56b10406062))
782
+
783
+
784
+ ### BREAKING CHANGES
785
+
786
+ * **react-ui:** update, rename and remove some themes, see #2592
787
+ * **Radio, Switcher, Checkbox:** rename label to caption
788
+
789
+
790
+
791
+
792
+
793
+ # [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)
794
+
795
+
796
+ ### Bug Fixes
797
+
798
+ * **Select:** fix menuAlign right ([#2693](https://github.com/skbkontur/retail-ui/issues/2693)) ([6428498](https://github.com/skbkontur/retail-ui/commit/6428498b8cb895f0bcfe853959b26caa41b53189))
799
+ * **SidePage:** Исправил ошибку `Maximum update`, когда скролишь второй SidePage ([74134d8](https://github.com/skbkontur/retail-ui/commit/74134d8bf5d8a4aaed5aa554e41bb50e44d3836d))
800
+ * **SidePage:** Исправил положение залипшего заголовка после закрытия второго SidePage ([76c6ff4](https://github.com/skbkontur/retail-ui/commit/76c6ff40eac3c76bb86e9118c4727b5bf6a442ae))
801
+
802
+
803
+ ### Features
804
+
805
+ * **Sticky:** Сделал метод `ref.reflow()` публичным ([bdfc991](https://github.com/skbkontur/retail-ui/commit/bdfc991e20317d6da68191357a9ecd554990ef9b))
806
+
807
+
808
+
809
+
810
+
811
+ # [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)
812
+
813
+
814
+ ### Bug Fixes
815
+
816
+ * **ScrollContainer:** consider scaling cases in browsers ([#2705](https://github.com/skbkontur/retail-ui/issues/2705)) ([e64d3de](https://github.com/skbkontur/retail-ui/commit/e64d3de80f12cdb7c2329d0b38d2531f84237f55))
817
+ * **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))
818
+ * **Spinner:** refactor animation for Safari ([#2748](https://github.com/skbkontur/retail-ui/issues/2748)) ([1698a4a](https://github.com/skbkontur/retail-ui/commit/1698a4a5542d9884f3e6deb833161a6219b9d72a))
819
+ * **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))
820
+
821
+
822
+ ### Features
823
+
824
+ * **Spinner:** add width and color props ([4ea170d](https://github.com/skbkontur/retail-ui/commit/4ea170d4f1cc30091c30e0ee637e38494ad79f0a))
825
+
826
+
827
+
828
+
829
+
830
+ # [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)
831
+
832
+
833
+ ### Bug Fixes
834
+
835
+ * **react-ui:** [StrictMode] give up findDomNode ([#2518](https://github.com/skbkontur/retail-ui/issues/2518)) ([8028cdd](https://github.com/skbkontur/retail-ui/commit/8028cdd3c2289fd48816bdaf92da6a28892f40a7))
836
+ * **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))
837
+ * **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))
838
+ * **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))
839
+ * **TokenInput:** handle Enter for TokenInputType.WithoutReference ([#2738](https://github.com/skbkontur/retail-ui/issues/2738)) ([2ee48cc](https://github.com/skbkontur/retail-ui/commit/2ee48cc31342dc13fd4596020d73e352311bdb82))
840
+
841
+
842
+ ### Features
843
+
844
+ * support React.StrictMode ([04a4bc9](https://github.com/skbkontur/retail-ui/commit/04a4bc9f2dd35fa98ea4d9526ddd775dd1017b71))
845
+ * **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))
846
+
847
+
848
+
849
+
850
+
851
+ ## [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)
852
+
853
+
854
+ ### Bug Fixes
855
+
856
+ * **Gapped:** correctly filter falsy childs ([#2692](https://github.com/skbkontur/retail-ui/issues/2692)) ([8e21e60](https://github.com/skbkontur/retail-ui/commit/8e21e60a7b7899945c2c101e48ede1a6e3360406))
857
+ * **Loader:** use `forEach` from `Array` ([#2702](https://github.com/skbkontur/retail-ui/issues/2702)) ([167a07a](https://github.com/skbkontur/retail-ui/commit/167a07ac3b8057396ce292d79f5bb21b9f1c7bd6))
858
+ * **RadioGroup:** fix types inference ([#2703](https://github.com/skbkontur/retail-ui/issues/2703)) ([4d410ab](https://github.com/skbkontur/retail-ui/commit/4d410ab8cf9d6d8b56f927e3b7efd698abf83920))
859
+
860
+
861
+
862
+
863
+
864
+ ## [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)
865
+
866
+
867
+ ### Bug Fixes
868
+
869
+ * **Button:** disable focus in loading state ([#2661](https://github.com/skbkontur/retail-ui/issues/2661)) ([1c910c1](https://github.com/skbkontur/retail-ui/commit/1c910c16a11ba81b6799d74106c74bc2afc1fd57))
870
+ * **Checkbox,Radio:** firing events onChange manually for Firefox ([6c19412](https://github.com/skbkontur/retail-ui/commit/6c19412b1c348666c802191ca851e4670df8edcc))
871
+ * **CurrencyInput:** refactor Input scroll on cursor is moving ([4e2e8d1](https://github.com/skbkontur/retail-ui/commit/4e2e8d135a05025454a213b77697b419bf7e1aca))
872
+ * **select:** add handleKey to search div ([#2660](https://github.com/skbkontur/retail-ui/issues/2660)) ([310b963](https://github.com/skbkontur/retail-ui/commit/310b963a510b134b391f6cae773a7b4940986623))
873
+ * **SidePage:** use `isTestEnv` by default for `disableAnimations` ([b4035e8](https://github.com/skbkontur/retail-ui/commit/b4035e8d2beb0a1886ba0b6590838ac363c79210))
874
+
875
+
876
+
877
+
878
+
879
+ ## [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)
880
+
881
+
882
+ ### Bug Fixes
883
+
884
+ * **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))
885
+
886
+
887
+
888
+
889
+
890
+ ## [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)
891
+
892
+
893
+ ### Bug Fixes
894
+
895
+ * **ComboBox:** fix blur in Chrome ([#2665](https://github.com/skbkontur/retail-ui/issues/2665)) ([dab2ef0](https://github.com/skbkontur/retail-ui/commit/dab2ef0a16f878e179dd1ae98cebc3d69a6b7987))
896
+ * **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))
897
+ * **SidePage:** add offset prop ([#2626](https://github.com/skbkontur/retail-ui/issues/2626)) ([59b0257](https://github.com/skbkontur/retail-ui/commit/59b0257634a82bde15bca415e4f803076c89cf7a))
898
+
899
+
900
+
901
+
902
+
903
+ # [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)
904
+
905
+
906
+ ### Bug Fixes
907
+
908
+ * **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))
909
+
910
+
911
+ ### Features
912
+
913
+ * **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))
914
+
915
+
916
+
917
+
918
+
919
+ ## [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)
920
+
921
+
922
+ ### Bug Fixes
923
+
924
+ * **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))
925
+ * **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)
926
+ * **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))
927
+
928
+
929
+
930
+
931
+
932
+ ## [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)
933
+
934
+
935
+ ### Bug Fixes
936
+
937
+ * **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))
938
+ * **RadioGroup:** problem with value type inference ([#2607](https://github.com/skbkontur/retail-ui/issues/2607)) ([d6136e4](https://github.com/skbkontur/retail-ui/commit/d6136e45a311b00f39bc5c741cef07aacf8d2f4f))
939
+ * **Select:** add vars for disabled state ([#2610](https://github.com/skbkontur/retail-ui/issues/2610)) ([7300141](https://github.com/skbkontur/retail-ui/commit/73001417ba004754c8f52da377ceff1fff0b6027))
940
+
941
+
942
+
943
+
944
+
945
+ ## [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)
946
+
947
+
948
+ ### Bug Fixes
949
+
950
+ * **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))
951
+ * **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)
952
+
953
+
954
+
955
+
956
+
957
+ ## [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)
958
+
959
+
960
+ ### Bug Fixes
961
+
962
+ * **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))
963
+ * **Toggle:** add id prop ([#2597](https://github.com/skbkontur/retail-ui/issues/2597)) ([82846db](https://github.com/skbkontur/retail-ui/commit/82846dbacff71a844867b88f7acb1c33eaef8bb9))
964
+ * **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))
965
+
966
+
967
+
968
+
969
+
970
+ ## [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)
971
+
972
+
973
+ ### Bug Fixes
974
+
975
+ * **Checkbox:** remove user-select:none ([#2586](https://github.com/skbkontur/retail-ui/issues/2586)) ([4da5f0c](https://github.com/skbkontur/retail-ui/commit/4da5f0cdc09d8e01f7d4ab7a7b01e58fdbad56b3))
976
+ * **Kebab:** restore menuMaxHeight prop ([#2588](https://github.com/skbkontur/retail-ui/issues/2588)) ([20b82ce](https://github.com/skbkontur/retail-ui/commit/20b82ce8a4e7a411e42f6b2c848de1308617cbdb))
977
+ * **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))
978
+ * **Toggle:** recover disabled caption styles ([#2582](https://github.com/skbkontur/retail-ui/issues/2582)) ([ef9fe96](https://github.com/skbkontur/retail-ui/commit/ef9fe969e0b59afe5ebe5c22827aa5bcdbd653f1))
979
+
980
+
981
+
982
+
983
+
984
+ # [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)
985
+
986
+
987
+ ### Bug Fixes
988
+
989
+ * **ComboBox:** handle falsy values correctly ([#2563](https://github.com/skbkontur/retail-ui/issues/2563)) ([2df7e09](https://github.com/skbkontur/retail-ui/commit/2df7e09ec6fd8f4ab9e999654263acbe8d989803))
990
+ * **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))
991
+ * **ThemePlayground:** computed vars are visible in the ThemeEditor ([62f191e](https://github.com/skbkontur/retail-ui/commit/62f191efa0234cc72175e05dcb543284fada7d7e))
992
+ * **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))
993
+
994
+
995
+ ### Features
996
+
997
+ * **Upgrades:** abillity to customize classNames prefix ([#2561](https://github.com/skbkontur/retail-ui/issues/2561)) ([fbc9ced](https://github.com/skbkontur/retail-ui/commit/fbc9ceda8d9cb9c2be7d69a7fa199cf7c9745cee))
998
+
999
+
1000
+
1001
+
1002
+
1003
+ ## [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)
1004
+
1005
+
1006
+ ### Bug Fixes
1007
+
1008
+ * **Button:** add btnBackgroundClip theme var ([72708f9](https://github.com/skbkontur/retail-ui/commit/72708f9c1f58f248bf53dd0f2e75088a100711d4))
1009
+ * **Button:** add title prop ([#2569](https://github.com/skbkontur/retail-ui/issues/2569)) ([5140e96](https://github.com/skbkontur/retail-ui/commit/5140e96fbd33c57aa15a720935f6904e02b1f315))
1010
+ * **Paging:** use default cursor style for disabled paging link ([788f70a](https://github.com/skbkontur/retail-ui/commit/788f70a3dd3385165f3ffa0de0eb02cca887e584))
1011
+ * **TokenInput:** add public focus/blur methods ([0137266](https://github.com/skbkontur/retail-ui/commit/0137266810f09f139974a3480650587bb4b69d15))
1012
+
1013
+
1014
+
1015
+
1016
+
1017
+ ## [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)
1018
+
1019
+
1020
+ ### Bug Fixes
1021
+
1022
+ * **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)
1023
+ * **FxInput:** remove refInput prop from spread ([c5f403d](https://github.com/skbkontur/retail-ui/commit/c5f403dec7342b8ce29bdb9571fba0569eefc6a6))
1024
+ * **HideBodyVerticalScroll:** now scrollbar hiding always ([#2540](https://github.com/skbkontur/retail-ui/issues/2540)) ([c93db68](https://github.com/skbkontur/retail-ui/commit/c93db684f2954b075794c2ac26db761b72953614))
1025
+ * **PopupMenu:** move width property from internalMenu to Popup ([20643a4](https://github.com/skbkontur/retail-ui/commit/20643a437cf302a3f017822c54320827f869932d))
1026
+ * **SidePage:** replace icon close tag from link to button ([4458332](https://github.com/skbkontur/retail-ui/commit/4458332a79a143295e42ec9388ea27d0b94a7b21))
1027
+ * **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))
1028
+ * **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))
1029
+
1030
+
1031
+
1032
+
1033
+
1034
+ # [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)
1035
+
1036
+
1037
+ ### Bug Fixes
1038
+
1039
+ * **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)
1040
+ * **Loader:** fix focus disabling ([fcc5e1e](https://github.com/skbkontur/retail-ui/commit/fcc5e1e42dcacffcb5d0abcb79998c3e0a107e2e))
1041
+ * **radio:** remove focus styles on mouse click ([876a1b8](https://github.com/skbkontur/retail-ui/commit/876a1b87ce5b0a16fe212b5a74680be7e20e1b3b))
1042
+ * **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))
1043
+ * **theme:** remove color variables from 8px theme ([c86ed5d](https://github.com/skbkontur/retail-ui/commit/c86ed5dd754affd93e1727305eb1f34189a5d98d))
1044
+ * **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))
1045
+
1046
+
1047
+ ### Features
1048
+
1049
+ * **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)
1050
+
1051
+
1052
+
1053
+
1054
+
1055
+ # [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)
1056
+
1057
+
1058
+ ### Bug Fixes
1059
+
1060
+ * **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))
1061
+ * **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)
1062
+
1063
+
1064
+ ### Features
1065
+
1066
+ * **Button:** add `btnWarningSecondary` theme var and * ([#2512](https://github.com/skbkontur/retail-ui/issues/2512)) ([8a75266](https://github.com/skbkontur/retail-ui/commit/8a75266d65b73f159461313b7ec35f014ce02b37))
1067
+ * **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)
1068
+
1069
+
1070
+
1071
+
1072
+
1073
+ # [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)
1074
+
1075
+
1076
+ ### Bug Fixes
1077
+
1078
+ * **DateInput:** open keyboard on mobile devices ([#2474](https://github.com/skbkontur/retail-ui/issues/2474)) ([0a68e1c](https://github.com/skbkontur/retail-ui/commit/0a68e1c5479c95df96ad17afc2617e9444e37bf2))
1079
+ * **Input:** fix disabled border on error ([#2510](https://github.com/skbkontur/retail-ui/issues/2510)) ([97619a1](https://github.com/skbkontur/retail-ui/commit/97619a18f08df130700439b503b0b29e1ec703b1))
1080
+
1081
+
1082
+ ### Features
1083
+
1084
+ * **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)
1085
+
1086
+
1087
+
1088
+
1089
+
1090
+ # [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)
1091
+
1092
+
1093
+ ### Bug Fixes
1094
+
1095
+ * **CurrencyInput:** fix delimiter for Safari ([#2495](https://github.com/skbkontur/retail-ui/issues/2495)) ([1b8789e](https://github.com/skbkontur/retail-ui/commit/1b8789ec9447fb775fb409d219105145280b05e7))
1096
+ * **Tab:** fix low height artefact ([20cdc0b](https://github.com/skbkontur/retail-ui/commit/20cdc0bbbd792b6be53bb123d1f8442d3840c2d6)), closes [#2500](https://github.com/skbkontur/retail-ui/issues/2500)
1097
+ * **Tooltip:** add closure workaround for Firefox and IE11 ([1236b0b](https://github.com/skbkontur/retail-ui/commit/1236b0ba35c6bff6a73b439e17db75ec91d5db6b))
1098
+
1099
+
1100
+ ### Features
1101
+
1102
+ * **react-ui:** fix unstable styles ([#2488](https://github.com/skbkontur/retail-ui/issues/2488)) ([b01898d](https://github.com/skbkontur/retail-ui/commit/b01898de589e6d146618867f476fb8803a78e91c))
1103
+ * **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)
1104
+ * **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)
1105
+
1106
+
1107
+
1108
+
1109
+
1110
+ ## [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)
1111
+
1112
+
1113
+ ### Bug Fixes
1114
+
1115
+ * **Select:** fix highlighting of selected item ([#2483](https://github.com/skbkontur/retail-ui/issues/2483)) ([6b5412b](https://github.com/skbkontur/retail-ui/commit/6b5412bf74bd0d9651aa0ea064c9dea7389a2b21))
1116
+
1117
+
1118
+
1119
+
1120
+
1121
+ # [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)
1122
+
1123
+
1124
+ ### Bug Fixes
1125
+
1126
+ * **Button:** update background and border color* ([ee617bb](https://github.com/skbkontur/retail-ui/commit/ee617bb8bb2285e9ba863a7768fd666c4d0a936a))
1127
+ * **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))
1128
+ * **HBVS:** fix styles restoration ([89eed10](https://github.com/skbkontur/retail-ui/commit/89eed10a3efa7b049ebed87de9b634137634a0bb))
1129
+ * **hint:** add hintBgColor var ([#2457](https://github.com/skbkontur/retail-ui/issues/2457)) ([3f828e6](https://github.com/skbkontur/retail-ui/commit/3f828e60d0708da94f66d1b65409e330100126d7))
1130
+
1131
+
1132
+ ### Features
1133
+
1134
+ * **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)
1135
+ * **SidePage:** add FocusLock ([#2467](https://github.com/skbkontur/retail-ui/issues/2467)) ([fe6ca6a](https://github.com/skbkontur/retail-ui/commit/fe6ca6af4da4b39e3973fa937fdbf09b6731d033))
1136
+ * **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)
1137
+
1138
+
1139
+
1140
+
1141
+
1142
+ ## [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)
1143
+
1144
+
1145
+ ### Bug Fixes
1146
+
1147
+ * **Modal,SidePage,HideBodyVerticalScroll:** fix performance issue ([7bd9ce6](https://github.com/skbkontur/retail-ui/commit/7bd9ce6974c2eea18537b15c6a6ee1a6e6a0a351))
1148
+ * **react-ui:** add new env vars for animation disabling ([9840822](https://github.com/skbkontur/retail-ui/commit/98408221c0d80ce24cf8da8a5cdbc96fee365519))
1149
+
1150
+
1151
+
1152
+
1153
+
1154
+ # [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)
1155
+
1156
+
1157
+ ### Bug Fixes
1158
+
1159
+ * **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))
1160
+ * **Modal:** fix shadows and footer color ([#2442](https://github.com/skbkontur/retail-ui/issues/2442)) ([94064bc](https://github.com/skbkontur/retail-ui/commit/94064bc8ea613f0caac806e25eb6584849ae7d95))
1161
+ * **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))
1162
+ * **SidePage:** fix shadows and footer color ([#2446](https://github.com/skbkontur/retail-ui/issues/2446)) ([6b925e6](https://github.com/skbkontur/retail-ui/commit/6b925e6464f01323172e27b692dbc2278efa902d))
1163
+
1164
+
1165
+ ### Features
1166
+
1167
+ * **Kebab:** add custom icon ([da3a23c](https://github.com/skbkontur/retail-ui/commit/da3a23c9f2863565120d98cb43bbad5e57303e85))
1168
+ * **react-ui:** support webpack 5 ([3b20af0](https://github.com/skbkontur/retail-ui/commit/3b20af0a0b9b9455fd7f7594b27f6bf41c09eb80))
1169
+
1170
+
1171
+
1172
+
1173
+
1174
+ # [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)
1175
+
1176
+
1177
+ ### Bug Fixes
1178
+
1179
+ * **Button:** remove middle line on arrows ([51f9395](https://github.com/skbkontur/retail-ui/commit/51f93953ff3f1e9a9afaecf866184e8c7e704dda))
1180
+ * **Checkbox:** fix not triggered onFocus handler ([c8b1247](https://github.com/skbkontur/retail-ui/commit/c8b12479ce9f74c26a936bf05b2a5a65bc87453d))
1181
+ * **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))
1182
+ * **Radio, Checkbox:** remove borders in flat theme ([a927027](https://github.com/skbkontur/retail-ui/commit/a927027d3482f60c2e18ab38cfb269b0dc79bff6))
1183
+ * **Tabs:** add resize detector in tab for updating indicator place ([347e672](https://github.com/skbkontur/retail-ui/commit/347e672e9cd964541ec0d6d1c2da5fbaef2a6b21))
1184
+ * **Textarea:** skip tab focus on iframe ([6f5aa39](https://github.com/skbkontur/retail-ui/commit/6f5aa39c77eb47e21654284c106c104bdf49e0d5))
1185
+
1186
+
1187
+ ### Features
1188
+
1189
+ * **Combobox:** add right icon ([#2431](https://github.com/skbkontur/retail-ui/issues/2431)) ([2c0d2c9](https://github.com/skbkontur/retail-ui/commit/2c0d2c9c990c1200d52e521434495e91f34bd9b0))
1190
+
1191
+
1192
+
1193
+
1194
+
1195
+ # [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)
1196
+
1197
+
1198
+ ### Bug Fixes
1199
+
1200
+ * **react-ui:** update default text color ([57189e6](https://github.com/skbkontur/retail-ui/commit/57189e6bebbfa63e293844c77c43b52153d13ea6))
1201
+ * **ThemeFactory:** create themes based on 8px by default ([141cf24](https://github.com/skbkontur/retail-ui/commit/141cf24b91a084c11fa641df0b3faf8dd3ea1612))
1202
+ * 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)
1203
+ * 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)
1204
+ * **Button:** add white-space: nowrap for linkbutton ([b5ceeed](https://github.com/skbkontur/retail-ui/commit/b5ceeedeb2216281f86e1c34a85a6ecbb16fd666))
1205
+ * **Button:** fix icon padding with empty children ([476a05d](https://github.com/skbkontur/retail-ui/commit/476a05de13f7276905bf4ac0081bf34d4dde32eb))
1206
+ * **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))
1207
+ * **Theme:** improve themes markers, no need to replicate them anymore ([f635939](https://github.com/skbkontur/retail-ui/commit/f6359395fb7a20129c24ad8bb17f424368094fe7))
1208
+ * **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)
1209
+ * **Tooltip,Hint:** change popup margin ([7c32369](https://github.com/skbkontur/retail-ui/commit/7c32369f12cb73fc0c77a46a10db2313e1dbfc43))
1210
+
1211
+
1212
+ ### Features
1213
+
1214
+ * **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))
1215
+ * **Button:** new loading state ([#2256](https://github.com/skbkontur/retail-ui/issues/2256)) ([c4d6537](https://github.com/skbkontur/retail-ui/commit/c4d65379f382c6fe5ddd4293ff9974443a3cae76))
1216
+ * **Fias:** remove component ([cd3ecdf](https://github.com/skbkontur/retail-ui/commit/cd3ecdf7d8c2bc3b7a1ce583efc786773db606d4))
1217
+ * **LocaleContext:** allow usage with any component ([cb074f6](https://github.com/skbkontur/retail-ui/commit/cb074f6231748b9a54d382c78561a00fb0c16a68))
1218
+ * **LocaleProvider:** remove component ([906b485](https://github.com/skbkontur/retail-ui/commit/906b48532150409b96643460d02265315caeb84b))
1219
+ * **Logotype:** remove component ([9455ffa](https://github.com/skbkontur/retail-ui/commit/9455ffad8d528ec312c0879622ec2c2e8032880a))
1220
+ * **MenuItem:** remove alkoLink prop ([a69ae24](https://github.com/skbkontur/retail-ui/commit/a69ae24c215ac17c1e3dd914b8c623f86553258c))
1221
+ * **react-ui:** new arrow icons ([#2331](https://github.com/skbkontur/retail-ui/issues/2331)) ([cf9e76f](https://github.com/skbkontur/retail-ui/commit/cf9e76ff124f4286d4b1bffe242807537c10d578))
1222
+ * **react-ui:** rename themes ([#2391](https://github.com/skbkontur/retail-ui/issues/2391)) ([ed2bd19](https://github.com/skbkontur/retail-ui/commit/ed2bd1959b488a97aa9d3ab96cbf40c504ca0a8a))
1223
+ * **react-ui:** turn on 8px theme by default ([b2e0087](https://github.com/skbkontur/retail-ui/commit/b2e00876762bf7ec4d40a3424110aee713ef33d6))
1224
+ * **Select, Dropdown:** remove diadocLinkIcon prop ([0374bad](https://github.com/skbkontur/retail-ui/commit/0374badf35daabae1984167a2a41751af2c18524))
1225
+ * **Spinner, Loader:** remove cloud prop ([923a57c](https://github.com/skbkontur/retail-ui/commit/923a57c9aac9aa1dff1775dca29f6dc548c5d358))
1226
+ * **SpinnerOld:** remove component ([8c76fac](https://github.com/skbkontur/retail-ui/commit/8c76fac129e503eb9e0a49f5f09e3adb90dec8a1))
1227
+ * **ThemeConsumer:** remove component ([9c01ab9](https://github.com/skbkontur/retail-ui/commit/9c01ab9e0e117fdaac03b12d49adc03db05ddba7))
1228
+ * **ThemeProvider:** remove component ([c932bb7](https://github.com/skbkontur/retail-ui/commit/c932bb75f5b2ba14238aa363e2f7756bae38adda))
1229
+ * **Toggle:** deprecate 'color' prop ([f7b9b22](https://github.com/skbkontur/retail-ui/commit/f7b9b22d154b5cdf9225a62815f94a05cc9dec77))
1230
+ * **Toggle:** implement error and warning states via shadows ([c67f8a5](https://github.com/skbkontur/retail-ui/commit/c67f8a5b81b1d5a11f0637e49ee565485effe4aa))
1231
+ * **Tooltip,Hint:** set useWrapper prop to false by default ([74bdb29](https://github.com/skbkontur/retail-ui/commit/74bdb299c19744f2c46052c3ed98b438bf1a221d))
1232
+ * **TopBar:** remove component ([5a67478](https://github.com/skbkontur/retail-ui/commit/5a67478751145fcd2445e283762ab48b729ddc23))
1233
+
1234
+
1235
+ ### Reverts
1236
+
1237
+ * Revert "test(Button): change size of screenshot" ([25887e6](https://github.com/skbkontur/retail-ui/commit/25887e688fb7c1a4d203baaf020c78e56d24486b))
1238
+
1239
+
1240
+ ### BREAKING CHANGES
1241
+
1242
+ * **react-ui:** default text color has been changed to #333333
1243
+ * **react-ui:** themes have been renamed (see migration.md)
1244
+ * **react-ui:** default theme has changed
1245
+ * Color of focus border and background of active menu items changed from `#5199db` to `#1D85D0`
1246
+ * **Tooltip,Hint:** It may affect position of Tooltips and Hints over your element due default wrapper removal. Also default offsets were changed.
1247
+ * **ThemeProvider:** component `ThemeProvider` was removed please use `ThemeContext` instead. See [ThemeContext](https://tech.skbkontur.ru/react-ui/#/Customization/ThemeContext).
1248
+ * **ThemeConsumer:** component `ThemeConsumer` was deprecated and removed please use `ThemeContext` instead
1249
+ * **Select, Dropdown:** Prop `diadocLinkIcon` was deprecated use prop `_renderButton` instead
1250
+ * **MenuItem:** Prop `alkoLink` was deprecated please use `link` instead
1251
+ * **LocaleProvider:** Component `LocaleProvider` has been removed, please use `LocaleContext` instead
1252
+ * **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).
1253
+ * **SpinnerOld:** Component `SpinnerOld` has been removed, please use component from @skbkontur/react-ui-addons
1254
+ * **Logotype:** Component `Logotype` has been removed, please use component from @skbkontur/react-ui-addons
1255
+ * **Fias:** Component `Fias` has been removed, please use component from @skbkontur/react-ui-addons
1256
+ * **TopBar:** Component `TopBar` has been removed, please use component from `@skbkontur/react-ui-addons`
1257
+
1258
+
1259
+
1260
+
1261
+
1262
+ # [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)
1263
+
1264
+
1265
+ ### Features
1266
+
1267
+ * support React 17 ([#2360](https://github.com/skbkontur/retail-ui/issues/2360)) ([066ff68](https://github.com/skbkontur/retail-ui/commit/066ff681477d415177a6312c218e49ed5baa4c44))
1268
+ * **DropdownMenu:** add prop width ([b49e8c0](https://github.com/skbkontur/retail-ui/commit/b49e8c0d05d085ac7e175899ec064d5cc7192507))
1269
+
1270
+
1271
+
1272
+
1273
+
1274
+ ## [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)
1275
+
1276
+
1277
+ ### Bug Fixes
1278
+
1279
+ * **Hint:** clear opening timer ([0a03c36](https://github.com/skbkontur/retail-ui/commit/0a03c36eef19dbaff51a774cee066a3255db5d3d))
1280
+ * **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)
1281
+
1282
+
1283
+
1284
+
1285
+
1286
+ ## [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)
1287
+
1288
+
1289
+ ### Bug Fixes
1290
+
1291
+ * **SidePage:** fix sidepage counting for adding margins and shadows ([bb24bf6](https://github.com/skbkontur/retail-ui/commit/bb24bf6f08d953ba0cd935bbf17f88c125fcef8a))
1292
+
1293
+
1294
+
1295
+
1296
+
1297
+ # [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)
1298
+
1299
+
1300
+ ### Bug Fixes
1301
+
1302
+ * **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)
1303
+ * **Toast:** increase z-index to always render on top of everything ([23d5178](https://github.com/skbkontur/retail-ui/commit/23d5178b96013768df751a2936bb1d81046747c1))
1304
+
1305
+
1306
+ ### Features
1307
+
1308
+ * **ComboBox:** support "inputMode" prop ([259ea32](https://github.com/skbkontur/retail-ui/commit/259ea32c2e3107d6f81bbd0da57969a1a49ca307))
1309
+ * **react-ui:** complete 8px theme ([#2322](https://github.com/skbkontur/retail-ui/issues/2322)) ([f6ac143](https://github.com/skbkontur/retail-ui/commit/f6ac1431c49191b6b151eace72b81eba0f23a6ff))
1310
+ * **TokenInput:** support "inputMode" prop ([452eb0c](https://github.com/skbkontur/retail-ui/commit/452eb0c995e80858467e235c480d04f54e685320))
1311
+
1312
+
1313
+
1314
+
1315
+
1316
+ # [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)
1317
+
1318
+
1319
+ ### Bug Fixes
1320
+
1321
+ * **Autocomplete:** use prop `active` from `RenderLayer` ([031940a](https://github.com/skbkontur/retail-ui/commit/031940ad30cbe84547741313017bfe04de52cfc3))
1322
+ * **Checkbox:** fix indeterminate state in IE11/Edge ([ff62f26](https://github.com/skbkontur/retail-ui/commit/ff62f2655e45ce20e1b151cdb08e570ab5d3c40d))
1323
+
1324
+
1325
+ ### Features
1326
+
1327
+ * **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)
1328
+
1329
+
1330
+
1331
+
1332
+
1333
+ ## [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)
1334
+
1335
+
1336
+ ### Bug Fixes
1337
+
1338
+ * **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)
1339
+
1340
+
1341
+
1342
+
1343
+
1344
+ # [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)
1345
+
1346
+
1347
+ ### Bug Fixes
1348
+
1349
+ * **Sticky:** avoid margins collapsing ([a39f3fc](https://github.com/skbkontur/retail-ui/commit/a39f3fcd24e2ffb2f163d86c6dbda4320f681f79))
1350
+ * **TokenInput:** don't call onBlur until focus is really lost ([7a6c856](https://github.com/skbkontur/retail-ui/commit/7a6c8563dd991d63511fe06561ee61a62d804c5e))
1351
+
1352
+
1353
+ ### Features
1354
+
1355
+ * **Loader:** add component prop ([40ea9b2](https://github.com/skbkontur/retail-ui/commit/40ea9b2b6e050927e503763e7ec33436dfa704df))
1356
+ * forward common props (className, style, data-*) ([#2257](https://github.com/skbkontur/retail-ui/issues/2257)) ([626ac07](https://github.com/skbkontur/retail-ui/commit/626ac07178e4d2139b03e6a6cb3e04a8e69475de))
1357
+ * **TokenInput:** onUnexpectedInput prop added ([cba1d76](https://github.com/skbkontur/retail-ui/commit/cba1d769a37620b25061b1e60541b67cf4fbb701))
1358
+
1359
+
1360
+
1361
+
1362
+
1363
+ # [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)
1364
+
1365
+
1366
+ ### Bug Fixes
1367
+
1368
+ * **Select:** fix typo in placeholder ([#2275](https://github.com/skbkontur/retail-ui/issues/2275)) ([bf1beb8](https://github.com/skbkontur/retail-ui/commit/bf1beb8288dd0376f43edf487c96267ef19e723a))
1369
+ * **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)
1370
+ * **Textarea:** fix line breaks inside Gapped in IE; add story ([2cec37c](https://github.com/skbkontur/retail-ui/commit/2cec37cccb9c0b3c02e0436d28cbd4d361f07e6d))
1371
+
1372
+
1373
+ ### Features
1374
+
1375
+ * **Link:** new loading state ([#2271](https://github.com/skbkontur/retail-ui/issues/2271)) ([f494fd8](https://github.com/skbkontur/retail-ui/commit/f494fd844b50eeed0cbf60a1da27e213976c143f))
1376
+
1377
+
1378
+
1379
+
1380
+
1381
+ ## [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)
1382
+
1383
+
1384
+ ### Bug Fixes
1385
+
1386
+ * **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))
1387
+
1388
+
1389
+
1390
+
1391
+
1392
+ # [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)
1393
+
1394
+
1395
+ ### Features
1396
+
1397
+ * ssr support ([#2103](https://github.com/skbkontur/retail-ui/issues/2103)) ([506a7f6](https://github.com/skbkontur/retail-ui/commit/506a7f63337cc4ca2567581495959b1656fedd18))
1398
+
1399
+
1400
+
1401
+
1402
+
1403
+ # [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)
1404
+
1405
+
1406
+ ### Bug Fixes
1407
+
1408
+ * **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)
1409
+ * **Modal.Header:** fix right padding with noClose ([50115db](https://github.com/skbkontur/retail-ui/commit/50115db98f4bf2ca70398b20504ce7ef04d71510))
1410
+ * **RadioGroup:** fix gaps between radios for 8px theme ([ef95117](https://github.com/skbkontur/retail-ui/commit/ef9511755a8869d75c52633148f5ef8d90ddad2b))
1411
+ * **ScrollContainer:** properly handle scroll's state change ([e61d825](https://github.com/skbkontur/retail-ui/commit/e61d825dcac36460fa56a7cb33907c277f32b78f))
1412
+
1413
+
1414
+ ### Features
1415
+
1416
+ * **Textarea:** add chars counter ([5580592](https://github.com/skbkontur/retail-ui/commit/558059275c6a563b5f9348570b7193b400ec3c00)), closes [#2208](https://github.com/skbkontur/retail-ui/issues/2208)
1417
+
1418
+
1419
+
1420
+
1421
+
1422
+ # [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)
1423
+
1424
+
1425
+ ### Bug Fixes
1426
+
1427
+ * **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)
1428
+ * **Input:** fix disabled color in Safari ([5b35688](https://github.com/skbkontur/retail-ui/commit/5b356880aea96fbe716eaf3cb8d0cedf72f51542))
1429
+ * **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)
1430
+ * **Modal:** fix cross's box-sizing ([e734022](https://github.com/skbkontur/retail-ui/commit/e7340220f6bfabaed5c5b74fd094767a47c8c4e0))
1431
+ * **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)
1432
+ * **Textarea:** correct onCut and onPaste handlers ([ee04b65](https://github.com/skbkontur/retail-ui/commit/ee04b65f6b0421df06f08014de6a226c428cb49c))
1433
+
1434
+
1435
+ ### Features
1436
+
1437
+ * **ComboBox:** add leftIcon prop ([d7a4904](https://github.com/skbkontur/retail-ui/commit/d7a49047717a2a5acefdc2136e3edccc0a56a703))
1438
+ * **TopBarItem:** accept ReactElement as icon ([4fa4609](https://github.com/skbkontur/retail-ui/commit/4fa460994a0e1043cddfbb1f485cb761b801f3e2))
1439
+
1440
+
1441
+
1442
+
1443
+
1444
+ # [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)
1445
+
1446
+
1447
+ ### Features
1448
+
1449
+ * **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)
1450
+
1451
+
1452
+
1453
+
1454
+
1455
+ # [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)
1456
+
1457
+
1458
+ ### Bug Fixes
1459
+
1460
+ * **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)
1461
+ * **ModalStack:** add fallback for `fbemitter` from old versions ([c1ece9c](https://github.com/skbkontur/retail-ui/commit/c1ece9ce279a113c82fa325a3001d0067db18436))
1462
+ * **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)
1463
+ * **ScrollContainer:** fix scroll state calculation ([4eb0142](https://github.com/skbkontur/retail-ui/commit/4eb0142844ca9145da1aae4c5a9a1b3cd5045310)), closes [#2190](https://github.com/skbkontur/retail-ui/issues/2190)
1464
+ * **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)
1465
+ * **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)
1466
+ * **TokenInput:** refresh items after paste from clipboard ([fcf09c6](https://github.com/skbkontur/retail-ui/commit/fcf09c6000da720a3f585b288edc8157a92d8de7))
1467
+ * **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)
1468
+
1469
+
1470
+ ### Features
1471
+
1472
+ * **DateInput:** add prop `autoFocus` ([2960ab9](https://github.com/skbkontur/retail-ui/commit/2960ab9af4fc2519e15caf5782418999efcb9270))
1473
+
1474
+
1475
+
1476
+
1477
+
1478
+ # [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)
1479
+
1480
+
1481
+ ### Bug Fixes
1482
+
1483
+ * **Autocomplete:** support relative width ([#2104](https://github.com/skbkontur/retail-ui/issues/2104)) ([3bd9a13](https://github.com/skbkontur/retail-ui/commit/3bd9a13b2309b9051054c419500786d98196e6c9))
1484
+ * **ComboBox:** support () => null in renderNotFound ([bb7a01a](https://github.com/skbkontur/retail-ui/commit/bb7a01ae96436baca900651378545adb6138a4c1))
1485
+ * **modal:** fix crossicon into svg ([996dc90](https://github.com/skbkontur/retail-ui/commit/996dc90a15d45d13ff7d98129a863579a05ec915))
1486
+ * **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)
1487
+ * **modalclose:** up in Zindex, now upper than ModalHeader ([de8d81c](https://github.com/skbkontur/retail-ui/commit/de8d81cc343d31a4a6c49b6cc065086f817a216b))
1488
+
1489
+
1490
+ ### Features
1491
+
1492
+ * **modalbody:** add prop noPadding ([7163909](https://github.com/skbkontur/retail-ui/commit/71639091d9fa2e96fe4bd803245fd22a09045e8d))
1493
+
1494
+
1495
+
1496
+
1497
+
1498
+
1499
+ # [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)
1500
+
1501
+
1502
+ ### Bug Fixes
1503
+
1504
+ * **customization:** replace textareaHeight with textareaMinHeight ([42e3d4f](https://github.com/skbkontur/retail-ui/commit/42e3d4f04956235572c967f1891615bf409b5ed8))
1505
+ * **DatePicker:** return TodayLink's border ([9206bee](https://github.com/skbkontur/retail-ui/commit/9206bee72389bfa00885c8ab5d0d7431e11e0d1a))
1506
+ * **Textarea:** fix background color regress ([#2170](https://github.com/skbkontur/retail-ui/issues/2170)) ([d206ff2](https://github.com/skbkontur/retail-ui/commit/d206ff2bbfb174e7799241fabcac9123a607950b))
1507
+ * **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)
1508
+
1509
+
1510
+ ### Features
1511
+
1512
+ * **Toggle:** add use 'children' ([33e725c](https://github.com/skbkontur/retail-ui/commit/33e725c69373cd44dc7a2ec6fd2d4c1855b456fb)), closes [#1723](https://github.com/skbkontur/retail-ui/issues/1723)
1513
+ * **Tooltip:** add manual control ([ad0d0a2](https://github.com/skbkontur/retail-ui/commit/ad0d0a29da1f13628cc54c92b36b38dfb45156a6)), closes [#914](https://github.com/skbkontur/retail-ui/issues/914)
1514
+
1515
+
1516
+
1517
+
1518
+
1519
+
1520
+ # [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)
1521
+
1522
+
1523
+ ### Bug Fixes
1524
+
1525
+ * **Button:** checked + disabled кнопка сдвигает текст на 1 px ([da2e822](https://github.com/skbkontur/retail-ui/commit/da2e822df3d12c2afb743e941120bc52f910efe5))
1526
+ * **spinner:** fix spinner fallback mini ([9a766e3](https://github.com/skbkontur/retail-ui/commit/9a766e3b9110dfa19babf3446555f5d8da68b182))
1527
+ * **Tab:** return operability with links from react-router-dom ([8da96a9](https://github.com/skbkontur/retail-ui/commit/8da96a97511459f8164862a1dc61d4a591fff466))
1528
+
1529
+
1530
+ ### Features
1531
+
1532
+ * **Switcher:** Добавляет disabled состояние ([d5b13a8](https://github.com/skbkontur/retail-ui/commit/d5b13a8d0c345fc5bba97f6b407b9b2df0f78d2c))
1533
+
1534
+
1535
+
1536
+
1537
+
1538
+ ## [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)
1539
+
1540
+
1541
+ ### Bug Fixes
1542
+
1543
+ * **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)
1544
+ * **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)
1545
+ * **PasswordInput:** change eye icon ([e36c1ba](https://github.com/skbkontur/retail-ui/commit/e36c1baa647993450e9f88e7e48f2f6f24066745)), closes [#2111](https://github.com/skbkontur/retail-ui/issues/2111)
1546
+ * **Popup:** prevent wrong styles order ([08c7c4c](https://github.com/skbkontur/retail-ui/commit/08c7c4ce45238f72357b1ab2210dccda337f5f45)), closes [#2005](https://github.com/skbkontur/retail-ui/issues/2005)
1547
+ * **Select.styles:** fix span width with left icon ([e2dceec](https://github.com/skbkontur/retail-ui/commit/e2dceec963c9c2b038abc13e8012666635b18098))
1548
+ * **theme:** add var 'tokenInputTextColor' ([cbad454](https://github.com/skbkontur/retail-ui/commit/cbad454a701f31fb97f33da423c0317e8340f429)), closes [#2099](https://github.com/skbkontur/retail-ui/issues/2099)
1549
+
1550
+
1551
+
1552
+
1553
+
1554
+ ## [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)
1555
+
1556
+
1557
+ ### Bug Fixes
1558
+
1559
+ * **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)
1560
+ * **Loader:** обновление позиции лоадера при переключении active на true ([acb5bbe](https://github.com/skbkontur/retail-ui/commit/acb5bbe31a9d2d1132d88862a6be94bb8ef227c1)), closes [#2092](https://github.com/skbkontur/retail-ui/issues/2092)
1561
+ * **MenuItem:** pass state into custom component ([073f1fa](https://github.com/skbkontur/retail-ui/commit/073f1fa6e542e06cc4f830e418118ace8cb4648f))
1562
+
1563
+
1564
+
1565
+
1566
+
1567
+ ## [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)
1568
+
1569
+
1570
+ ### Bug Fixes
1571
+
1572
+ * **Input:** fix disabled bg color for 8px theme ([a4c8b28](https://github.com/skbkontur/retail-ui/commit/a4c8b286ebbf732a8c919527243beb76674647db))
1573
+ * **react-ui:** fix controlHeight vars for non-8px themes ([db08994](https://github.com/skbkontur/retail-ui/commit/db089943e6e342551bcc1e4ae3b1a31e10e99a1c))
1574
+ * **Switcher:** add button vars ([2b932df](https://github.com/skbkontur/retail-ui/commit/2b932df248da61bee182af96c208ec6626338cdb))
1575
+ * **Switcher:** add variables for label ([fe0f8d1](https://github.com/skbkontur/retail-ui/commit/fe0f8d16c76f4cc636c9729ba71c66021e885291))
1576
+ * **Switcher:** adjust button's paddings for 8px theme ([3d4ad29](https://github.com/skbkontur/retail-ui/commit/3d4ad29975cc0aa11c1a057e438f956513fceee7))
1577
+ * **Tab:** fix Indicator position for 8px theme ([19b5b7f](https://github.com/skbkontur/retail-ui/commit/19b5b7fc71b02f3030ac4aac9e251f418a611955))
1578
+ * **Tab:** use large size values in 8px theme ([a2a1f0d](https://github.com/skbkontur/retail-ui/commit/a2a1f0d28195c0bbd1f2cde585c99f66a26935ab))
1579
+ * **TokenInput:** fix styles issue ([5ce5578](https://github.com/skbkontur/retail-ui/commit/5ce55783b10ae676afe47ccfea5f0d952f1c7981)), closes [#1952](https://github.com/skbkontur/retail-ui/issues/1952)
1580
+ * **TokenInput:** use font-size and line-height vars; align tokens ([8a9dc0b](https://github.com/skbkontur/retail-ui/commit/8a9dc0b9bdd3d2fc42279035935f34a11f404bb6))
1581
+
1582
+
1583
+
1584
+
1585
+
1586
+ # [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)
1587
+
1588
+
1589
+ ### Bug Fixes
1590
+
1591
+ * **ThemeEditor:** restore scroll to variable by link click ([0454ae6](https://github.com/skbkontur/retail-ui/commit/0454ae6d2b92cd61935fc2ded857b79aef86e9bc))
1592
+ * **ThemeFactory:** don't ignore computed properties in factory methods ([9eb6cd8](https://github.com/skbkontur/retail-ui/commit/9eb6cd844a38ed182d35dde58bb443abcb1ffd23))
1593
+ * **ThemePlayground:** fix ThemeEditor's styles ([0ab8225](https://github.com/skbkontur/retail-ui/commit/0ab82253bfa26f65a4998a51cbf0742a1d0f90a5))
1594
+
1595
+
1596
+ ### Features
1597
+
1598
+ * **react-ui:** add 8px theme ([652f193](https://github.com/skbkontur/retail-ui/commit/652f193c244fcf6bc82afe324c46ccec1f63bff1))
1599
+ * **ThemePlayground:** add 8px toggle ([7cd6681](https://github.com/skbkontur/retail-ui/commit/7cd668178b5a65bd5564e86254bf8c4f5faf8839))
1600
+
1601
+
1602
+
1603
+
1604
+
1605
+ ## [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)
1606
+
1607
+
1608
+ ### Bug Fixes
1609
+
1610
+ * **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)
1611
+ * **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)
1612
+
1613
+
1614
+
1615
+
1616
+
1617
+ ## [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)
1618
+
1619
+
1620
+ ### Bug Fixes
1621
+
1622
+ * **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)
1623
+ * **Gapped:** fix left margin for single child ([7bf690a](https://github.com/skbkontur/retail-ui/commit/7bf690afabfff99095e2b1d183c9744e886d7917))
1624
+ * **react-ui:** use NODE_ENV=test for animations disabling ([d1fda47](https://github.com/skbkontur/retail-ui/commit/d1fda4755e3b38248aa51d9e06a4a068c13b770e))
1625
+
1626
+
1627
+
1628
+
1629
+
1630
+ # [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)
1631
+
1632
+
1633
+ ### Bug Fixes
1634
+
1635
+ * **[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)
1636
+ * **Checkbox:** change variable theme `chbCheckedActiveBg` ([7fd2464](https://github.com/skbkontur/retail-ui/commit/7fd2464d4f63bc2ef0bea7561146ab7907e0255e)), closes [#1935](https://github.com/skbkontur/retail-ui/issues/1935)
1637
+ * **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)
1638
+ * **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)
1639
+ * **react-ui:** fix tree-shaking that isn't working ([9545add](https://github.com/skbkontur/retail-ui/commit/9545add7748119fcb252e45188ebab953c47bf8e))
1640
+ * **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)
1641
+ * **tooltip:** fix active props to RenderLayer ([347004e](https://github.com/skbkontur/retail-ui/commit/347004eb52ef52cd637379062ea8ca6c0cab7849))
1642
+ * **tooltip:** only hover&focus ([b61fb3b](https://github.com/skbkontur/retail-ui/commit/b61fb3bbadb2dca467ac42d5aef773f1f293a4ff))
1643
+
1644
+
1645
+ ### Features
1646
+
1647
+ * **Checkbox:** add variable theme `chbCheckedActiveShadow` ([183d198](https://github.com/skbkontur/retail-ui/commit/183d198bfc4885eb0fbcd7dcda34f6245f22d2f7))
1648
+ * **Link:** fill rel attr with 'noopener noreferrer' ([8f3b79b](https://github.com/skbkontur/retail-ui/commit/8f3b79b82e3a0c5f63761f7f25b02914735808ac))
1649
+
1650
+
1651
+
1652
+
1653
+
1654
+ # [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)
1655
+
1656
+
1657
+ ### Bug Fixes
1658
+
1659
+ * **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)
1660
+ * **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)
1661
+ * **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)
1662
+ * **Select:** set width to 100% ([b924d00](https://github.com/skbkontur/retail-ui/commit/b924d00aa6d01ffbe528f2223ffa2f4c7128ae3d)), closes [#1994](https://github.com/skbkontur/retail-ui/issues/1994)
1663
+ * **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)
1664
+ * **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)
1665
+ * **TopBar:** fix noShadow prop ([4ba47af](https://github.com/skbkontur/retail-ui/commit/4ba47af14eb2baf05383bf9270ae99a6195e0e4f)), closes [#1997](https://github.com/skbkontur/retail-ui/issues/1997)
1666
+
1667
+
1668
+ ### Features
1669
+
1670
+ * **TokenInput:** new parameter 'onAddItem' in 'renderAddButton' prop ([6bcfcc6](https://github.com/skbkontur/retail-ui/commit/6bcfcc6a1a2c32592d361b657b0888402219681e))
1671
+
1672
+
1673
+
1674
+
1675
+
1676
+ ## [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)
1677
+
1678
+
1679
+ ### Bug Fixes
1680
+
1681
+ * **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)
1682
+ * **Toggle:** add custom boxShadow for toggle ([1922285](https://github.com/skbkontur/retail-ui/commit/1922285bd65cca03b79047f8b09f484ec433bba2))
1683
+
1684
+
1685
+
1686
+
1687
+
1688
+ # [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)
1689
+
1690
+
1691
+ ### Bug Fixes
1692
+
1693
+ * **logotype:** paddings, icon with figma ([6a84800](https://github.com/skbkontur/retail-ui/commit/6a848008b7f431b7294786f5e36155be5b433565))
1694
+ * **textarea:** fix react warning ([647f9f4](https://github.com/skbkontur/retail-ui/commit/647f9f4ca0fa7484d974a4ea7a11a0b49d087bd0))
1695
+
1696
+
1697
+ ### Features
1698
+
1699
+ * **Modal:** add 'disableFocusLock' prop ([c046c38](https://github.com/skbkontur/retail-ui/commit/c046c386d1439044ba7ee869e9ce57b203841b90))
1700
+ * **ThemeFactory:** accept a base theme as a second arg of create method ([b92b20b](https://github.com/skbkontur/retail-ui/commit/b92b20bcac53face9280dd5951e0cb467b34d4a4))
1701
+ * **TokenInput:** new prop 'renderAddButton' ([06a2010](https://github.com/skbkontur/retail-ui/commit/06a201064db9f929aa8b7ff8e35f291457f328c8))
1702
+ * **TokenInput:** new prop "onInputValueChange" ([b621c8d](https://github.com/skbkontur/retail-ui/commit/b621c8d8eadbdbb88a7d6fcfd88522fc5ed879a4))
1703
+ * **TokenInput:** new public api method 'reset' ([14df810](https://github.com/skbkontur/retail-ui/commit/14df810b1b53896c62c18d16dc0a1d1aef94ee2f))
1704
+
1705
+
1706
+
1707
+
1708
+
1709
+ # 2.0.0 (2020-03-24)
1710
+
1711
+
1712
+ ### Bug Fixes
1713
+
1714
+ * button/checkbox theme styles actualize ([10ddc66](https://github.com/skbkontur/retail-ui/commit/10ddc668e84bc997a0a332dedace75982d5ba9bf))
1715
+ * **checkbox:** sync styles between defalt and flat themes ([e0dcc7b](https://github.com/skbkontur/retail-ui/commit/e0dcc7bc02c281df74e0b7bf841d66065156ea14))
1716
+ * **fias:** warning throw exeption ([bb5aa2c](https://github.com/skbkontur/retail-ui/commit/bb5aa2cce8ae33f42fa9fc80b5708b9b5be211df))
1717
+ * **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)
1718
+
1719
+
1720
+ ### Code Refactoring
1721
+
1722
+ * **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)
1723
+ * **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)
1724
+ * **Tab:** use latest Context API instead of HOC ([10e6c32](https://github.com/skbkontur/retail-ui/commit/10e6c3213d039bc18251af0b38e20a263b00019b))
1725
+ * **TopBar:** rename inner classes ([ff974b4](https://github.com/skbkontur/retail-ui/commit/ff974b46879d8f8e27a0e3679699db4863eaecc3)), closes [#1883](https://github.com/skbkontur/retail-ui/issues/1883)
1726
+
1727
+
1728
+ ### Features
1729
+
1730
+ * move all theme variables inside js, remove less support ([e219505](https://github.com/skbkontur/retail-ui/commit/e2195058c70424dc7e097cc8d174afbb05a9fd7d))
1731
+ * **localecontext:** add to export ([ad7bb41](https://github.com/skbkontur/retail-ui/commit/ad7bb41316378fe37af8cc6ad9efe15537804f7a))
1732
+ * **ThemeContext:** add to export ([bdeb112](https://github.com/skbkontur/retail-ui/commit/bdeb1123e6eb393b56c27c50ddff2f6721d54850))
1733
+
1734
+
1735
+ ### Performance Improvements
1736
+
1737
+ * **Button:** memoize css-in-js styles ([a7934d0](https://github.com/skbkontur/retail-ui/commit/a7934d0a00fe68a1d8fea55737669394730f6fe2))
1738
+ * **calendar:** memoize css-in-js styles ([7865514](https://github.com/skbkontur/retail-ui/commit/7865514f6849088aa4665ff85bfec4825d932147))
1739
+ * **center:** memoize css-in-js styles ([275593a](https://github.com/skbkontur/retail-ui/commit/275593ab15eaa84b75412163956b45c7203a91ce))
1740
+ * **checkbox:** memoize css-in-js styles ([d808cd0](https://github.com/skbkontur/retail-ui/commit/d808cd02dae9ba9a46efb01033b203f33b3259c8))
1741
+ * **customcombobox:** memoize css-in-js styles ([984d565](https://github.com/skbkontur/retail-ui/commit/984d565adb51588f1d8ff0fbd50197a51064f169))
1742
+ * **DateFragmentsView:** memoize css-in-js styles ([49c8897](https://github.com/skbkontur/retail-ui/commit/49c8897437b79987f2b0c78b8f4ec331d74c7fb9))
1743
+ * **datepicker:** memoize css-in-js styles ([364d49e](https://github.com/skbkontur/retail-ui/commit/364d49eb8a836423ab1e4df5c69af14deb0c1187))
1744
+ * **dateselect:** memoize css-in-js styles ([7d4c1ac](https://github.com/skbkontur/retail-ui/commit/7d4c1ac3587568a6ffd5b1e32b55eb7b8db8f4c5))
1745
+ * **Fias:** memoize css-in-js styles ([02a3d4e](https://github.com/skbkontur/retail-ui/commit/02a3d4e6639fffee9302ef6791e6d3185bd18037))
1746
+ * **group:** memoize css-in-js styles ([b68f50b](https://github.com/skbkontur/retail-ui/commit/b68f50bdfa427abea6b1860dbcf4753670a02c83))
1747
+ * **hint:** memoize css-in-js styles ([c3117bb](https://github.com/skbkontur/retail-ui/commit/c3117bb1ec60ee350c28d74a957c37e8cbdafe06))
1748
+ * **icon16px:** memoize css-in-js styles ([a2e5ae5](https://github.com/skbkontur/retail-ui/commit/a2e5ae5072769c4805cf4b3ced90b9eccd047079))
1749
+ * **icon20px:** memoize css-in-js styles ([83fa890](https://github.com/skbkontur/retail-ui/commit/83fa8909ada6927bcb4dc26c65d9b9d1fbc1a143))
1750
+ * **Input:** memoize css-in-js styles ([05c8344](https://github.com/skbkontur/retail-ui/commit/05c8344489f6929b1246c08c498b49304229080a))
1751
+ * **InputLikeText:** memoize css-in-js styles ([fb5527d](https://github.com/skbkontur/retail-ui/commit/fb5527dacf63545004387d4d8f194cd2efc60485))
1752
+ * **internalmenu:** memoize css-in-js styles ([5ca5d8f](https://github.com/skbkontur/retail-ui/commit/5ca5d8f5693da7bbfd2f2b53b96eb50e0cdb25f2))
1753
+ * **kebab:** memoize css-in-js styles ([c95a77a](https://github.com/skbkontur/retail-ui/commit/c95a77a5a1b2ac172d54b9c67e93bb32fb96ed66))
1754
+ * **link:** memoize css-in-js styles ([e204263](https://github.com/skbkontur/retail-ui/commit/e2042636ac17b988c098a8ca7f0a26fdd99d7506))
1755
+ * **loader:** memoize css-in-js styles ([0fcab14](https://github.com/skbkontur/retail-ui/commit/0fcab14f19dcfa87aff058e1470efe1c69bc5559))
1756
+ * **logotype:** memoize css-in-js styles ([16449a1](https://github.com/skbkontur/retail-ui/commit/16449a154cd090ad367caeffb49df23dc50a6b88))
1757
+ * **MaskedInput:** memoize css-in-js styles ([7cd3695](https://github.com/skbkontur/retail-ui/commit/7cd3695162faa7b5d2ebdf5f7b40c6586aeeaf60))
1758
+ * **menu:** memoize css-in-js styles ([ad46309](https://github.com/skbkontur/retail-ui/commit/ad46309ccf6e47946be7f087402d289d6c1a1274))
1759
+ * **menuheader:** memoize css-in-js styles ([eff22b1](https://github.com/skbkontur/retail-ui/commit/eff22b16114d5e030ec258c29a6032f9ba9604bd))
1760
+ * **menuitem:** memoize css-in-js styles ([02a2275](https://github.com/skbkontur/retail-ui/commit/02a227505fc55b6b16c9429ae70d29b8407d8739))
1761
+ * **menuseparator:** memoize css-in-js styles ([e9ac810](https://github.com/skbkontur/retail-ui/commit/e9ac8102b814aa3377dec2c011d66f1e2aa43882))
1762
+ * **modal:** memoize css-in-js styles ([f51e7bf](https://github.com/skbkontur/retail-ui/commit/f51e7bf87d5b66b0c5038b893369beb6b0b7dc41))
1763
+ * **paging:** memoize css-in-js styles ([56f247c](https://github.com/skbkontur/retail-ui/commit/56f247c5f367f3576f1443b8647516a1af873f37))
1764
+ * **PasswordInput:** memoize css-in-js styles ([f09a61e](https://github.com/skbkontur/retail-ui/commit/f09a61e0c7e23452425ce7abb89dc698aded8946))
1765
+ * **popup:** memoize css-in-js styles ([da09c09](https://github.com/skbkontur/retail-ui/commit/da09c098264afe2780b927cd8811a9fba9835703))
1766
+ * **radio:** memoize css-in-js styles ([ca776fa](https://github.com/skbkontur/retail-ui/commit/ca776fa9bc1a42fd501d87a17a90e21170f0b8d8))
1767
+ * **radiogroup:** memoize css-in-js styles ([c3dcc1d](https://github.com/skbkontur/retail-ui/commit/c3dcc1dbee94759806636e54bfda31f073862405))
1768
+ * **resizedetector:** memoize css-in-js styles ([1c72573](https://github.com/skbkontur/retail-ui/commit/1c72573622c541d599a7ce9611dd382d26bed595))
1769
+ * **scrollcontainer:** memoize css-in-js styles ([3e0e58f](https://github.com/skbkontur/retail-ui/commit/3e0e58f46df6ca42affaadbedda18f94ad80b237))
1770
+ * **Select:** memoize css-in-js styles ([1424478](https://github.com/skbkontur/retail-ui/commit/142447824bf212d4b44cac09fe5e791ee9d96139))
1771
+ * **sidepage:** memoize css-in-js styles ([4dd2a2a](https://github.com/skbkontur/retail-ui/commit/4dd2a2a269cb1759ba45b1134f32bbbfc488ef9a))
1772
+ * **spinner:** memoize css-in-js styles ([edb1835](https://github.com/skbkontur/retail-ui/commit/edb1835821ceb2e8f103484cf705f443e1d7400f))
1773
+ * **spinnericon:** memoize css-in-js styles ([7802c51](https://github.com/skbkontur/retail-ui/commit/7802c510f212b5eff44aa10ceaddecd5690fea45))
1774
+ * **sticky:** memoize css-in-js styles ([9882179](https://github.com/skbkontur/retail-ui/commit/988217911bcc3ebe39af440d23549eeed10e5d3b))
1775
+ * **switcher:** memoize css-in-js styles ([f93bf4c](https://github.com/skbkontur/retail-ui/commit/f93bf4c5674b530237c792a44ba067750626c7db))
1776
+ * **tabs:** memoize css-in-js styles ([5a7b13a](https://github.com/skbkontur/retail-ui/commit/5a7b13a995122d2d5f203f0baeed026f211b74a8))
1777
+ * **textarea:** memoize css-in-js styles ([b4dec2b](https://github.com/skbkontur/retail-ui/commit/b4dec2be3a080bcf20592013557b4873361a4f34))
1778
+ * **themeplayground:** memoize css-in-js styles ([c522503](https://github.com/skbkontur/retail-ui/commit/c52250362fe6a434e9ccbca8e66b22107741a397))
1779
+ * **themeshowcase:** memoize css-in-js styles ([89bd313](https://github.com/skbkontur/retail-ui/commit/89bd313fe8292d2854d46b1239adbc1325b454ec))
1780
+ * **toast:** memoize css-in-js styles ([20538cf](https://github.com/skbkontur/retail-ui/commit/20538cf272435401f0965904fc3dca37fc479a7f))
1781
+ * **toggle:** memoize css-in-js styles ([af43674](https://github.com/skbkontur/retail-ui/commit/af4367448c4f8c62362de50afb4f130324ca7f03))
1782
+ * **Token:** memoize css-in-js styles ([426a7fb](https://github.com/skbkontur/retail-ui/commit/426a7fb76f0b4fc31ec2c261e84ee32c5fb90608))
1783
+ * **TokenInput:** memoize css-in-js styles ([26f97b5](https://github.com/skbkontur/retail-ui/commit/26f97b5550224b10755020dada2b4bd84d0bee4d))
1784
+ * **tooltip:** memoize css-in-js styles ([84d5966](https://github.com/skbkontur/retail-ui/commit/84d59663e910c649bfe4631ba263f0d7d3916404))
1785
+ * **TopBar:** memoize css-in-js styles ([291e395](https://github.com/skbkontur/retail-ui/commit/291e39515608ab6f76f5970a4551a53b6b8d73dd))
1786
+
1787
+
1788
+ ### BREAKING CHANGES
1789
+
1790
+ * **TopBar:** Item/ButtonItem/Devider/Logout/Organizations/User have been renamed with 'TopBar'-prefix, e.g.: TopBarItem, etc.
1791
+ * **Tab:** use Context API from react@16.6
1792
+ * **SidePage:** use Context API from react@16.6
1793
+ * **Modal:** Header/Footer/Body classes and props inside Modal have been renamed, e.g.: Header
1794
+ -> ModalHeader, HeaderProps -> ModalHeaderProps, etc.
1795
+
1796
+
1797
+
1798
+
1799
+
1800
+ # [1.11.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.10.0...retail-ui@1.11.0) (2020-03-24)
1801
+
1802
+
1803
+ ### Bug Fixes
1804
+
1805
+ * **DatePicker:** fix autoFocus behavior ([f4bbce5](https://github.com/skbkontur/retail-ui/commit/f4bbce5))
1806
+
1807
+
1808
+ ### Features
1809
+
1810
+ * **TokenInput:** new prop 'maxMenuHeight' ([ea1da66](https://github.com/skbkontur/retail-ui/commit/ea1da66))
1811
+
1812
+
1813
+
1814
+
1815
+
1816
+ # [1.10.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.9.0...retail-ui@1.10.0) (2020-03-11)
1817
+
1818
+
1819
+ ### Bug Fixes
1820
+
1821
+ * **Input:** disable user select mask [#1917](https://github.com/skbkontur/retail-ui/issues/1917) ([ef7038f](https://github.com/skbkontur/retail-ui/commit/ef7038f))
1822
+ * **SidePage:** make non-blocking SidePage responsive ([#1904](https://github.com/skbkontur/retail-ui/issues/1904)) ([1c6e71a](https://github.com/skbkontur/retail-ui/commit/1c6e71a))
1823
+ * **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)
1824
+
1825
+
1826
+ ### Features
1827
+
1828
+ * **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)
1829
+
1830
+
1831
+
1832
+
1833
+
1834
+ # [1.9.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.8.1...retail-ui@1.9.0) (2020-02-13)
1835
+
1836
+
1837
+ ### Features
1838
+
1839
+ * **CurrencyInput:** new prop 'hideTrailingZeros' ([#1869](https://github.com/skbkontur/retail-ui/issues/1869)) ([1823370](https://github.com/skbkontur/retail-ui/commit/1823370))
1840
+
1841
+
1842
+
1843
+
1844
+
1845
+ ## [1.8.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.8.0...retail-ui@1.8.1) (2020-02-06)
1846
+
1847
+
1848
+ ### Bug Fixes
1849
+
1850
+ * **Loader:** пофиксил высоту дочерних компонентов по родителю ([25d45e2](https://github.com/skbkontur/retail-ui/commit/25d45e2)), closes [#1855](https://github.com/skbkontur/retail-ui/issues/1855)
1851
+
1852
+
1853
+ ### Reverts
1854
+
1855
+ * inline 'stylis-plugin-extra-scope' ([79f0399](https://github.com/skbkontur/retail-ui/commit/79f0399)), closes [#1873](https://github.com/skbkontur/retail-ui/issues/1873)
1856
+ * 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)
1857
+
1858
+
1859
+
1860
+
1861
+
1862
+ # [1.8.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.7.0...retail-ui@1.8.0) (2020-01-20)
1863
+
1864
+
1865
+ ### Bug Fixes
1866
+
1867
+ * remove jquery downloading ([687ad9d](https://github.com/skbkontur/retail-ui/commit/687ad9d))
1868
+
1869
+
1870
+ ### Features
1871
+
1872
+ * **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)
1873
+ * **Tooltip:** add onOpen prop ([90b89d7](https://github.com/skbkontur/retail-ui/commit/90b89d7)), closes [#1832](https://github.com/skbkontur/retail-ui/issues/1832)
1874
+
1875
+
1876
+
1877
+
1878
+
1879
+ # [1.7.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.9...retail-ui@1.7.0) (2019-12-27)
1880
+
1881
+
1882
+ ### Bug Fixes
1883
+
1884
+ * **Modal:** don't create stacking context inside Footer ([3b314a8](https://github.com/skbkontur/retail-ui/commit/3b314a8))
1885
+
1886
+
1887
+ ### Features
1888
+
1889
+ * **Gapped:** add `wrap` prop, change default prop values ([2ac9e8b](https://github.com/skbkontur/retail-ui/commit/2ac9e8b))
1890
+
1891
+
1892
+ ### Reverts
1893
+
1894
+ * **Gapped:** don't cover other elements with horizontal layout ([652983d](https://github.com/skbkontur/retail-ui/commit/652983d))
1895
+
1896
+
1897
+
1898
+
1899
+
1900
+ ## [1.6.9](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.8...retail-ui@1.6.9) (2019-12-24)
1901
+
1902
+
1903
+ ### Bug Fixes
1904
+
1905
+ * **Checkbox:** adjust baseline if row is high ([52a71b0](https://github.com/skbkontur/retail-ui/commit/52a71b0))
1906
+ * **ComboBoxOld:** close tooltip on blur ([94a5630](https://github.com/skbkontur/retail-ui/commit/94a5630)), closes [#1669](https://github.com/skbkontur/retail-ui/issues/1669)
1907
+ * **Gapped:** don't cover other elements with horizontal layout ([e622933](https://github.com/skbkontur/retail-ui/commit/e622933))
1908
+ * **Modal:** fix issue with cross ([e599455](https://github.com/skbkontur/retail-ui/commit/e599455)), closes [#180](https://github.com/skbkontur/retail-ui/issues/180)
1909
+
1910
+
1911
+
1912
+
1913
+
1914
+ ## [1.6.8](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.7...retail-ui@1.6.8) (2019-12-16)
1915
+
1916
+
1917
+ ### Bug Fixes
1918
+
1919
+ * **SidePageHeader:** fix maximum update depth ([548b894](https://github.com/skbkontur/retail-ui/commit/548b894))
1920
+
1921
+
1922
+
1923
+
1924
+
1925
+ ## [1.6.7](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.6...retail-ui@1.6.7) (2019-12-10)
1926
+
1927
+
1928
+ ### Bug Fixes
1929
+
1930
+ * **TokenInput:** fix module import ([440d199](https://github.com/skbkontur/retail-ui/commit/440d199))
1931
+
1932
+
1933
+
1934
+
1935
+
1936
+ ## [1.6.6](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.5...retail-ui@1.6.6) (2019-12-02)
1937
+
1938
+
1939
+ ### Bug Fixes
1940
+
1941
+ * **Loader:** correctly work with Sticky ([493cd18](https://github.com/skbkontur/retail-ui/commit/493cd18))
1942
+ * **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))
1943
+ * **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)
1944
+ * **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)
1945
+
1946
+
1947
+
1948
+
1949
+
1950
+ ## [1.6.5](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.4...retail-ui@1.6.5) (2019-11-26)
1951
+
1952
+
1953
+ ### Bug Fixes
1954
+
1955
+ * **Popup:** disable call findDOMNode when location is null ([da7cd1c](https://github.com/skbkontur/retail-ui/commit/da7cd1c))
1956
+
1957
+
1958
+
1959
+
1960
+
1961
+ ## [1.6.4](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.3...retail-ui@1.6.4) (2019-11-25)
1962
+
1963
+
1964
+ ### Bug Fixes
1965
+
1966
+ * **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)
1967
+ * **Popup:** don't render portal container on closed state ([bee3a28](https://github.com/skbkontur/retail-ui/commit/bee3a28))
1968
+
1969
+
1970
+
1971
+
1972
+
1973
+ ## [1.6.3](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.2...retail-ui@1.6.3) (2019-11-18)
1974
+
1975
+
1976
+ ### Bug Fixes
1977
+
1978
+ * **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)
1979
+ * **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)
1980
+ * **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)
1981
+ * **Tooltip:** added clear timeout to unmount method ([37fb81a](https://github.com/skbkontur/retail-ui/commit/37fb81a))
1982
+
1983
+
1984
+
1985
+
1986
+
1987
+ ## [1.6.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.1...retail-ui@1.6.2) (2019-11-06)
1988
+
1989
+
1990
+ ### Bug Fixes
1991
+
1992
+ * **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)
1993
+ * **Toast:** show above Loader ([5b6ccf7](https://github.com/skbkontur/retail-ui/commit/5b6ccf7)), closes [#1706](https://github.com/skbkontur/retail-ui/issues/1706)
1994
+
1995
+
1996
+
1997
+
1998
+
1999
+ ## [1.6.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.6.0...retail-ui@1.6.1) (2019-10-30)
2000
+
2001
+
2002
+ ### Bug Fixes
2003
+
2004
+ * **MonthView:** wrong import colorFunctions ([24eeb1e](https://github.com/skbkontur/retail-ui/commit/24eeb1e))
2005
+
2006
+
2007
+
2008
+
2009
+
2010
+ # [1.6.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.5.0...retail-ui@1.6.0) (2019-10-30)
2011
+
2012
+
2013
+ ### Bug Fixes
2014
+
2015
+ * **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)
2016
+ * **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)
2017
+ * **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)
2018
+ * **MenuItem:** call onMouseEnter/Leave in cloned element ([ff397c9](https://github.com/skbkontur/retail-ui/commit/ff397c9))
2019
+ * **RadioGroup:** pass onBlur into Radio ([20f9dcb](https://github.com/skbkontur/retail-ui/commit/20f9dcb)), closes [#1670](https://github.com/skbkontur/retail-ui/issues/1670)
2020
+ * **Select:** add missing comment type ([bf89513](https://github.com/skbkontur/retail-ui/commit/bf89513))
2021
+ * **Select:** fix color placeholder ([5e35c59](https://github.com/skbkontur/retail-ui/commit/5e35c59))
2022
+ * **Sticky:** infinity render loop in IE ([85180dd](https://github.com/skbkontur/retail-ui/commit/85180dd))
2023
+ * **Sticky:** maximum update depth exceeded ([75fb581](https://github.com/skbkontur/retail-ui/commit/75fb581)), closes [#1485](https://github.com/skbkontur/retail-ui/issues/1485)
2024
+ * **Tooltip:** reset position on close ([4d03a22](https://github.com/skbkontur/retail-ui/commit/4d03a22)), closes [#1673](https://github.com/skbkontur/retail-ui/issues/1673)
2025
+ * **TopBar:** fix noShadow prop ([1af4648](https://github.com/skbkontur/retail-ui/commit/1af4648)), closes [#1672](https://github.com/skbkontur/retail-ui/issues/1672)
2026
+
2027
+
2028
+ ### Features
2029
+
2030
+ * **ColorFunctions:** add fade function ([a10dcb9](https://github.com/skbkontur/retail-ui/commit/a10dcb9))
2031
+ * **DefaultTheme:** add variable 'chbCheckedShadow' ([b2531b3](https://github.com/skbkontur/retail-ui/commit/b2531b3))
2032
+ * **Emotion:** add 'prefixer' for classes ([6043228](https://github.com/skbkontur/retail-ui/commit/6043228))
2033
+ * **FlatTheme:** add variables 'chbCheckedShadow' and 'chbBorderRadius' ([e3424e7](https://github.com/skbkontur/retail-ui/commit/e3424e7))
2034
+ * **FlatTheme:** add vars 'chbShadowHover' and 'chbCheckedHoverShadow' ([62dad9c](https://github.com/skbkontur/retail-ui/commit/62dad9c))
2035
+ * **FocusTrap:** add component FocusTrap ([1baf0c3](https://github.com/skbkontur/retail-ui/commit/1baf0c3))
2036
+ * **Theme:** remove calendarMonthTitleBorderBottom ([3dcfb6f](https://github.com/skbkontur/retail-ui/commit/3dcfb6f))
2037
+ * **ZIndex:** add layers priority ([68ea45b](https://github.com/skbkontur/retail-ui/commit/68ea45b)), closes [#776](https://github.com/skbkontur/retail-ui/issues/776)
2038
+
2039
+
2040
+
2041
+
2042
+
2043
+ # [1.5.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.4.0...retail-ui@1.5.0) (2019-10-09)
2044
+
2045
+
2046
+ ### Bug Fixes
2047
+
2048
+ * **ComboBox:** add offsetX for DropDownContainer ([6cbea25](https://github.com/skbkontur/retail-ui/commit/6cbea25)), closes [#1005](https://github.com/skbkontur/retail-ui/issues/1005)
2049
+ * **CurrencyLabel:** fix defaultProps definition ([2794e1a](https://github.com/skbkontur/retail-ui/commit/2794e1a))
2050
+ * **customization:** change 'blinkColor' ([03fd81f](https://github.com/skbkontur/retail-ui/commit/03fd81f)), closes [#1646](https://github.com/skbkontur/retail-ui/issues/1646)
2051
+ * **Select:** fix calls prop onKeyDown ([6720eff](https://github.com/skbkontur/retail-ui/commit/6720eff)), closes [#1665](https://github.com/skbkontur/retail-ui/issues/1665)
2052
+ * **TopBarDropDown:** make 'use' prop required ([fcea8b1](https://github.com/skbkontur/retail-ui/commit/fcea8b1))
2053
+
2054
+
2055
+ ### Features
2056
+
2057
+ * **Paging:** deprecate 'strings' prop ([6c84288](https://github.com/skbkontur/retail-ui/commit/6c84288))
2058
+ * **Paging:** remove 'strings' prop ([58cabb7](https://github.com/skbkontur/retail-ui/commit/58cabb7)), closes [#1232](https://github.com/skbkontur/retail-ui/issues/1232)
2059
+ * **ThemeContext:** exports ThemeContext ([ef0579b](https://github.com/skbkontur/retail-ui/commit/ef0579b)), closes [#1656](https://github.com/skbkontur/retail-ui/issues/1656)
2060
+ * **TopBarDropDown:** added "default" "use" option ([74ef3b3](https://github.com/skbkontur/retail-ui/commit/74ef3b3))
2061
+ * **TopBarDropDown:** added flow types ([f3909be](https://github.com/skbkontur/retail-ui/commit/f3909be))
2062
+
2063
+
2064
+
2065
+
2066
+
2067
+ # [1.4.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.3.1...retail-ui@1.4.0) (2019-10-02)
2068
+
2069
+
2070
+ ### Bug Fixes
2071
+
2072
+ * **Button:** isButton is undefined when use adapter ([0e41da9](https://github.com/skbkontur/retail-ui/commit/0e41da9))
2073
+ * **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)
2074
+ * **DatePicker:** prepare PR to fork ([832fb7b](https://github.com/skbkontur/retail-ui/commit/832fb7b))
2075
+ * **DatePicker:** remove console.log ([67951d7](https://github.com/skbkontur/retail-ui/commit/67951d7))
2076
+ * **DatePicker:** simplify fallback structure for ie ([f9e27ed](https://github.com/skbkontur/retail-ui/commit/f9e27ed))
2077
+ * **DatePicker:** Баг с кликом на день календаря в Edge [#1557](https://github.com/skbkontur/retail-ui/issues/1557) ([7b24f69](https://github.com/skbkontur/retail-ui/commit/7b24f69))
2078
+ * **DatePicker:** Привел в порядок типизацию в DateInputFallback [#1557](https://github.com/skbkontur/retail-ui/issues/1557) ([dcebd76](https://github.com/skbkontur/retail-ui/commit/dcebd76))
2079
+ * **docs:** fix code formatter of the ThemeShowcase ([42b99c2](https://github.com/skbkontur/retail-ui/commit/42b99c2))
2080
+ * **Fias:** escape regexp spec chars ([cace4b6](https://github.com/skbkontur/retail-ui/commit/cace4b6)), closes [#1636](https://github.com/skbkontur/retail-ui/issues/1636)
2081
+ * **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)
2082
+ * **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)
2083
+
2084
+
2085
+ ### Features
2086
+
2087
+ * **Combobox:** add prop onInputKeyDown ([b804b84](https://github.com/skbkontur/retail-ui/commit/b804b84))
2088
+ * **lib:** add key identification tools ([73479fe](https://github.com/skbkontur/retail-ui/commit/73479fe)), closes [#1429](https://github.com/skbkontur/retail-ui/issues/1429)
2089
+ * **Select:** add prop onKeyDown ([ba41e73](https://github.com/skbkontur/retail-ui/commit/ba41e73))
2090
+
2091
+
2092
+
2093
+
2094
+
2095
+ ## [1.3.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.3.0...retail-ui@1.3.1) (2019-09-24)
2096
+
2097
+
2098
+ ### Bug Fixes
2099
+
2100
+ * **Dropdown:** sync type of `width` prop type with proptypes checks ([47a5612](https://github.com/skbkontur/retail-ui/commit/47a5612))
2101
+ * **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)
2102
+ * **Popup:** deterministic open/close animation ([0415fa4](https://github.com/skbkontur/retail-ui/commit/0415fa4)), closes [#1372](https://github.com/skbkontur/retail-ui/issues/1372)
2103
+ * **RenderContainer:** getRootId changed ([b0ce223](https://github.com/skbkontur/retail-ui/commit/b0ce223))
2104
+ * **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)
2105
+
2106
+
2107
+
2108
+
2109
+
2110
+ # [1.3.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.2.0...retail-ui@1.3.0) (2019-09-11)
2111
+
2112
+
2113
+ ### Bug Fixes
2114
+
2115
+ * **Button:** change disabled bg & shadow for the FlatTheme ([765e9d4](https://github.com/skbkontur/retail-ui/commit/765e9d4))
2116
+ * **Button:** fix emotion className interpolation warning ([ad5d2a2](https://github.com/skbkontur/retail-ui/commit/ad5d2a2))
2117
+ * **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)
2118
+ * **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)
2119
+
2120
+
2121
+ ### Features
2122
+
2123
+ * **Logotype:** add props size and onArrowClick ([94fc027](https://github.com/skbkontur/retail-ui/commit/94fc027))
2124
+
2125
+
2126
+
2127
+
2128
+
2129
+ # [1.2.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.1.2...retail-ui@1.2.0) (2019-09-03)
2130
+
2131
+
2132
+ ### Bug Fixes
2133
+
2134
+ * **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)
2135
+ * **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)
2136
+ * **ComboBox:** spinner position by baseline ([5f144e8](https://github.com/skbkontur/retail-ui/commit/5f144e8)), closes [#1333](https://github.com/skbkontur/retail-ui/issues/1333)
2137
+ * **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)
2138
+ * **Icon20px:** prevent from selecting ([763b5b8](https://github.com/skbkontur/retail-ui/commit/763b5b8))
2139
+ * **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)
2140
+ * **react-ui:** support CRA css-modules convention: variables ([aace330](https://github.com/skbkontur/retail-ui/commit/aace330))
2141
+ * **Token:** import react as namespace ([8b10014](https://github.com/skbkontur/retail-ui/commit/8b10014)), closes [#1519](https://github.com/skbkontur/retail-ui/issues/1519)
2142
+
2143
+
2144
+ ### Features
2145
+
2146
+ * **Fias:** render additional fields in the search results ([37fa2db](https://github.com/skbkontur/retail-ui/commit/37fa2db))
2147
+ * **Fias:** search streets through not only direct parent ([7729fd7](https://github.com/skbkontur/retail-ui/commit/7729fd7))
2148
+ * **ScrollContainer:** add scrollBehaviour prop ([ad4c7c9](https://github.com/skbkontur/retail-ui/commit/ad4c7c9))
2149
+
2150
+
2151
+
2152
+
2153
+
2154
+ ## [1.1.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.1.1...retail-ui@1.1.2) (2019-08-07)
2155
+
2156
+
2157
+ ### Bug Fixes
2158
+
2159
+ * **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)
2160
+ * **Group:** removed vertical-align ([2f8cad6](https://github.com/skbkontur/retail-ui/commit/2f8cad6))
2161
+
2162
+
2163
+
2164
+
2165
+
2166
+ ## [1.1.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.1.0...retail-ui@1.1.1) (2019-07-31)
2167
+
2168
+
2169
+ ### Bug Fixes
2170
+
2171
+ * **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)
2172
+ * **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)
2173
+ * **Radio:** decrease types checking time ([f18c74b](https://github.com/skbkontur/retail-ui/commit/f18c74b)), closes [#1518](https://github.com/skbkontur/retail-ui/issues/1518)
2174
+
2175
+
2176
+
2177
+
2178
+
2179
+ # [1.1.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.0.1...retail-ui@1.1.0) (2019-07-23)
2180
+
2181
+
2182
+ ### Bug Fixes
2183
+
2184
+ * **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)
2185
+ * **TokenInput:** add input's box-shadow ([6f0789f](https://github.com/skbkontur/retail-ui/commit/6f0789f))
2186
+ * **TokenInput:** fix flat styles ([0fa0d52](https://github.com/skbkontur/retail-ui/commit/0fa0d52)), closes [#1493](https://github.com/skbkontur/retail-ui/issues/1493)
2187
+ * **TokenInput:** remove hardcoded dataTid ([9e5151f](https://github.com/skbkontur/retail-ui/commit/9e5151f))
2188
+
2189
+
2190
+ ### Features
2191
+
2192
+ * **Switcher:** add prop 'size' ([a5e16ae](https://github.com/skbkontur/retail-ui/commit/a5e16ae)), closes [#1492](https://github.com/skbkontur/retail-ui/issues/1492)
2193
+
2194
+
2195
+
2196
+
2197
+
2198
+ ## [1.0.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@1.0.0...retail-ui@1.0.1) (2019-07-16)
2199
+
2200
+
2201
+ ### Bug Fixes
2202
+
2203
+ * **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)
2204
+ * **Tab:** add error/warning/primary hover borders to vertical tabs ([29f4bc2](https://github.com/skbkontur/retail-ui/commit/29f4bc2))
2205
+ * **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)
2206
+ * **Textarea:** add blocking Enter after reaching 'maxLength' ([2a862f5](https://github.com/skbkontur/retail-ui/commit/2a862f5))
2207
+ * **ThemeShowcase:** make it fit enough to squize into styleguidist ([12f184b](https://github.com/skbkontur/retail-ui/commit/12f184b))
2208
+ * **ThemeShowcase:** source code tooltip contents in production mode ([89c5183](https://github.com/skbkontur/retail-ui/commit/89c5183))
2209
+
2210
+
2211
+
2212
+
2213
+
2214
+ # [1.0.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.53.0...retail-ui@1.0.0) (2019-07-02)
2215
+
2216
+
2217
+ ### Features
2218
+
2219
+ * Customization ([#1333](https://github.com/skbkontur/retail-ui/issues/1333)) ([15e9e8f](https://github.com/skbkontur/retail-ui/commit/15e9e8f))
2220
+
2221
+
2222
+ ### BREAKING CHANGES
2223
+
2224
+ * Upgrades.enableSizeMedium16px is no longer working: redefine fontSizeMedium
2225
+ variable via ThemeProvider or by calling ThemeFactory.overrideDefaultTheme()
2226
+
2227
+ * refactor(ColorObject): remove require call
2228
+
2229
+ * style(Upgrades): fix lint error
2230
+
2231
+ * chore(storybook): use ThemeProvider instead of overrideDefaultTheme
2232
+
2233
+ * refactor(ThemeFactory): remove ThemesCache
2234
+
2235
+ * refactor(ThemeEditor): clear timeout on unmount
2236
+
2237
+ * refactor(variables.less): prepare for Date* controls convertion
2238
+
2239
+ * feat(DateSelect): customize with css-in-js
2240
+
2241
+ * refactor(DatePickerOld): rename less file to prevent confusion
2242
+
2243
+ * feat(DatePicker): customize with css-in-js
2244
+
2245
+ * refactor(DateInput): properly separate styles between components
2246
+
2247
+ * feat(DateInput): customize with css-in-js
2248
+
2249
+ * feat(Calendar): customize with css-in-js
2250
+
2251
+ * refactor(TokenInput): add -webkit-text-fill-color
2252
+
2253
+ * refactor(styles): remove rt-ie8, rt-ie9
2254
+
2255
+ * refactor(Calendar): rename classnames to cx
2256
+
2257
+ * refactor(variables.less): move mixins into separate file
2258
+
2259
+ * style(CustomComboBox): specify px for padding-bottom
2260
+
2261
+ * style(SidePage): fix variable typo
2262
+
2263
+ * refactor(styles): remove unnecessary imports
2264
+
2265
+ * refactor(FormatSourceCode): rewrite code in more readable way
2266
+
2267
+ * test(ComboBoxView): approve screens with new spinner gray color
2268
+
2269
+ * fix(Button): fix sizeMedium baseline regress
2270
+
2271
+ * test(Button): approve screenshots with 14px medium font-size
2272
+
2273
+ * test(ComboBox): approve darker spinner color while loading items
2274
+
2275
+ * refactor(TokenInput): simplify styles
2276
+
2277
+ * refactor(TokenInput): fix firefox placeholder opacity
2278
+
2279
+ * refactor(DateSelect): make active prevail over selected
2280
+
2281
+ * refactor(DatePicker): fix red color bug
2282
+
2283
+ * refactor(DatePicker): make weekend prevail over today
2284
+
2285
+ * refactor(DateFragmentsView): fix .delimiter.filled combination style
2286
+
2287
+ * style(AnotherInputsPlayground): remove underscores from private methods
2288
+
2289
+ * test(AnotherInputsPlayground): stable date for screenshots
2290
+
2291
+ * test(Customization): approve actual screenshots
2292
+
2293
+ * refactor(customization): separate ThemeProviderPlayground component
2294
+
2295
+ * docs(ThemeProviderPlayground ): add README
2296
+
2297
+ * docs(customization): add core README
2298
+
2299
+ # copied from PR
2300
+
2301
+ * build(styleguide): add customization section to config
2302
+
2303
+ * chore(ThemeProviderPlayground): fix import
2304
+
2305
+ * test(Button): approve 14px font-size for medium size in flat theme
2306
+
2307
+ * refactor(customization): introduce derived font sizes for button/input
2308
+
2309
+ * refactor(Button): use fontSize=16px for size=medium in flat theme
2310
+
2311
+ * test(Button): approve 16px font-size for medium size in flat theme
2312
+
2313
+ * test(Customization): approve 16px font-size in flat theme
2314
+
2315
+ * refactor(DateInput): remove isSizeMedium16pxEnabled() in favor of theme
2316
+
2317
+ * refactor(Upgrades): cleanup deprecated methods
2318
+
2319
+ * docs(customization): fix styleguide's components and sections
2320
+
2321
+ * docs(customization): hack-fix ordered lists
2322
+
2323
+ * docs(customization): remove broken links
2324
+
2325
+ * docs(customization): fix less formatting
2326
+
2327
+ * docs(customization): add some line-breaks
2328
+
2329
+ * docs(customization): emphasize inline <code> the way it's done at github
2330
+
2331
+ * docs(customization): switch 'jsx static' to 'typescript' for some blocks
2332
+
2333
+ * docs(customization): use monospace font for inline <code>
2334
+
2335
+ * chore(Button): fix baseline of flat medium Button
2336
+
2337
+ * docs(customization): fix typo
2338
+
2339
+ * style: format with prettier
2340
+
2341
+ * style: make stylelint ignore *.ts
2342
+
2343
+
2344
+
2345
+
2346
+
2347
+ # [0.53.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.52.1...retail-ui@0.53.0) (2019-07-02)
2348
+
2349
+
2350
+ ### Bug Fixes
2351
+
2352
+ * **CurrencyInput:** add 15-digit limit and warning about it ([b523ddf](https://github.com/skbkontur/retail-ui/commit/b523ddf))
2353
+ * **CurrencyLabel:** add warning about 15-digit limit for fractionDigits ([adba185](https://github.com/skbkontur/retail-ui/commit/adba185))
2354
+ * **DateInputFallback:** remove unnecessary call 'emitChange' ([cf28a56](https://github.com/skbkontur/retail-ui/commit/cf28a56)), closes [#1466](https://github.com/skbkontur/retail-ui/issues/1466)
2355
+ * **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)
2356
+ * **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)
2357
+
2358
+
2359
+ ### Features
2360
+
2361
+ * **Fias:** expose FiasSearch ([075bd36](https://github.com/skbkontur/retail-ui/commit/075bd36))
2362
+
2363
+
2364
+
2365
+
2366
+
2367
+ ## [0.52.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.52.0...retail-ui@0.52.1) (2019-06-18)
2368
+
2369
+ **Note:** Version bump only for package retail-ui
2370
+
2371
+
2372
+
2373
+
2374
+
2375
+ # [0.52.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.51.1...retail-ui@0.52.0) (2019-06-13)
2376
+
2377
+
2378
+ ### Bug Fixes
2379
+
2380
+ * **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)
2381
+ * **DropdownMenu:** added missing flow types props ([#1462](https://github.com/skbkontur/retail-ui/issues/1462)) ([eb1bc3e](https://github.com/skbkontur/retail-ui/commit/eb1bc3e))
2382
+ * **MaskedInput:** add support prop 'defaultValue' ([e8b9436](https://github.com/skbkontur/retail-ui/commit/e8b9436))
2383
+ * **RenderLayer:** add touchstart handling ([567f80b](https://github.com/skbkontur/retail-ui/commit/567f80b)), closes [#1439](https://github.com/skbkontur/retail-ui/issues/1439)
2384
+ * **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))
2385
+ * **Spinner:** baseline and height are equal to icons ([996c365](https://github.com/skbkontur/retail-ui/commit/996c365))
2386
+
2387
+
2388
+ ### Features
2389
+
2390
+ * **DatePicker:** add localization ([10d30d0](https://github.com/skbkontur/retail-ui/commit/10d30d0))
2391
+ * **DateSelect:** add localization ([00a5ea7](https://github.com/skbkontur/retail-ui/commit/00a5ea7))
2392
+ * **Fias:** add localization ([cc5a7ef](https://github.com/skbkontur/retail-ui/commit/cc5a7ef))
2393
+ * **lib:** add lib `MouseDrag` ([9e7d329](https://github.com/skbkontur/retail-ui/commit/9e7d329))
2394
+ * **lib:** add tools for internationalizing dates ([aac2c0d](https://github.com/skbkontur/retail-ui/commit/aac2c0d))
2395
+ * **LocaleHelper:** add getting locale with default langCode ([d25d2a3](https://github.com/skbkontur/retail-ui/commit/d25d2a3))
2396
+ * **Tooltip:** add trigger type hover&focus ([422915e](https://github.com/skbkontur/retail-ui/commit/422915e))
2397
+
2398
+
2399
+
2400
+
2401
+
2402
+ ## [0.51.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.51.0...retail-ui@0.51.1) (2019-06-04)
2403
+
2404
+
2405
+ ### Bug Fixes
2406
+
2407
+ * **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)
2408
+
2409
+
2410
+
2411
+
2412
+
2413
+ # [0.51.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.50.0...retail-ui@0.51.0) (2019-05-28)
2414
+
2415
+
2416
+ ### Bug Fixes
2417
+
2418
+ * **DatePicker:** fix icon style ([3e092ef](https://github.com/skbkontur/retail-ui/commit/3e092ef))
2419
+ * **MenuItem:** fix triggered `MouseEnter` from disabled button ([1c88969](https://github.com/skbkontur/retail-ui/commit/1c88969))
2420
+ * **Tabs:** replace check on existence `focus` ([87e0443](https://github.com/skbkontur/retail-ui/commit/87e0443))
2421
+
2422
+
2423
+ ### Features
2424
+
2425
+ * **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)
2426
+
2427
+
2428
+
2429
+
2430
+
2431
+ # [0.50.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.49.1...retail-ui@0.50.0) (2019-05-22)
2432
+
2433
+
2434
+ ### Bug Fixes
2435
+
2436
+ * **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)
2437
+
2438
+
2439
+ ### Features
2440
+
2441
+ * **Toast:** toast is testable ([#1403](https://github.com/skbkontur/retail-ui/issues/1403)) ([5dcdf32](https://github.com/skbkontur/retail-ui/commit/5dcdf32))
2442
+
2443
+
2444
+
2445
+
2446
+
2447
+ ## [0.49.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.49.0...retail-ui@0.49.1) (2019-05-16)
2448
+
2449
+
2450
+ ### Bug Fixes
2451
+
2452
+ * **Select:** bind public focus function to component instance ([5909b9e](https://github.com/skbkontur/retail-ui/commit/5909b9e))
2453
+ * **Toggle:** fix overflow issue in Safari ([#1411](https://github.com/skbkontur/retail-ui/issues/1411)) ([7073cb5](https://github.com/skbkontur/retail-ui/commit/7073cb5))
2454
+
2455
+
2456
+
2457
+
2458
+
2459
+ # [0.49.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.48.0...retail-ui@0.49.0) (2019-05-14)
2460
+
2461
+
2462
+ ### Bug Fixes
2463
+
2464
+ * **flow:** update props ([c652880](https://github.com/skbkontur/retail-ui/commit/c652880))
2465
+ * **Paging:** add autofocus for IE11 ([e434d80](https://github.com/skbkontur/retail-ui/commit/e434d80)), closes [#1358](https://github.com/skbkontur/retail-ui/issues/1358)
2466
+ * **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)
2467
+
2468
+
2469
+ ### Features
2470
+
2471
+ * **TokenInput:** add prop `valueToString` ([9e7bf50](https://github.com/skbkontur/retail-ui/commit/9e7bf50))
2472
+
2473
+
2474
+
2475
+
2476
+
2477
+ # [0.48.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.47.0...retail-ui@0.48.0) (2019-04-30)
2478
+
2479
+
2480
+ ### Bug Fixes
2481
+
2482
+ * **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)
2483
+ * **Fias:** search postal Code through all fields ([7433d12](https://github.com/skbkontur/retail-ui/commit/7433d12))
2484
+ * **Fias:** validate all fields ([8d126f9](https://github.com/skbkontur/retail-ui/commit/8d126f9))
2485
+ * **flow:** add children to Modal props ([1e7e420](https://github.com/skbkontur/retail-ui/commit/1e7e420))
2486
+ * **flow:** add missed props ([5538a61](https://github.com/skbkontur/retail-ui/commit/5538a61))
2487
+ * **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)
2488
+ * **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)
2489
+ * **Popup:** remove hardcoded maxWidth ([721b751](https://github.com/skbkontur/retail-ui/commit/721b751)), closes [#1343](https://github.com/skbkontur/retail-ui/issues/1343)
2490
+ * **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)
2491
+
2492
+
2493
+ ### Features
2494
+
2495
+ * **ComboBox:** add prop `renderAddButton` ([#1365](https://github.com/skbkontur/retail-ui/issues/1365)) ([55345e1](https://github.com/skbkontur/retail-ui/commit/55345e1))
2496
+ * **DropdownMenu:** add positions prop ([7fc607d](https://github.com/skbkontur/retail-ui/commit/7fc607d))
2497
+ * **MenuItem:** add `link` prop ([d705f19](https://github.com/skbkontur/retail-ui/commit/d705f19))
2498
+
2499
+
2500
+
2501
+
2502
+
2503
+ # [0.47.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.46.2...retail-ui@0.47.0) (2019-04-22)
2504
+
2505
+
2506
+ ### Bug Fixes
2507
+
2508
+ * **Button:** add border radius & background styles in flat theme ([59486e3](https://github.com/skbkontur/retail-ui/commit/59486e3))
2509
+ * **Button:** fix arrow position in flat version for small button ([2ce7b42](https://github.com/skbkontur/retail-ui/commit/2ce7b42))
2510
+ * **Button:** fix border color at checked + focused state on hover ([bad4f08](https://github.com/skbkontur/retail-ui/commit/bad4f08))
2511
+ * **Button:** fix border overlap in visually focused state with error/warning ([72d2787](https://github.com/skbkontur/retail-ui/commit/72d2787))
2512
+ * **Button:** fix stylelint `eol-whitespace` error ([461850f](https://github.com/skbkontur/retail-ui/commit/461850f))
2513
+ * **Button:** fixed disabled state shadow styles at flat version ([ad5db6f](https://github.com/skbkontur/retail-ui/commit/ad5db6f))
2514
+ * **Button:** fixed flat styles in IE ([ad3f558](https://github.com/skbkontur/retail-ui/commit/ad3f558))
2515
+ * **Input:** add background & border color styles in flat theme ([b106eb2](https://github.com/skbkontur/retail-ui/commit/b106eb2))
2516
+ * **Paging:** changed detecting of pressed key ([f7b5f24](https://github.com/skbkontur/retail-ui/commit/f7b5f24))
2517
+ * **Radio:** fixed outline padding in flat styles ([0baf333](https://github.com/skbkontur/retail-ui/commit/0baf333))
2518
+ * **Textarea:** add background & border color styles in flat theme ([003c268](https://github.com/skbkontur/retail-ui/commit/003c268))
2519
+ * **Toggle:** add white outline to focused box-shadow ([7b7a3c9](https://github.com/skbkontur/retail-ui/commit/7b7a3c9))
2520
+
2521
+
2522
+ ### Features
2523
+
2524
+ * **Button:** add arrow styles in flat version ([8e1d268](https://github.com/skbkontur/retail-ui/commit/8e1d268))
2525
+ * **Button:** add arrows shadow & border styles in flat theme ([1889232](https://github.com/skbkontur/retail-ui/commit/1889232))
2526
+ * **Button, Checkbox, Radio, Toggle:** add common outline color variable ([58fac79](https://github.com/skbkontur/retail-ui/commit/58fac79))
2527
+
2528
+
2529
+
2530
+
2531
+
2532
+ ## [0.46.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.46.1...retail-ui@0.46.2) (2019-04-17)
2533
+
2534
+
2535
+ ### Bug Fixes
2536
+
2537
+ * **Tabs:** context provider render children for reac@15 ([f0df170](https://github.com/skbkontur/retail-ui/commit/f0df170))
2538
+
2539
+
2540
+
2541
+
2542
+
2543
+ ## [0.46.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.46.0...retail-ui@0.46.1) (2019-04-16)
2544
+
2545
+
2546
+ ### Bug Fixes
2547
+
2548
+ * **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)
2549
+ * **ComboBox:** add missing callbacks ([fab3ff6](https://github.com/skbkontur/retail-ui/commit/fab3ff6))
2550
+ * **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)
2551
+ * **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)
2552
+ * **Hint:** render popup even if no text provided ([cf4a473](https://github.com/skbkontur/retail-ui/commit/cf4a473))
2553
+ * **Tabs:** correct work with FunctionalComponents ([93163db](https://github.com/skbkontur/retail-ui/commit/93163db)), closes [#1337](https://github.com/skbkontur/retail-ui/issues/1337)
2554
+ * **Tabs:** error findDOMNode on unmounted active tab component ([90142cb](https://github.com/skbkontur/retail-ui/commit/90142cb))
2555
+ * **TopBarDropdown:** added methods open & close ([9e7ddcc](https://github.com/skbkontur/retail-ui/commit/9e7ddcc))
2556
+
2557
+
2558
+
2559
+
2560
+
2561
+ # [0.46.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.45.0...retail-ui@0.46.0) (2019-04-08)
2562
+
2563
+
2564
+ ### Bug Fixes
2565
+
2566
+ * **Button:** compare elements reliable way ([0d7843e](https://github.com/skbkontur/retail-ui/commit/0d7843e)), closes [#1267](https://github.com/skbkontur/retail-ui/issues/1267)
2567
+ * preventDefault inside passive event listener ([055eb48](https://github.com/skbkontur/retail-ui/commit/055eb48)), closes [#1326](https://github.com/skbkontur/retail-ui/issues/1326)
2568
+ * safe components usage for SSR ([#1312](https://github.com/skbkontur/retail-ui/issues/1312)) ([0c8c91e](https://github.com/skbkontur/retail-ui/commit/0c8c91e))
2569
+ * **ComboBoxOld:** args types for renderTotalCount and onInputChange ([4ddd480](https://github.com/skbkontur/retail-ui/commit/4ddd480))
2570
+ * **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)
2571
+ * **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)
2572
+ * **Modal:** compare elements reliable way ([fdba164](https://github.com/skbkontur/retail-ui/commit/fdba164)), closes [#1267](https://github.com/skbkontur/retail-ui/issues/1267)
2573
+
2574
+
2575
+ ### Features
2576
+
2577
+ * **Fias:** add rooms search ([10843e1](https://github.com/skbkontur/retail-ui/commit/10843e1))
2578
+
2579
+
2580
+
2581
+
2582
+
2583
+ # [0.45.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.44.3...retail-ui@0.45.0) (2019-04-01)
2584
+
2585
+
2586
+ ### Bug Fixes
2587
+
2588
+ * **Autocomplete:** handle concurrent requests ([dd07ef4](https://github.com/skbkontur/retail-ui/commit/dd07ef4)), closes [#1299](https://github.com/skbkontur/retail-ui/issues/1299)
2589
+ * **Logotype:** async load products widget script ([85312d9](https://github.com/skbkontur/retail-ui/commit/85312d9))
2590
+ * **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)
2591
+ * **ScrollContainer:** multiple scrollbars on OSX ([#827](https://github.com/skbkontur/retail-ui/issues/827)) ([118b347](https://github.com/skbkontur/retail-ui/commit/118b347))
2592
+ * **Tooltip:** deactivate RenderLayer by default ([0818973](https://github.com/skbkontur/retail-ui/commit/0818973)), closes [#1304](https://github.com/skbkontur/retail-ui/issues/1304)
2593
+
2594
+
2595
+ ### Features
2596
+
2597
+ * **flow:** add typings ([42f8fed](https://github.com/skbkontur/retail-ui/commit/42f8fed))
2598
+
2599
+
2600
+ ### Reverts
2601
+
2602
+ * **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)
2603
+ * **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)
2604
+
2605
+
2606
+
2607
+
2608
+
2609
+ ## [0.44.3](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.44.2...retail-ui@0.44.3) (2019-03-27)
2610
+
2611
+
2612
+ ### Bug Fixes
2613
+
2614
+ * **Input:** don't show placeholder if mask is visible ([1c40f1d](https://github.com/skbkontur/retail-ui/commit/1c40f1d))
2615
+ * **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)
2616
+
2617
+
2618
+
2619
+
2620
+
2621
+ ## [0.44.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.44.1...retail-ui@0.44.2) (2019-03-26)
2622
+
2623
+
2624
+ ### Bug Fixes
2625
+
2626
+ * **ComboBoxOld:** bring typings back ([65d26cd](https://github.com/skbkontur/retail-ui/commit/65d26cd))
2627
+ * **hint:** add pin offset ([9c68d44](https://github.com/skbkontur/retail-ui/commit/9c68d44)), closes [#1265](https://github.com/skbkontur/retail-ui/issues/1265)
2628
+ * **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)
2629
+ * **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)
2630
+ * **Tooltip:** correct render invalid react element ([d49b9fd](https://github.com/skbkontur/retail-ui/commit/d49b9fd))
2631
+ * **Tooltip:** loosing focus on show/hide content ([83b86f7](https://github.com/skbkontur/retail-ui/commit/83b86f7))
2632
+
2633
+
2634
+ ### Performance Improvements
2635
+
2636
+ * **Popup:** bind instead of field initializer ([e1bfba1](https://github.com/skbkontur/retail-ui/commit/e1bfba1))
2637
+ * **Popup:** do not renderContent if closed ([49b03a6](https://github.com/skbkontur/retail-ui/commit/49b03a6))
2638
+ * **Popup:** less event subscriptions ([eb30481](https://github.com/skbkontur/retail-ui/commit/eb30481))
2639
+ * **Popup:** remove RenderLayer/onCloseRequest ([1763036](https://github.com/skbkontur/retail-ui/commit/1763036))
2640
+ * **RenderContainer:** lazy domContainer ([7a193fe](https://github.com/skbkontur/retail-ui/commit/7a193fe))
2641
+ * **RenderLayer:** bind instead of field initializer ([a7a940b](https://github.com/skbkontur/retail-ui/commit/a7a940b))
2642
+ * **RenderLayer:** less event subscriptions ([f095eca](https://github.com/skbkontur/retail-ui/commit/f095eca))
2643
+ * **Tooltip:** bind instead of field initializer ([e4a1ef5](https://github.com/skbkontur/retail-ui/commit/e4a1ef5))
2644
+ * **Tooltip:** skip RenderLayer if unneeded ([9719e45](https://github.com/skbkontur/retail-ui/commit/9719e45))
2645
+
2646
+
2647
+
2648
+
2649
+
2650
+ ## [0.44.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.44.0...retail-ui@0.44.1) (2019-03-19)
2651
+
2652
+
2653
+ ### Bug Fixes
2654
+
2655
+ * **retail-ui:** fix some imports for `[@skbkontur](https://github.com/skbkontur)/react-ui` ([d4c19a8](https://github.com/skbkontur/retail-ui/commit/d4c19a8))
2656
+
2657
+
2658
+
2659
+
2660
+
2661
+ # [0.44.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.43.0...retail-ui@0.44.0) (2019-03-19)
2662
+
2663
+
2664
+ ### Bug Fixes
2665
+
2666
+ * **ComboBox:** typings issues ([d51d66d](https://github.com/skbkontur/retail-ui/commit/d51d66d))
2667
+ * **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)
2668
+ * **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)
2669
+ * **retail-ui:** add optional for some props and default for generic ([07003a4](https://github.com/skbkontur/retail-ui/commit/07003a4))
2670
+ * **SidePage:** change header paddings according to the guides ([722d00f](https://github.com/skbkontur/retail-ui/commit/722d00f))
2671
+ * **SidePage:** fix scrollbar overlapping by the footer with wrong width ([f3468b1](https://github.com/skbkontur/retail-ui/commit/f3468b1))
2672
+ * **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)
2673
+
2674
+
2675
+ ### Features
2676
+
2677
+ * **ComboBox:** add props `searchOnFocus` and `drawArrow` ([a605c22](https://github.com/skbkontur/retail-ui/commit/a605c22))
2678
+
2679
+
2680
+
2681
+
2682
+
2683
+ # [0.43.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.42.0...retail-ui@0.43.0) (2019-03-12)
2684
+
2685
+
2686
+ ### Bug Fixes
2687
+
2688
+ * **Button:** fix disabled link background ([9c2cdae](https://github.com/skbkontur/retail-ui/commit/9c2cdae)), closes [#1213](https://github.com/skbkontur/retail-ui/issues/1213)
2689
+ * **ComboBox:** correct import specific icon, not all ([9f0fcbf](https://github.com/skbkontur/retail-ui/commit/9f0fcbf))
2690
+ * **ComboBox:** repair blur when menu is not open ([0861a90](https://github.com/skbkontur/retail-ui/commit/0861a90))
2691
+ * **ComboBoxMenu:** unique keys warning ([7ead9fc](https://github.com/skbkontur/retail-ui/commit/7ead9fc))
2692
+ * **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)
2693
+ * **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)
2694
+ * **Tooltip:** handleClickOutside detects content ([c69773b](https://github.com/skbkontur/retail-ui/commit/c69773b)), closes [#1210](https://github.com/skbkontur/retail-ui/issues/1210)
2695
+
2696
+
2697
+ ### Features
2698
+
2699
+ * **ComboBox:** add localization ([2bc0300](https://github.com/skbkontur/retail-ui/commit/2bc0300))
2700
+ * **LocaleContext:** localization controls ([4d5a412](https://github.com/skbkontur/retail-ui/commit/4d5a412))
2701
+ * **Logotype:** add localization ([47fa21e](https://github.com/skbkontur/retail-ui/commit/47fa21e))
2702
+ * **Paging:** add localization ([ef982db](https://github.com/skbkontur/retail-ui/commit/ef982db))
2703
+ * **Select:** add localization ([8a539be](https://github.com/skbkontur/retail-ui/commit/8a539be))
2704
+ * **Spinner:** add localization ([265deee](https://github.com/skbkontur/retail-ui/commit/265deee))
2705
+ * **TokenInput:** add localization ([49d7742](https://github.com/skbkontur/retail-ui/commit/49d7742))
2706
+ * **TopBar:** add `TopBar.Logout` for localization ([18533e9](https://github.com/skbkontur/retail-ui/commit/18533e9))
2707
+ * **TopBar:** add localization ([50accaf](https://github.com/skbkontur/retail-ui/commit/50accaf))
2708
+
2709
+
2710
+
2711
+
2712
+
2713
+ # [0.42.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.41.1...retail-ui@0.42.0) (2019-03-05)
2714
+
2715
+ ### Bug Fixes
2716
+
2717
+ - **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)
2718
+ - **Fias:** fix textarea import ([2a1dd51](https://github.com/skbkontur/retail-ui/commit/2a1dd51))
2719
+ - **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)
2720
+ - **Tooltip:** reposition changed content ([39b641f](https://github.com/skbkontur/retail-ui/commit/39b641f)), closes [#962](https://github.com/skbkontur/retail-ui/issues/962)
2721
+
2722
+ ### Features
2723
+
2724
+ - **DropdownMenu:** add header and footer props ([db8a428](https://github.com/skbkontur/retail-ui/commit/db8a428))
2725
+ - **ScrollContainer:** add `onScrollStateChange` prop ([18366b7](https://github.com/skbkontur/retail-ui/commit/18366b7))
2726
+ - **TooltipMenu:** add header and footer props ([578125d](https://github.com/skbkontur/retail-ui/commit/578125d))
2727
+
2728
+ ## [0.41.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.41.0...retail-ui@0.41.1) (2019-02-27)
2729
+
2730
+ ### Bug Fixes
2731
+
2732
+ - **Popup:** remove ambient types ([72fb736](https://github.com/skbkontur/retail-ui/commit/72fb736))
2733
+
2734
+ # [0.41.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.40.1...retail-ui@0.41.0) (2019-02-26)
2735
+
2736
+ ### Bug Fixes
2737
+
2738
+ - **ComboBox:** fix `focusNextElement` call condition ([da8e007](https://github.com/skbkontur/retail-ui/commit/da8e007))
2739
+ - **ComboBox:** fix open if blured ([6a63937](https://github.com/skbkontur/retail-ui/commit/6a63937))
2740
+ - **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))
2741
+ - **ComboBox:** use requestStatus and repeatRequest to highlight menu item properly ([c5dfd8f](https://github.com/skbkontur/retail-ui/commit/c5dfd8f))
2742
+ - **DateInput:** add handle action `separator` ([c532008](https://github.com/skbkontur/retail-ui/commit/c532008)), closes [#1059](https://github.com/skbkontur/retail-ui/issues/1059)
2743
+ - **Hint:** don't render Popup if text is empty ([f4b2e03](https://github.com/skbkontur/retail-ui/commit/f4b2e03))
2744
+ - **PasswordInput:** remove not DOM prop `detectCapsLock` ([7d49446](https://github.com/skbkontur/retail-ui/commit/7d49446))
2745
+ - **Popup:** closing 'hover' after dropdown selection ([c021e04](https://github.com/skbkontur/retail-ui/commit/c021e04))
2746
+ - **Popup:** possible memory leak fix ([bd1bca4](https://github.com/skbkontur/retail-ui/commit/bd1bca4))
2747
+ - **retail-ui:** fix input and button baseline (according to the guides) ([085d6af](https://github.com/skbkontur/retail-ui/commit/085d6af))
2748
+ - **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)
2749
+ - **Tooltip:** don't render Popup without content ([a9fbdb5](https://github.com/skbkontur/retail-ui/commit/a9fbdb5))
2750
+
2751
+ ### Features
2752
+
2753
+ - **ComboBox:** add `cancelSearch` public method ([dcafb27](https://github.com/skbkontur/retail-ui/commit/dcafb27))
2754
+ - **ComboBox:** public blur method ([e3e3a8e](https://github.com/skbkontur/retail-ui/commit/e3e3a8e))
2755
+ - **Fias:** support foreign addresses ([2641ca2](https://github.com/skbkontur/retail-ui/commit/2641ca2))
2756
+
2757
+ ## [0.40.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.40.0...retail-ui@0.40.1) (2019-02-19)
2758
+
2759
+ ### Bug Fixes
2760
+
2761
+ - **SidePage:** dynamic resolved types `Body` and `Footer` with context ([4ec286b](https://github.com/skbkontur/retail-ui/commit/4ec286b))
2762
+
2763
+ # [0.40.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.39.0...retail-ui@0.40.0) (2019-02-19)
2764
+
2765
+ ### Bug Fixes
2766
+
2767
+ - **RenderContainer:** unique keys warning ([b2279b3](https://github.com/skbkontur/retail-ui/commit/b2279b3)), closes [#1149](https://github.com/skbkontur/retail-ui/issues/1149)
2768
+ - **Tooltip:** fixed closing for `hoverAnchor` ([fd932f2](https://github.com/skbkontur/retail-ui/commit/fd932f2)), closes [#973](https://github.com/skbkontur/retail-ui/issues/973)
2769
+
2770
+ ### Features
2771
+
2772
+ - **flow:** add typings ([#1160](https://github.com/skbkontur/retail-ui/issues/1160)) ([55d79c9](https://github.com/skbkontur/retail-ui/commit/55d79c9))
2773
+ - **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)
2774
+ - **Popup:** add `ignoreHover` prop ([869f556](https://github.com/skbkontur/retail-ui/commit/869f556))
2775
+ - **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))
2776
+
2777
+ <a name="0.39.0"></a>
2778
+
2779
+ # [0.39.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.38.0...retail-ui@0.39.0) (2019-02-12)
2780
+
2781
+ ### Bug Fixes
2782
+
2783
+ - **DropdownContainer:** fixed initial position ([8eed80e](https://github.com/skbkontur/retail-ui/commit/8eed80e))
2784
+ - **Menu:** not call `setState` after unmount ([dfd5152](https://github.com/skbkontur/retail-ui/commit/dfd5152))
2785
+
2786
+ ### Features
2787
+
2788
+ - **ComboBox:** минимальное время показа лоадера ([279afac](https://github.com/skbkontur/retail-ui/commit/279afac))
2789
+ - **Fias:** add fields settings ([31ea3d3](https://github.com/skbkontur/retail-ui/commit/31ea3d3))
2790
+ - **Fias:** add postalCode field ([02f1498](https://github.com/skbkontur/retail-ui/commit/02f1498))
2791
+ - **Fias:** move fields labels to the locale ([0bae0fd](https://github.com/skbkontur/retail-ui/commit/0bae0fd))
2792
+ - **retail-ui:** add more flow typings ([#1137](https://github.com/skbkontur/retail-ui/issues/1137)) ([e72b3eb](https://github.com/skbkontur/retail-ui/commit/e72b3eb))
2793
+
2794
+ <a name="0.38.0"></a>
2795
+
2796
+ # [0.38.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.37.0...retail-ui@0.38.0) (2019-02-05)
2797
+
2798
+ ### Bug Fixes
2799
+
2800
+ - **Button:** reset text styles ([0b7eec5](https://github.com/skbkontur/retail-ui/commit/0b7eec5)), closes [#1108](https://github.com/skbkontur/retail-ui/issues/1108)
2801
+ - **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)
2802
+ - **Combobox:** fix non-closing menu with disablePortal prop ([c5b5288](https://github.com/skbkontur/retail-ui/commit/c5b5288))
2803
+ - **DateInput:** remove unecessary wrapper element ([908941e](https://github.com/skbkontur/retail-ui/commit/908941e)), closes [#1119](https://github.com/skbkontur/retail-ui/issues/1119)
2804
+ - **Input:** reset text styles ([b7bd90b](https://github.com/skbkontur/retail-ui/commit/b7bd90b)), closes [#1108](https://github.com/skbkontur/retail-ui/issues/1108)
2805
+ - **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)
2806
+ - **Kladr:** recover TypeScript typings ([948212d](https://github.com/skbkontur/retail-ui/commit/948212d)), closes [#1058](https://github.com/skbkontur/retail-ui/issues/1058)
2807
+ - **RenderLayer:** disable catch events ([#1127](https://github.com/skbkontur/retail-ui/issues/1127)) ([f0a447c](https://github.com/skbkontur/retail-ui/commit/f0a447c))
2808
+ - **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))
2809
+
2810
+ ### Features
2811
+
2812
+ - add flow typings ([9577790](https://github.com/skbkontur/retail-ui/commit/9577790))
2813
+ - **Logotype:** add locale prop ([e39c7f7](https://github.com/skbkontur/retail-ui/commit/e39c7f7))
2814
+
2815
+ <a name="0.37.0"></a>
2816
+
2817
+ # [0.37.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.36.0...retail-ui@0.37.0) (2019-01-30)
2818
+
2819
+ ### Bug Fixes
2820
+
2821
+ - **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)
2822
+
2823
+ ### Features
2824
+
2825
+ - **Input:** поддержка префикса и суффикса ([fe9a1d8](https://github.com/skbkontur/retail-ui/commit/fe9a1d8))
2826
+ - **Input:** флекс-верска инпута ([64deabc](https://github.com/skbkontur/retail-ui/commit/64deabc))
2827
+ - **InputLikeText:** интерфейс пропсов наследуется от InputProps ([b4b7dce](https://github.com/skbkontur/retail-ui/commit/b4b7dce))
2828
+
2829
+ <a name="0.36.0"></a>
2830
+
2831
+ # [0.36.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.35.0...retail-ui@0.36.0) (2019-01-21)
2832
+
2833
+ ### Bug Fixes
2834
+
2835
+ - **Hint:** fix unnecessary re-render ([c9160d4](https://github.com/skbkontur/retail-ui/commit/c9160d4)), closes [#1053](https://github.com/skbkontur/retail-ui/issues/1053)
2836
+ - **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)
2837
+ - **TopBar.Item:** при onlyIcon={true} не рендерятся дети, fix [#1019](https://github.com/skbkontur/retail-ui/issues/1019) ([49f52d2](https://github.com/skbkontur/retail-ui/commit/49f52d2))
2838
+
2839
+ ### Features
2840
+
2841
+ - **Kebab:** add size medium ([9ea2d17](https://github.com/skbkontur/retail-ui/commit/9ea2d17))
2842
+ - **Select:** add public focus method ([8f317e1](https://github.com/skbkontur/retail-ui/commit/8f317e1)), closes [#1063](https://github.com/skbkontur/retail-ui/issues/1063)
2843
+ - **Select:** компонент принимает пропсы onFocus/onBlur ([2d4ba50](https://github.com/skbkontur/retail-ui/commit/2d4ba50))
2844
+ - **SidePage:** add updateLayout method ([7fe9290](https://github.com/skbkontur/retail-ui/commit/7fe9290))
2845
+
2846
+ <a name="0.35.0"></a>
2847
+
2848
+ # [0.35.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.34.0...retail-ui@0.35.0) (2019-01-14)
2849
+
2850
+ ### Bug Fixes
2851
+
2852
+ - **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)
2853
+ - **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)
2854
+ - **ComboBoxOld:** fix click on disabled arrow ([031281b](https://github.com/skbkontur/retail-ui/commit/031281b))
2855
+ - **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)
2856
+ - **Input:** pass formatChars to ReactInputMask ([747badf](https://github.com/skbkontur/retail-ui/commit/747badf))
2857
+ - **Modal:** скрыта нативная рамка фокуса в ff ([f9fecb2](https://github.com/skbkontur/retail-ui/commit/f9fecb2))
2858
+ - **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))
2859
+
2860
+ ### Features
2861
+
2862
+ - **Icon:** remove component ([cd229d3](https://github.com/skbkontur/retail-ui/commit/cd229d3)), closes [#1037](https://github.com/skbkontur/retail-ui/issues/1037)
2863
+ - **retail-ui:** add brand color variables ([072f2f5](https://github.com/skbkontur/retail-ui/commit/072f2f5))
2864
+ - **retail-ui:** add TokenInput component ([402c9bc](https://github.com/skbkontur/retail-ui/commit/402c9bc)), closes [#650](https://github.com/skbkontur/retail-ui/issues/650)
2865
+
2866
+ ### BREAKING CHANGES
2867
+
2868
+ - **Icon:** Component `Icon` has been removed, please use icons from `@skbkontur/react-icons`
2869
+
2870
+ <a name="0.34.0"></a>
2871
+
2872
+ # [0.34.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.33.0...retail-ui@0.34.0) (2018-12-26)
2873
+
2874
+ ### Bug Fixes
2875
+
2876
+ - **Autocomplete:** исправлен многократный вызов `source` ([6a73bc5](https://github.com/skbkontur/retail-ui/commit/6a73bc5)), closes [#937](https://github.com/skbkontur/retail-ui/issues/937)
2877
+ - **ComboBox:** always close on clickOutside ([1715695](https://github.com/skbkontur/retail-ui/commit/1715695))
2878
+ - **ComboBox:** run empty search on input click if closed ([75670b4](https://github.com/skbkontur/retail-ui/commit/75670b4))
2879
+ - **CurrencyInput:** починено поведение фокуса ([ce3e1e9](https://github.com/skbkontur/retail-ui/commit/ce3e1e9)), closes [#932](https://github.com/skbkontur/retail-ui/issues/932)
2880
+ - **DatePicker:** close if picker became disabled ([2b98084](https://github.com/skbkontur/retail-ui/commit/2b98084))
2881
+ - **DatePicker:** do not open on focus if disabled ([03fb67d](https://github.com/skbkontur/retail-ui/commit/03fb67d))
2882
+ - **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)
2883
+ - **DatePickerOld:** can't blur in safari ([194adca](https://github.com/skbkontur/retail-ui/commit/194adca))
2884
+ - **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)
2885
+ - **Fias:** [FiasComboBox] update searchText on value change ([55cb808](https://github.com/skbkontur/retail-ui/commit/55cb808))
2886
+ - **Fias:** disallow search through all parents for Street and lower ([09966ec](https://github.com/skbkontur/retail-ui/commit/09966ec))
2887
+ - **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)
2888
+ - **Fias:** open list on focus after validation (if has items) ([7972960](https://github.com/skbkontur/retail-ui/commit/7972960))
2889
+ - **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)
2890
+ - **Logotype:** always render dropdown container ([dfc26cb](https://github.com/skbkontur/retail-ui/commit/dfc26cb)), closes [#631](https://github.com/skbkontur/retail-ui/issues/631)
2891
+ - **Logotype:** display root as inline element when there is no widget ([b0f316f](https://github.com/skbkontur/retail-ui/commit/b0f316f))
2892
+ - **Logotype:** init widget on props update ([109f562](https://github.com/skbkontur/retail-ui/commit/109f562))
2893
+ - **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)
2894
+ - **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)
2895
+ - **TopBar:** update User's links to cabinet.kontur.ru ([53d1024](https://github.com/skbkontur/retail-ui/commit/53d1024))
2896
+
2897
+ ### Features
2898
+
2899
+ - **Fias:** show "select from list" message on validation if has items ([91dd8ba](https://github.com/skbkontur/retail-ui/commit/91dd8ba))
2900
+ - **Popup:** add `onOpen` prop ([af52795](https://github.com/skbkontur/retail-ui/commit/af52795))
2901
+ - **Spinner:** поддержка ReactNode в caption ([b0ba0cd](https://github.com/skbkontur/retail-ui/commit/b0ba0cd))
2902
+ - **Textarea:** шрифт и отсутпы по гайдам ([ca61be6](https://github.com/skbkontur/retail-ui/commit/ca61be6))
2903
+
2904
+ <a name="0.33.0"></a>
2905
+
2906
+ # [0.33.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.32.1...retail-ui@0.33.0) (2018-12-17)
2907
+
2908
+ ### Bug Fixes
2909
+
2910
+ - **ComboBox:** always keep textValue in sync with value, if not editing ([f9e6531](https://github.com/skbkontur/retail-ui/commit/f9e6531))
2911
+ - **ComboBox:** fix getValueString function ([50accf1](https://github.com/skbkontur/retail-ui/commit/50accf1))
2912
+ - **CustomComboBox:** made some props required ([dd1f90a](https://github.com/skbkontur/retail-ui/commit/dd1f90a))
2913
+ - **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)
2914
+ - **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)
2915
+
2916
+ ### Features
2917
+
2918
+ - **ComboBox:** add search method ([bb3fa2e](https://github.com/skbkontur/retail-ui/commit/bb3fa2e)), closes [#991](https://github.com/skbkontur/retail-ui/issues/991)
2919
+ - **ComboBox:** allow to open combobox with search ([c3b8965](https://github.com/skbkontur/retail-ui/commit/c3b8965))
2920
+
2921
+ <a name="0.32.1"></a>
2922
+
2923
+ ## [0.32.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.32.0...retail-ui@0.32.1) (2018-12-11)
2924
+
2925
+ ### Bug Fixes
2926
+
2927
+ - **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)
2928
+ - **Input:** fix regression around medium font-size ([a900f6e](https://github.com/skbkontur/retail-ui/commit/a900f6e))
2929
+
2930
+ <a name="0.32.0"></a>
2931
+
2932
+ # [0.32.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.31.0...retail-ui@0.32.0) (2018-12-10)
2933
+
2934
+ ### Bug Fixes
2935
+
2936
+ - **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)
2937
+ - **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)
2938
+ - **RenderContainer:** correct store ids in data-attribute ([0dc7089](https://github.com/skbkontur/retail-ui/commit/0dc7089))
2939
+ - **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)
2940
+
2941
+ ### Features
2942
+
2943
+ - **ComboBox:** add open/close methods ([7bbd941](https://github.com/skbkontur/retail-ui/commit/7bbd941)), closes [#957](https://github.com/skbkontur/retail-ui/issues/957)
2944
+ - **Input:** blink on unexpected input ([7162ffa](https://github.com/skbkontur/retail-ui/commit/7162ffa))
2945
+ - **lib:** add functions for getting focusable elements ([6ff8b71](https://github.com/skbkontur/retail-ui/commit/6ff8b71))
2946
+
2947
+ ### Performance Improvements
2948
+
2949
+ - **ComboBox:** optimize focusNextElement method ([f8946f4](https://github.com/skbkontur/retail-ui/commit/f8946f4))
2950
+
2951
+ <a name="0.31.0"></a>
2952
+
2953
+ # [0.31.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.30.0...retail-ui@0.31.0) (2018-12-04)
2954
+
2955
+ ### Bug Fixes
2956
+
2957
+ - **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)
2958
+ - **DatePickerOld:** fix firefox specific bug ([737262d](https://github.com/skbkontur/retail-ui/commit/737262d))
2959
+ - **Modal:** generated docs use helper function as component ([ac0f9f3](https://github.com/skbkontur/retail-ui/commit/ac0f9f3))
2960
+ - **Popup:** fix render child for react@15 ([b2364a6](https://github.com/skbkontur/retail-ui/commit/b2364a6))
2961
+ - **Select:** fix text-overflow color ([4b100bd](https://github.com/skbkontur/retail-ui/commit/4b100bd)), closes [#543](https://github.com/skbkontur/retail-ui/issues/543)
2962
+ - **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)
2963
+
2964
+ ### Features
2965
+
2966
+ - **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)
2967
+ - **Modal:** add alignTop prop ([618b88b](https://github.com/skbkontur/retail-ui/commit/618b88b)), closes [#715](https://github.com/skbkontur/retail-ui/issues/715)
2968
+
2969
+ <a name="0.30.0"></a>
2970
+
2971
+ # [0.30.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.29.0...retail-ui@0.30.0) (2018-11-20)
2972
+
2973
+ ### Bug Fixes
2974
+
2975
+ - **ComboBox:** fix blinking test by mocking lodash.debounce ([fef6e3e](https://github.com/skbkontur/retail-ui/commit/fef6e3e))
2976
+ - **ComboBox:** prevent searching items after blur ([0a6153d](https://github.com/skbkontur/retail-ui/commit/0a6153d))
2977
+ - **ComboBox:** show editing input text on focus instead of value ([6e0e8d4](https://github.com/skbkontur/retail-ui/commit/6e0e8d4))
2978
+ - **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)
2979
+ - **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)
2980
+ - **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)
2981
+
2982
+ ### Features
2983
+
2984
+ - **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)
2985
+ - **Hint:** add `useWrapper` prop ([142f684](https://github.com/skbkontur/retail-ui/commit/142f684))
2986
+ - **Modal:** опциональное залипание шапки и футера ([#911](https://github.com/skbkontur/retail-ui/issues/911)) ([1e763cf](https://github.com/skbkontur/retail-ui/commit/1e763cf))
2987
+ - **Popup:** allow use react component as anchorElement ([7b0b373](https://github.com/skbkontur/retail-ui/commit/7b0b373))
2988
+ - **Tooltip:** add `useWrapper` prop ([71d803a](https://github.com/skbkontur/retail-ui/commit/71d803a)), closes [#721](https://github.com/skbkontur/retail-ui/issues/721)
2989
+
2990
+ <a name="0.29.0"></a>
2991
+
2992
+ # [0.29.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.28.0...retail-ui@0.29.0) (2018-11-13)
2993
+
2994
+ ### Bug Fixes
2995
+
2996
+ - **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))
2997
+
2998
+ ### Features
2999
+
3000
+ - **Button:** Новые стили для кнопок-стрелок ([#839](https://github.com/skbkontur/retail-ui/issues/839)) ([bcfe9c9](https://github.com/skbkontur/retail-ui/commit/bcfe9c9))
3001
+ - **ComboBox:** allow use hover state in renderItem ([eacebc3](https://github.com/skbkontur/retail-ui/commit/eacebc3))
3002
+ - **Fias:** новый компонент ФИАС, [#779](https://github.com/skbkontur/retail-ui/issues/779) ([74e7e04](https://github.com/skbkontur/retail-ui/commit/74e7e04))
3003
+ - **FxInput:** add public method blur ([b4e167d](https://github.com/skbkontur/retail-ui/commit/b4e167d)), closes [#888](https://github.com/skbkontur/retail-ui/issues/888)
3004
+
3005
+ ### BREAKING CHANGES
3006
+
3007
+ - **ComboBox:** second argument of renderItem not used and replaced by MenuItemState
3008
+
3009
+ <a name="0.28.0"></a>
3010
+
3011
+ # [0.28.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.27.0...retail-ui@0.28.0) (2018-11-08)
3012
+
3013
+ ### Bug Fixes
3014
+
3015
+ - **CurrencyInput:** починено поведение плэйсхолдера ([84d2486](https://github.com/skbkontur/retail-ui/commit/84d2486))
3016
+ - **FxInput:** mainInGroup works again ([9bfca93](https://github.com/skbkontur/retail-ui/commit/9bfca93))
3017
+ - **HBVS:** only root component can update styles ([e12d32f](https://github.com/skbkontur/retail-ui/commit/e12d32f))
3018
+ - **Hint:** remove inline-block style [#829](https://github.com/skbkontur/retail-ui/issues/829) ([c9fbdfb](https://github.com/skbkontur/retail-ui/commit/c9fbdfb))
3019
+ - **Popup:** make disableAnimations working again ([c85db13](https://github.com/skbkontur/retail-ui/commit/c85db13))
3020
+ - **SidePage:** work with react@15 ([9e811bd](https://github.com/skbkontur/retail-ui/commit/9e811bd))
3021
+ - **Textarea:** поправлен интерфейс и пропсов, исправлена пара багов ([715d162](https://github.com/skbkontur/retail-ui/commit/715d162))
3022
+ - **Tooltip:** click on svg in tooltip [#877](https://github.com/skbkontur/retail-ui/issues/877) ([3fa07e7](https://github.com/skbkontur/retail-ui/commit/3fa07e7))
3023
+
3024
+ ### Features
3025
+
3026
+ - **Checkbox:** новое состояние WIP ([b443d5d](https://github.com/skbkontur/retail-ui/commit/b443d5d))
3027
+ - **Hint:** add disableAnimations prop ([cd548a6](https://github.com/skbkontur/retail-ui/commit/cd548a6))
3028
+ - **Paging:** global keydown listener ([b10df5d](https://github.com/skbkontur/retail-ui/commit/b10df5d))
3029
+ - **Paging:** show navigation hints by condition ([232a5c2](https://github.com/skbkontur/retail-ui/commit/232a5c2))
3030
+ - **PopupMenu:** add disableAnimation prop in PopupMenu-based components ([6602986](https://github.com/skbkontur/retail-ui/commit/6602986))
3031
+
3032
+ <a name="0.27.0"></a>
3033
+
3034
+ # [0.27.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.26.1...retail-ui@0.27.0) (2018-10-29)
3035
+
3036
+ ### Bug Fixes
3037
+
3038
+ - **Button:** fix flat styles ([5ba5980](https://github.com/skbkontur/retail-ui/commit/5ba5980)), closes [#856](https://github.com/skbkontur/retail-ui/issues/856)
3039
+ - **ComboBox:** public refs input/menu/inputLikeText ([f28b418](https://github.com/skbkontur/retail-ui/commit/f28b418))
3040
+ - **FxInput:** fix warning from 'mainInGroup' prop ([2ad6e4e](https://github.com/skbkontur/retail-ui/commit/2ad6e4e))
3041
+ - **Input:** filter props for HTMLInputElement, fix [#831](https://github.com/skbkontur/retail-ui/issues/831) ([fa94219](https://github.com/skbkontur/retail-ui/commit/fa94219))
3042
+ - **Input:** filter props for HTMLInputElement, fix [#831](https://github.com/skbkontur/retail-ui/issues/831) ([b0f04af](https://github.com/skbkontur/retail-ui/commit/b0f04af))
3043
+ - **Input:** input icons inside modal header [#861](https://github.com/skbkontur/retail-ui/issues/861) ([b69f0ab](https://github.com/skbkontur/retail-ui/commit/b69f0ab))
3044
+ - **Input:** update typings ([34adf0a](https://github.com/skbkontur/retail-ui/commit/34adf0a)), closes [#845](https://github.com/skbkontur/retail-ui/issues/845)
3045
+ - **Link:** fix types, fix [#841](https://github.com/skbkontur/retail-ui/issues/841) ([4a1e2b8](https://github.com/skbkontur/retail-ui/commit/4a1e2b8))
3046
+ - **Modal:** fix after Sticky hotfix ([b354149](https://github.com/skbkontur/retail-ui/commit/b354149))
3047
+ - **Modal:** not adaptive ([96178bd](https://github.com/skbkontur/retail-ui/commit/96178bd)), closes [#847](https://github.com/skbkontur/retail-ui/issues/847)
3048
+ - **SidePage:** fix blockBackground=false ([4a78d94](https://github.com/skbkontur/retail-ui/commit/4a78d94))
3049
+ - **SidePage:** fix blockBackground=false ([15a1763](https://github.com/skbkontur/retail-ui/commit/15a1763))
3050
+ - **Sticky:** вернули старое поведение с бесконечной рекурсией ([c04f3f1](https://github.com/skbkontur/retail-ui/commit/c04f3f1))
3051
+ - **Sticky:** вернули старое поведение с бесконечной рекурсией ([7cf7ebc](https://github.com/skbkontur/retail-ui/commit/7cf7ebc))
3052
+ - **Sticky:** fix default value of allowChildWithMargins ([3e5856e](https://github.com/skbkontur/retail-ui/commit/3e5856e))
3053
+ - **Sticky:** fix default value of allowChildWithMargins ([0ff54c6](https://github.com/skbkontur/retail-ui/commit/0ff54c6))
3054
+
3055
+ ### Features
3056
+
3057
+ - **CustomComboBox:** добавил ref для InputLikeText ([c5cd653](https://github.com/skbkontur/retail-ui/commit/c5cd653))
3058
+ - **Tooltip:** новое значение `trigger` ([391f715](https://github.com/skbkontur/retail-ui/commit/391f715)), closes [#818](https://github.com/skbkontur/retail-ui/issues/818)
3059
+
3060
+ <a name="0.26.3"></a>
3061
+
3062
+ ## [0.26.3](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.26.1...retail-ui@0.26.3) (2018-10-25)
3063
+
3064
+ ### Bug Fixes
3065
+
3066
+ - **Modal:** Modal.Footer и Modal.Header ипользуют Sticky с `allowChildWithMargins === true` ([8fee4c1](https://github.com/skbkontur/retail-ui/commit/8fee4c1bd5133e5b7419cb8951c08b46605a3985))
3067
+
3068
+ <a name="0.26.2"></a>
3069
+
3070
+ ## [0.26.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.26.0...retail-ui@0.26.2) (2018-10-25)
3071
+
3072
+ ### Bug Fixes
3073
+
3074
+ - **Sticky:** fix default value of allowChildWithMargins ([fffbea0](https://github.com/skbkontur/retail-ui/commit/fffbea0))
3075
+ - **Sticky:** вернули старое поведение с бесконечной рекурсией ([ebbbeec](https://github.com/skbkontur/retail-ui/commit/ebbbeec))
3076
+
3077
+ <a name="0.26.1"></a>
3078
+
3079
+ ## [0.26.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.26.0...retail-ui@0.26.1) (2018-10-24)
3080
+
3081
+ **Note:** Version bump only for package retail-ui
3082
+
3083
+ <a name="0.26.0"></a>
3084
+
3085
+ # [0.26.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.25.0...retail-ui@0.26.0) (2018-10-23)
3086
+
3087
+ ### Bug Fixes
3088
+
3089
+ - **Button:** fix subpixel bug in chrome ([a757350](https://github.com/skbkontur/retail-ui/commit/a757350))
3090
+ - **FxInput:** fix warning from 'mainInGroup' prop ([d24390c](https://github.com/skbkontur/retail-ui/commit/d24390c))
3091
+ - **HBVS:** окончательно отремонтирован ([c8df8a5](https://github.com/skbkontur/retail-ui/commit/c8df8a5))
3092
+ - **Modal:** fix modalClickTrap height, close [#810](https://github.com/skbkontur/retail-ui/issues/810) ([01497b5](https://github.com/skbkontur/retail-ui/commit/01497b5))
3093
+
3094
+ ### Features
3095
+
3096
+ - **combobox:** accept onUnexpectedInput handler return value ([e6c1d37](https://github.com/skbkontur/retail-ui/commit/e6c1d37))
3097
+ - **Icon:** use svg icons ([0690828](https://github.com/skbkontur/retail-ui/commit/0690828))
3098
+
3099
+ <a name="0.25.0"></a>
3100
+
3101
+ # [0.25.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.24.1...retail-ui@0.25.0) (2018-10-15)
3102
+
3103
+ ### Bug Fixes
3104
+
3105
+ - **ComboBox:** onChange при потере фокуса ([c3353b0](https://github.com/skbkontur/retail-ui/commit/c3353b0)), closes [#680](https://github.com/skbkontur/retail-ui/issues/680)
3106
+ - **HBVS:** пересчет размеров окна в каждом didUpdate, Closed [#717](https://github.com/skbkontur/retail-ui/issues/717) ([a162a03](https://github.com/skbkontur/retail-ui/commit/a162a03))
3107
+ - **Input:** fix console.log warning in group ([2bd4287](https://github.com/skbkontur/retail-ui/commit/2bd4287))
3108
+ - **Input:** повыщенный z-index при фокусе ([cf7f423](https://github.com/skbkontur/retail-ui/commit/cf7f423))
3109
+ - **Kebab:** react warning of unitless number ([66c6f21](https://github.com/skbkontur/retail-ui/commit/66c6f21))
3110
+ - **Modal:** fix click-handler ([cf84fd9](https://github.com/skbkontur/retail-ui/commit/cf84fd9)), closes [#757](https://github.com/skbkontur/retail-ui/issues/757)
3111
+ - **Modal:** focusLock отключен в ie, fix [#784](https://github.com/skbkontur/retail-ui/issues/784) ([839c7fa](https://github.com/skbkontur/retail-ui/commit/839c7fa))
3112
+ - **Popup:** change min-width to fix [#799](https://github.com/skbkontur/retail-ui/issues/799) ([4fb60a6](https://github.com/skbkontur/retail-ui/commit/4fb60a6))
3113
+ - **ResizeDetector:** удален `removeEventListener` :green_apple: ([ab586f7](https://github.com/skbkontur/retail-ui/commit/ab586f7))
3114
+ - **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)
3115
+
3116
+ ### Features
3117
+
3118
+ - **Calendar:** больше переменных в стилях ([212bd1f](https://github.com/skbkontur/retail-ui/commit/212bd1f)), closes [#755](https://github.com/skbkontur/retail-ui/issues/755)
3119
+ - **Group:** added Group tests and Stories ([a669d7f](https://github.com/skbkontur/retail-ui/commit/a669d7f))
3120
+ - **Input:** выделение значения ([1b68c7a](https://github.com/skbkontur/retail-ui/commit/1b68c7a))
3121
+ - **Textarea:** выделение значения ([8282b37](https://github.com/skbkontur/retail-ui/commit/8282b37))
3122
+
3123
+ <a name="0.24.1"></a>
3124
+
3125
+ ## [0.24.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.24.0...retail-ui@0.24.1) (2018-10-10)
3126
+
3127
+ ### Bug Fixes
3128
+
3129
+ - **ComboBox:** PureComponent заменен на shouldComponentUpdate ([38d34fc](https://github.com/skbkontur/retail-ui/commit/38d34fc))
3130
+ - **SidePage:** fix zIndex of footer, fixed [#714](https://github.com/skbkontur/retail-ui/issues/714) ([63a2b5d](https://github.com/skbkontur/retail-ui/commit/63a2b5d))
3131
+
3132
+ <a name="0.24.0"></a>
3133
+
3134
+ # [0.24.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.23.3...retail-ui@0.24.0) (2018-10-08)
3135
+
3136
+ ### Bug Fixes
3137
+
3138
+ - **Button:** fix type link in flat mode ([dc1d505](https://github.com/skbkontur/retail-ui/commit/dc1d505))
3139
+ - **ComboBox:** изменение значения после unexpectedInput ([c5379be](https://github.com/skbkontur/retail-ui/commit/c5379be)), closes [#730](https://github.com/skbkontur/retail-ui/issues/730)
3140
+ - **Hint:** pin color for ie11 ([7361e20](https://github.com/skbkontur/retail-ui/commit/7361e20))
3141
+ - **Input:** fix flat styles ([cbb4e55](https://github.com/skbkontur/retail-ui/commit/cbb4e55)), closes [#731](https://github.com/skbkontur/retail-ui/issues/731)
3142
+ - **Tooltip:** allow customize color ([26af1d5](https://github.com/skbkontur/retail-ui/commit/26af1d5))
3143
+
3144
+ ### Features
3145
+
3146
+ - **ComboBox:** add 'reset' method ([4ff05fa](https://github.com/skbkontur/retail-ui/commit/4ff05fa))
3147
+ - 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)
3148
+
3149
+ <a name="0.23.3"></a>
3150
+
3151
+ ## [0.23.3](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.23.2...retail-ui@0.23.3) (2018-09-27)
3152
+
3153
+ **Note:** Version bump only for package retail-ui
3154
+
3155
+ <a name="0.23.2"></a>
3156
+
3157
+ ## [0.23.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.23.1...retail-ui@0.23.2) (2018-09-26)
3158
+
3159
+ ### Bug Fixes
3160
+
3161
+ - **Textarea:** fix % width ([d4dab33](https://github.com/skbkontur/retail-ui/commit/d4dab33))
3162
+
3163
+ <a name="0.23.1"></a>
3164
+
3165
+ ## [0.23.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.23.0...retail-ui@0.23.1) (2018-09-24)
3166
+
3167
+ ### Bug Fixes
3168
+
3169
+ - **Hint:** render method ([585d0b8](https://github.com/skbkontur/retail-ui/commit/585d0b8))
3170
+ - **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))
3171
+ - **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))
3172
+ - **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))
3173
+
3174
+ <a name="0.23.0"></a>
3175
+
3176
+ # [0.23.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.22.0...retail-ui@0.23.0) (2018-09-17)
3177
+
3178
+ ### Bug Fixes
3179
+
3180
+ - **Button:** removed z-index ([02ce734](https://github.com/skbkontur/retail-ui/commit/02ce734))
3181
+ - **ComboBox:** clear textValue ([c66342c](https://github.com/skbkontur/retail-ui/commit/c66342c))
3182
+ - **ComboBox:** don't focus if props.value changed with error ([1ce1235](https://github.com/skbkontur/retail-ui/commit/1ce1235))
3183
+ - **ComboBox:** test replace `is` to `exists` ([0c6247a](https://github.com/skbkontur/retail-ui/commit/0c6247a))
3184
+ - **CurrencyInput:** missing blur method ([60edcdc](https://github.com/skbkontur/retail-ui/commit/60edcdc))
3185
+ - **DatePicker:** fixed icon line-height, close [#493](https://github.com/skbkontur/retail-ui/issues/493) ([3c990e0](https://github.com/skbkontur/retail-ui/commit/3c990e0))
3186
+ - **HBVS:** восстановление скролла контейнера при unmount ([faebf8f](https://github.com/skbkontur/retail-ui/commit/faebf8f))
3187
+ - **Input:** remove `z-index` from styles ([1abcc3e](https://github.com/skbkontur/retail-ui/commit/1abcc3e))
3188
+ - **MenuItem:** fix bounds ([34f879f](https://github.com/skbkontur/retail-ui/commit/34f879f)), closes [#662](https://github.com/skbkontur/retail-ui/issues/662)
3189
+ - **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)
3190
+ - **OldComboBox:** use placeholder color from variables ([3ac585b](https://github.com/skbkontur/retail-ui/commit/3ac585b))
3191
+ - **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)
3192
+ - **Textarea:** fix adapter ([08e5104](https://github.com/skbkontur/retail-ui/commit/08e5104))
3193
+ - **Toggle:** controlled/uncontrolled ([d0a7df1](https://github.com/skbkontur/retail-ui/commit/d0a7df1)), closes [#699](https://github.com/skbkontur/retail-ui/issues/699)
3194
+ - **Toggle:** удален console.log, fixed [#689](https://github.com/skbkontur/retail-ui/issues/689) ([7169baf](https://github.com/skbkontur/retail-ui/commit/7169baf))
3195
+ - **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)
3196
+ - **TopBar:** дропдауны на основе Popup ([c38f520](https://github.com/skbkontur/retail-ui/commit/c38f520)), closes [#655](https://github.com/skbkontur/retail-ui/issues/655)
3197
+
3198
+ ### Features
3199
+
3200
+ - **Modal:** `425px` теперь живет в `variables.less` ([21b7192](https://github.com/skbkontur/retail-ui/commit/21b7192))
3201
+ - **PopupMenu:** функция в caption ([7dbea4e](https://github.com/skbkontur/retail-ui/commit/7dbea4e))
3202
+ - **ResizeDetecter:** компонент для отслеживания ресайза элемента ([d9fc862](https://github.com/skbkontur/retail-ui/commit/d9fc862))
3203
+
3204
+ <a name="0.22.0"></a>
3205
+
3206
+ # [0.22.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.21.2...retail-ui@0.22.0) (2018-08-21)
3207
+
3208
+ ### Bug Fixes
3209
+
3210
+ - **Kebab:** восстановление фокуса на кнопке после закрытия ([b3a4002](https://github.com/skbkontur/retail-ui/commit/b3a4002))
3211
+
3212
+ ### Features
3213
+
3214
+ - **Button:** состояние error у button-link ([eb8d3ac](https://github.com/skbkontur/retail-ui/commit/eb8d3ac))
3215
+ - **Toggle:** переделан компонент ([1a93003](https://github.com/skbkontur/retail-ui/commit/1a93003))
3216
+
3217
+ <a name="0.21.2"></a>
3218
+
3219
+ ## [0.21.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.21.0...retail-ui@0.21.2) (2018-08-17)
3220
+
3221
+ ### Bug Fixes
3222
+
3223
+ - **retail-ui:** fix confused publishing ([4d3051b](https://github.com/skbkontur/retail-ui/commit/4d3051b))
3224
+
3225
+ <a name="0.21.0"></a>
3226
+
3227
+ # [0.21.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.20.2...retail-ui@0.21.0) (2018-08-16)
3228
+
3229
+ ### Bug Fixes
3230
+
3231
+ - **Combobox:** disabled в плоской теме вновь работает ([c083b34](https://github.com/skbkontur/retail-ui/commit/c083b34)), closes [#660](https://github.com/skbkontur/retail-ui/issues/660)
3232
+ - **Hint:** позиционирование с блочным элементом ([6430b6f](https://github.com/skbkontur/retail-ui/commit/6430b6f)), closes [#637](https://github.com/skbkontur/retail-ui/issues/637)
3233
+
3234
+ ### Features
3235
+
3236
+ - **retail-ui Calendar:** открывается ближайший доступный месяц ([a8e4858](https://github.com/skbkontur/retail-ui/commit/a8e4858)), closes [#658](https://github.com/skbkontur/retail-ui/issues/658)
3237
+
3238
+ <a name="0.20.2"></a>
3239
+
3240
+ ## [0.20.2](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.20.1...retail-ui@0.20.2) (2018-08-06)
3241
+
3242
+ ### Bug Fixes
3243
+
3244
+ - **datepicker:** disable values which are not between min/max date ([1a2a507](https://github.com/skbkontur/retail-ui/commit/1a2a507))
3245
+ - **datepicker:** select works correct with january ([e2f3eac](https://github.com/skbkontur/retail-ui/commit/e2f3eac))
3246
+ - **datepicker:** select works correct with january, added test ([682c35a](https://github.com/skbkontur/retail-ui/commit/682c35a))
3247
+ - **Input:** flat-стили по гайдам ([1f51a19](https://github.com/skbkontur/retail-ui/commit/1f51a19))
3248
+ - **Input:** стили по гайдам ([da6c464](https://github.com/skbkontur/retail-ui/commit/da6c464)), closes [#627](https://github.com/skbkontur/retail-ui/issues/627)
3249
+ - **tabs:** added default export ([aad57fd](https://github.com/skbkontur/retail-ui/commit/aad57fd))
3250
+ - **Textarea:** flat-стили ([829874d](https://github.com/skbkontur/retail-ui/commit/829874d))
3251
+ - **tooltip:** dont show tail if render returns null ([dc82b86](https://github.com/skbkontur/retail-ui/commit/dc82b86))
3252
+
3253
+ <a name="0.20.1"></a>
3254
+
3255
+ ## [0.20.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.20.0...retail-ui@0.20.1) (2018-07-31)
3256
+
3257
+ ### Bug Fixes
3258
+
3259
+ - **Modal:** фокус внутри Modal ([59e3d82](https://github.com/skbkontur/retail-ui/commit/59e3d82)), closes [#645](https://github.com/skbkontur/retail-ui/issues/645)
3260
+
3261
+ <a name="0.20.0"></a>
3262
+
3263
+ # [0.20.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.19.1...retail-ui@0.20.0) (2018-07-26)
3264
+
3265
+ ### Bug Fixes
3266
+
3267
+ - **Calendar:** Починен скролл около последнего доступного месяца ([aa0d6a7](https://github.com/skbkontur/retail-ui/commit/aa0d6a7)), closes [#619](https://github.com/skbkontur/retail-ui/issues/619)
3268
+ - **Dropdown:** починен интерфейс пропсов ([ec37a07](https://github.com/skbkontur/retail-ui/commit/ec37a07)), closes [#633](https://github.com/skbkontur/retail-ui/issues/633)
3269
+ - **Hint:** fix [#624](https://github.com/skbkontur/retail-ui/issues/624) ([64fa5c5](https://github.com/skbkontur/retail-ui/commit/64fa5c5))
3270
+ - **InternalMenu:** исправлены тайпинги ([dc6e9cc](https://github.com/skbkontur/retail-ui/commit/dc6e9cc))
3271
+ - **Loader:** position after window resize ([ed7884d](https://github.com/skbkontur/retail-ui/commit/ed7884d))
3272
+ - **logotype:** fixed widget button in safari ([eeecacd](https://github.com/skbkontur/retail-ui/commit/eeecacd))
3273
+ - **Menu:** исправлены тайпинги ([8e79032](https://github.com/skbkontur/retail-ui/commit/8e79032))
3274
+ - **Modal:** fix top padding if no Header ([3c8d696](https://github.com/skbkontur/retail-ui/commit/3c8d696))
3275
+ - **Popup:** fix \_updateLocation method ([b14740d](https://github.com/skbkontur/retail-ui/commit/b14740d))
3276
+ - **textarea:** fixes [#564](https://github.com/skbkontur/retail-ui/issues/564) ([cb0cf4f](https://github.com/skbkontur/retail-ui/commit/cb0cf4f))
3277
+ - **textarea:** fixes [#564](https://github.com/skbkontur/retail-ui/issues/564) ([b265343](https://github.com/skbkontur/retail-ui/commit/b265343))
3278
+
3279
+ ### Features
3280
+
3281
+ - **CurrencyInput:** добавлен публичный метод focus ([5454a60](https://github.com/skbkontur/retail-ui/commit/5454a60))
3282
+ - **FxInput:** возможность получить инстанс инпута через innerProp ([52b3072](https://github.com/skbkontur/retail-ui/commit/52b3072))
3283
+ - **FxInput:** публичный метод focus ([25ebb0d](https://github.com/skbkontur/retail-ui/commit/25ebb0d))
3284
+ - **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)
3285
+ - **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)
3286
+ - **MenuItem:** принимает Link из react-router-dom ([eab8056](https://github.com/skbkontur/retail-ui/commit/eab8056)), closes [#602](https://github.com/skbkontur/retail-ui/issues/602)
3287
+ - **Modal:** фокус внутри модалки ([201cb8e](https://github.com/skbkontur/retail-ui/commit/201cb8e))
3288
+ - **PopupMenu:** закрытие попапа ([97f399e](https://github.com/skbkontur/retail-ui/commit/97f399e))
3289
+
3290
+ ### Reverts
3291
+
3292
+ - refactor(autocomplete): ChangeEvent in onChange ([4a01ff4](https://github.com/skbkontur/retail-ui/commit/4a01ff4))
3293
+
3294
+ <a name="0.19.1"></a>
3295
+
3296
+ ## [0.19.1](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.19.0...retail-ui@0.19.1) (2018-07-19)
3297
+
3298
+ ### Bug Fixes
3299
+
3300
+ - **ComboBox:** fixed onUnexpectedInput return type ([8ed6f1c](https://github.com/skbkontur/retail-ui/commit/8ed6f1c))
3301
+ - **Modal:** fixed always enabled mobile styles ([741a719](https://github.com/skbkontur/retail-ui/commit/741a719))
3302
+ - **RadioGroup:** value is no longer accepts only primitive ([a283d47](https://github.com/skbkontur/retail-ui/commit/a283d47))
3303
+
3304
+ <a name="0.19.0"></a>
3305
+
3306
+ # [0.19.0](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.18.14...retail-ui@0.19.0) (2018-07-19)
3307
+
3308
+ ### Bug Fixes
3309
+
3310
+ - **adapters:** fixed all adapters ([9d8252b](https://github.com/skbkontur/retail-ui/commit/9d8252b))
3311
+ - **Button:** change Button border-radius ([bfa5db8](https://github.com/skbkontur/retail-ui/commit/bfa5db8)), closes [#546](https://github.com/skbkontur/retail-ui/issues/546)
3312
+ - **Calendar:** пофикшен скролл к максимальному месяцу ([326a2cc](https://github.com/skbkontur/retail-ui/commit/326a2cc))
3313
+ - **datepicker:** correct keyboard and mouse events in date select ([b8694fb](https://github.com/skbkontur/retail-ui/commit/b8694fb))
3314
+ - **datepicker:** removed add-event-listener, onmouseleave handler ([aaf620f](https://github.com/skbkontur/retail-ui/commit/aaf620f))
3315
+ - **Hint:** принудительный перенос длинных слов ([7d5e171](https://github.com/skbkontur/retail-ui/commit/7d5e171)), closes [#596](https://github.com/skbkontur/retail-ui/issues/596)
3316
+ - **scripts\_\_build:** fixed wrong import ([da2d951](https://github.com/skbkontur/retail-ui/commit/da2d951))
3317
+ - **scripts\_\_build:** исправлено неверное определение TS файлов ([efd0032](https://github.com/skbkontur/retail-ui/commit/efd0032))
3318
+ - **Tab:** исправлено попадание лишнего пропа в разметку ([4c03b09](https://github.com/skbkontur/retail-ui/commit/4c03b09)), closes [#605](https://github.com/skbkontur/retail-ui/issues/605)
3319
+
3320
+ ### Features
3321
+
3322
+ - **modal:** адаптивная модалка ([bf76868](https://github.com/skbkontur/retail-ui/commit/bf76868))
3323
+
3324
+ <a name="0.18.14"></a>
3325
+
3326
+ ## [0.18.14](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.18.13...retail-ui@0.18.14) (2018-07-15)
3327
+
3328
+ ### Bug Fixes
3329
+
3330
+ - **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)
3331
+ - loader behavior with long content ([a6a14cc](https://github.com/skbkontur/retail-ui/commit/a6a14cc))
3332
+ - **combobox:** call onBlur if menu is opened ([c5ebde4](https://github.com/skbkontur/retail-ui/commit/c5ebde4))
3333
+ - **date-picker:** fix [#595](https://github.com/skbkontur/retail-ui/issues/595) ([6880cd6](https://github.com/skbkontur/retail-ui/commit/6880cd6))
3334
+ - **date-picker-old:** returned missed ts-declaration files ([97c8235](https://github.com/skbkontur/retail-ui/commit/97c8235))
3335
+ - **datepicker-old:** first date changing shows correctly ([f6d2a10](https://github.com/skbkontur/retail-ui/commit/f6d2a10))
3336
+ - **input:** fixed placeholder polyfill in flat ([e65ad6c](https://github.com/skbkontur/retail-ui/commit/e65ad6c))
3337
+ - **link:** fixed props ts-type ([0996fc4](https://github.com/skbkontur/retail-ui/commit/0996fc4))
3338
+ - **loader:** added Nullable type reference ([20c1da3](https://github.com/skbkontur/retail-ui/commit/20c1da3))
3339
+ - **loader:** codestyle ([fe57238](https://github.com/skbkontur/retail-ui/commit/fe57238))
3340
+ - **loader:** component and suffix are no longer required props ([5b9f625](https://github.com/skbkontur/retail-ui/commit/5b9f625))
3341
+ - **loader:** fixed generating `import` types ([696ec64](https://github.com/skbkontur/retail-ui/commit/696ec64))
3342
+ - **loader:** horizontal scroll content ([03dfdc8](https://github.com/skbkontur/retail-ui/commit/03dfdc8))
3343
+ - **logotype:** component is no longer required prop ([520c2d2](https://github.com/skbkontur/retail-ui/commit/520c2d2))
3344
+ - **password-input:** fixed generating `import` types ([d05f88e](https://github.com/skbkontur/retail-ui/commit/d05f88e))
3345
+ - **select:** better definitions ([489f1cb](https://github.com/skbkontur/retail-ui/commit/489f1cb))
3346
+ - **tab:** support [@types](https://github.com/types)/react@15 definitions ([5b120bb](https://github.com/skbkontur/retail-ui/commit/5b120bb))
3347
+ - **top-bar:** better definitions ([e7fcb6e](https://github.com/skbkontur/retail-ui/commit/e7fcb6e))
3348
+
3349
+ <a name="0.18.13"></a>
3350
+
3351
+ ## [0.18.13](https://github.com/skbkontur/retail-ui/compare/retail-ui@0.18.12...retail-ui@0.18.13) (2018-07-09)
3352
+
3353
+ ### Bug Fixes
3354
+
3355
+ - **ts-definitions:** replaced global types with local types ([bbda3c0](https://github.com/skbkontur/retail-ui/commit/bbda3c0))
3356
+
3357
+ <a name="0.18.12"></a>
3358
+
3359
+ ## 0.18.12 (2018-07-09)
3360
+
3361
+ ### Bug Fixes
3362
+
3363
+ - **lookup:** allow correctly work with recompose ([80ebb97](https://github.com/skbkontur/retail-ui/commit/80ebb97))
3364
+ - **modal:** fixed paddings and close button ([e55e763](https://github.com/skbkontur/retail-ui/commit/e55e763))
3365
+ - **popup:** fixed recursive updates for older react ([9309748](https://github.com/skbkontur/retail-ui/commit/9309748))
3366
+ - **сurrency-input:** починка ввода циферок на андроиде и под selenium ([d3f0286](https://github.com/skbkontur/retail-ui/commit/d3f0286))