@jetbrains/ring-ui-built 6.0.5-beta.0 → 6.0.5

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 (214) hide show
  1. package/README.md +10 -6
  2. package/components/_helpers/_rollupPluginBabelHelpers.js +23 -26
  3. package/components/_helpers/anchor.js +1 -1
  4. package/components/_helpers/badge.js +1 -1
  5. package/components/_helpers/button__classes.js +1 -1
  6. package/components/_helpers/caption.js +2 -2
  7. package/components/_helpers/card.js +2 -2
  8. package/components/_helpers/date-picker.js +1 -1
  9. package/components/_helpers/dialog__body-scroll-preventer.js +1 -1
  10. package/components/_helpers/grid.js +1 -1
  11. package/components/_helpers/header.js +1 -1
  12. package/components/_helpers/icon__svg.js +2 -2
  13. package/components/_helpers/input.js +4 -4
  14. package/components/_helpers/island.js +1 -1
  15. package/components/_helpers/list.js +1 -1
  16. package/components/_helpers/query-assist__suggestions.js +2 -2
  17. package/components/_helpers/select__filter.js +2 -2
  18. package/components/_helpers/services-link.js +2 -2
  19. package/components/_helpers/sidebar.js +2 -2
  20. package/components/_helpers/tab-link.js +2 -2
  21. package/components/_helpers/table.js +1 -1
  22. package/components/_helpers/theme.js +1 -1
  23. package/components/_helpers/title.js +2 -2
  24. package/components/alert/alert.js +4 -2
  25. package/components/alert/container.js +2 -2
  26. package/components/alert-service/alert-service.js +3 -1
  27. package/components/analytics/analytics.js +1 -1
  28. package/components/analytics/analytics__custom-plugin.js +2 -3
  29. package/components/auth/auth.js +4 -1
  30. package/components/auth/auth__core.js +39 -36
  31. package/components/auth/background-flow.js +4 -3
  32. package/components/auth/down-notification.js +4 -2
  33. package/components/auth/iframe-flow.js +8 -4
  34. package/components/auth/request-builder.d.ts +1 -0
  35. package/components/auth/request-builder.js +5 -2
  36. package/components/auth/response-parser.js +2 -1
  37. package/components/auth/storage.js +12 -5
  38. package/components/auth/token-validator.js +6 -4
  39. package/components/auth/window-flow.js +5 -4
  40. package/components/auth-dialog/auth-dialog.js +4 -2
  41. package/components/auth-dialog-service/auth-dialog-service.js +3 -1
  42. package/components/avatar/avatar.js +4 -1
  43. package/components/avatar/fallback-avatar.js +2 -1
  44. package/components/badge/badge.js +1 -1
  45. package/components/button/button.js +1 -1
  46. package/components/button-group/button-group.js +1 -1
  47. package/components/button-set/button-set.js +2 -2
  48. package/components/button-toolbar/button-toolbar.js +2 -2
  49. package/components/caret/caret.js +6 -5
  50. package/components/checkbox/checkbox.js +2 -2
  51. package/components/clipboard/clipboard-fallback.js +3 -3
  52. package/components/clipboard/clipboard.js +3 -1
  53. package/components/code/code.d.ts +1 -0
  54. package/components/code/code.js +2 -3
  55. package/components/collapse/collapse-content.d.ts +11 -0
  56. package/components/collapse/collapse-content.js +121 -0
  57. package/components/collapse/collapse-context.d.ts +10 -0
  58. package/components/collapse/collapse-context.js +12 -0
  59. package/components/collapse/collapse-control.d.ts +11 -0
  60. package/components/collapse/collapse-control.js +38 -0
  61. package/components/collapse/collapse.d.ts +12 -0
  62. package/components/collapse/collapse.js +41 -0
  63. package/components/collapse/consts.d.ts +4 -0
  64. package/components/collapse/consts.js +6 -0
  65. package/components/collapse/utils.d.ts +1 -0
  66. package/components/collapse/utils.js +5 -0
  67. package/components/confirm/confirm.js +4 -2
  68. package/components/confirm-service/confirm-service.js +3 -1
  69. package/components/content-layout/content-layout.js +1 -1
  70. package/components/contenteditable/contenteditable.js +1 -1
  71. package/components/control-label/control-label.js +1 -1
  72. package/components/data-list/data-list.js +8 -3
  73. package/components/data-list/item.js +2 -1
  74. package/components/data-list/selection.js +3 -1
  75. package/components/date-picker/consts.js +1 -1
  76. package/components/date-picker/date-input.js +1 -1
  77. package/components/date-picker/date-picker.js +11 -9
  78. package/components/date-picker/date-popup.js +7 -7
  79. package/components/date-picker/day.js +10 -10
  80. package/components/date-picker/month-names.js +7 -7
  81. package/components/date-picker/month-slider.js +4 -4
  82. package/components/date-picker/month.js +6 -6
  83. package/components/date-picker/months.js +7 -7
  84. package/components/date-picker/weekdays.js +4 -4
  85. package/components/date-picker/years.js +12 -12
  86. package/components/dialog/dialog.js +3 -1
  87. package/components/dropdown/dropdown.js +3 -3
  88. package/components/dropdown-menu/dropdown-menu.js +6 -1
  89. package/components/editable-heading/editable-heading.d.ts +1 -1
  90. package/components/editable-heading/editable-heading.js +69 -38
  91. package/components/error-bubble/error-bubble.js +4 -2
  92. package/components/error-message/error-message.js +1 -1
  93. package/components/footer/footer.js +1 -1
  94. package/components/global/create-stateful-context.js +1 -1
  95. package/components/global/data-tests.js +1 -1
  96. package/components/global/dom.js +2 -1
  97. package/components/global/focus-sensor-hoc.js +7 -7
  98. package/components/global/inject-styles.js +1 -1
  99. package/components/global/listeners.js +1 -1
  100. package/components/global/normalize-indent.js +0 -1
  101. package/components/global/react-dom-renderer.js +2 -1
  102. package/components/global/rerender-hoc.js +1 -1
  103. package/components/global/schedule-raf.js +1 -1
  104. package/components/global/theme.js +2 -0
  105. package/components/global/url.js +1 -0
  106. package/components/grid/col.js +1 -2
  107. package/components/grid/grid.js +1 -2
  108. package/components/grid/row.js +8 -3
  109. package/components/group/group.js +2 -2
  110. package/components/header/header.js +6 -1
  111. package/components/header/logo.js +1 -1
  112. package/components/header/profile.js +7 -1
  113. package/components/header/services.js +3 -1
  114. package/components/header/smart-profile.js +6 -1
  115. package/components/header/smart-services.js +6 -3
  116. package/components/header/tray-icon.js +1 -1
  117. package/components/header/tray.js +1 -1
  118. package/components/heading/heading.js +1 -1
  119. package/components/http/http.js +2 -1
  120. package/components/http/http.mock.js +2 -1
  121. package/components/hub-source/hub-source.js +3 -1
  122. package/components/hub-source/hub-source__user.js +2 -1
  123. package/components/hub-source/hub-source__users-groups.js +3 -1
  124. package/components/i18n/i18n.js +1 -1
  125. package/components/icon/icon.js +1 -1
  126. package/components/island/adaptive-island-hoc.js +1 -1
  127. package/components/island/content.js +2 -2
  128. package/components/island/header.js +2 -1
  129. package/components/island/island.js +1 -1
  130. package/components/island-legacy/content-legacy.js +1 -1
  131. package/components/island-legacy/header-legacy.js +1 -1
  132. package/components/island-legacy/island-legacy.js +1 -1
  133. package/components/link/clickableLink.js +1 -1
  134. package/components/link/link.d.ts +2 -2
  135. package/components/link/link.js +2 -2
  136. package/components/list/list.d.ts +0 -1
  137. package/components/list/list.js +11 -4
  138. package/components/list/list__custom.js +1 -1
  139. package/components/list/list__hint.js +1 -1
  140. package/components/list/list__item.js +5 -2
  141. package/components/list/list__link.js +1 -1
  142. package/components/list/list__separator.js +1 -1
  143. package/components/list/list__title.js +1 -1
  144. package/components/list/list__users-groups-source.js +6 -1
  145. package/components/loader/loader.js +4 -2
  146. package/components/loader/loader__core.js +23 -9
  147. package/components/loader-inline/loader-inline.js +2 -2
  148. package/components/loader-screen/loader-screen.js +3 -1
  149. package/components/login-dialog/login-dialog.js +6 -2
  150. package/components/login-dialog/service.js +5 -1
  151. package/components/markdown/markdown.js +2 -2
  152. package/components/message/message.js +4 -2
  153. package/components/old-browsers-message/white-list.js +3 -3
  154. package/components/pager/pager.js +11 -6
  155. package/components/panel/panel.js +2 -2
  156. package/components/permissions/permissions.js +2 -1
  157. package/components/permissions/permissions__cache.js +1 -1
  158. package/components/popup/popup.js +6 -1
  159. package/components/popup/popup.target.js +1 -1
  160. package/components/popup/position.js +2 -1
  161. package/components/popup-menu/popup-menu.js +6 -1
  162. package/components/progress-bar/progress-bar.d.ts +6 -0
  163. package/components/progress-bar/progress-bar.js +12 -5
  164. package/components/query-assist/query-assist.js +19 -13
  165. package/components/query-assist/query-assist__suggestions.js +5 -0
  166. package/components/radio/radio.js +1 -1
  167. package/components/radio/radio__item.js +2 -2
  168. package/components/select/select.js +29 -4
  169. package/components/select/select__filter.js +5 -0
  170. package/components/select/select__popup.js +10 -5
  171. package/components/shortcuts/core.js +3 -1
  172. package/components/shortcuts/shortcuts-hoc.js +3 -1
  173. package/components/shortcuts/shortcuts.js +3 -1
  174. package/components/storage/storage.js +3 -0
  175. package/components/storage/storage__fallback.js +6 -3
  176. package/components/storage/storage__local.js +3 -1
  177. package/components/style.css +1 -1
  178. package/components/tab-trap/tab-trap.js +3 -2
  179. package/components/table/cell.js +1 -1
  180. package/components/table/disable-hover-hoc.js +1 -1
  181. package/components/table/header-cell.js +1 -1
  182. package/components/table/header.js +1 -1
  183. package/components/table/multitable.js +9 -8
  184. package/components/table/row-with-focus-sensor.js +7 -5
  185. package/components/table/row.js +3 -1
  186. package/components/table/selection-shortcuts-hoc.js +13 -12
  187. package/components/table/selection.js +2 -1
  188. package/components/table/smart-table.js +5 -1
  189. package/components/table/table.js +5 -1
  190. package/components/tabs/collapsible-more.js +6 -1
  191. package/components/tabs/collapsible-tab.js +1 -1
  192. package/components/tabs/collapsible-tabs.js +6 -1
  193. package/components/tabs/dumb-tabs.js +6 -1
  194. package/components/tabs/smart-tabs.js +6 -1
  195. package/components/tabs/tab.js +1 -1
  196. package/components/tabs/tabs.js +5 -0
  197. package/components/tag/tag.js +3 -3
  198. package/components/tags-input/tags-input.js +15 -10
  199. package/components/tags-list/tags-list.js +1 -1
  200. package/components/text/text.js +1 -1
  201. package/components/toggle/toggle.js +2 -2
  202. package/components/tooltip/tooltip.js +6 -4
  203. package/components/user-agreement/service.js +4 -1
  204. package/components/user-agreement/user-agreement.js +4 -2
  205. package/components/user-card/card.js +4 -0
  206. package/components/user-card/smart-user-card-tooltip.js +47 -43
  207. package/components/user-card/tooltip.js +5 -1
  208. package/components/user-card/user-card.js +4 -0
  209. package/package.json +8 -17
  210. package/typings.d.ts +0 -54
  211. package/babel.config.js +0 -25
  212. package/jslint-xml.js +0 -38
  213. package/postcss.config.js +0 -20
  214. package/webpack.config.js +0 -118
@@ -1,4 +1,4 @@
1
- import { g as _objectSpread2 } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { h as _objectSpread2 } from '../_helpers/_rollupPluginBabelHelpers.js';
2
2
  import React from 'react';
3
3
  import { createRoot } from 'react-dom/client';
4
4
  import { ControlsHeightContext, getGlobalControlsHeight } from '../global/controls-height.js';
@@ -28,10 +28,12 @@ import 'core-js/modules/es.array.map.js';
28
28
  import '../shortcuts/core.js';
29
29
  import 'core-js/modules/es.array.includes.js';
30
30
  import 'core-js/modules/es.string.includes.js';
31
+ import 'core-js/modules/es.object.assign.js';
31
32
  import 'core-js/modules/es.array.slice.js';
32
33
  import 'core-js/modules/es.array.splice.js';
33
34
  import 'core-js/modules/es.regexp.exec.js';
34
35
  import 'core-js/modules/es.string.match.js';
36
+ import 'core-js/modules/es.array.find-index.js';
35
37
  import 'combokeys';
36
38
  import '../global/sniffer.js';
37
39
  import 'sniffr';
@@ -62,9 +64,11 @@ import 'scrollbar-width';
62
64
  import '../loader-screen/loader-screen.js';
63
65
  import '../loader/loader.js';
64
66
  import '../loader/loader__core.js';
67
+ import 'core-js/modules/es.array.fill.js';
65
68
  import '../auth/background-flow.js';
66
69
  import 'core-js/modules/es.promise.js';
67
70
  import '../auth/response-parser.js';
71
+ import 'core-js/modules/es.array.index-of.js';
68
72
  import 'es6-error';
69
73
  import '../global/url.js';
70
74
 
@@ -1,11 +1,11 @@
1
- import { a as _inherits, b as _createSuper, c as _classCallCheck, d as _createClass } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { a as _inherits, b as _createSuper, c as _classCallCheck, f as _createClass } from '../_helpers/_rollupPluginBabelHelpers.js';
2
2
  import React, { PureComponent } from 'react';
3
3
  import PropTypes from 'prop-types';
4
4
  import classNames from 'classnames';
5
5
  import { m as modules_901b77ec } from '../_helpers/heading.js';
6
6
  import { m as modules_607b0772 } from '../_helpers/link.js';
7
7
 
8
- var modules_9c709e64 = {"unit":"i__const_unit_0","p-margin":"10px","light":"light_rui_2ac4","inline":"inline_rui_e3b3","markdown":"markdown_rui_e3b3 font_rui_8bff"};
8
+ var modules_9c709e64 = {"p-margin":"10px","light":"light_rui_2ac4","inline":"inline_rui_e3b3","markdown":"markdown_rui_e3b3 font_rui_8bff"};
9
9
 
10
10
  /**
11
11
  * @name Markdown
@@ -1,4 +1,4 @@
1
- import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, k as _assertThisInitialized, d as _createClass, f as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, d as _assertThisInitialized, f as _createClass, i as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
2
2
  import 'core-js/modules/es.array.concat.js';
3
3
  import 'core-js/modules/es.array.includes.js';
4
4
  import 'core-js/modules/es.string.includes.js';
@@ -24,6 +24,7 @@ import 'react-dom';
24
24
  import '../global/get-uid.js';
25
25
  import '../global/schedule-raf.js';
26
26
  import '../global/dom.js';
27
+ import 'core-js/modules/es.object.assign.js';
27
28
  import 'core-js/modules/es.array.filter.js';
28
29
  import 'core-js/modules/es.string.split.js';
29
30
  import 'core-js/modules/es.array.iterator.js';
@@ -35,6 +36,7 @@ import '../shortcuts/core.js';
35
36
  import 'core-js/modules/es.array.slice.js';
36
37
  import 'core-js/modules/es.array.splice.js';
37
38
  import 'core-js/modules/es.string.match.js';
39
+ import 'core-js/modules/es.array.find-index.js';
38
40
  import 'combokeys';
39
41
  import '../global/sniffer.js';
40
42
  import 'sniffr';
@@ -57,7 +59,7 @@ import '../global/controls-height.js';
57
59
  import '../_helpers/button__classes.js';
58
60
  import '../i18n/i18n.js';
59
61
 
60
- var modules_8b837449 = {"unit":"i__const_unit_0","padding":"12px","light":"light_rui_2ac4","container":"container_rui_f3db","message":"message_rui_f3db","icon":"icon_rui_f3db","title":"title_rui_f3db font-lower_rui_8bff font_rui_8bff","description":"description_rui_f3db","button":"button_rui_f3db","tail":"tail_rui_f3db"};
62
+ var modules_8b837449 = {"light":"light_rui_2ac4","container":"container_rui_f3db","message":"message_rui_f3db","icon":"icon_rui_f3db","title":"title_rui_f3db font-lower_rui_8bff font_rui_8bff","description":"description_rui_f3db","button":"button_rui_f3db","tail":"tail_rui_f3db"};
61
63
 
62
64
  /**
63
65
  * @name Message
@@ -1,4 +1,4 @@
1
- import { j as _slicedToArray, g as _objectSpread2 } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { k as _slicedToArray, h as _objectSpread2 } from '../_helpers/_rollupPluginBabelHelpers.js';
2
2
  import 'core-js/modules/es.array.reduce.js';
3
3
  import 'core-js/modules/es.object.to-string.js';
4
4
  import 'core-js/modules/es.regexp.exec.js';
@@ -11,11 +11,11 @@ var MAJOR_VERSION_INDEX = 0;
11
11
  /**
12
12
  * SUPPORTED_BROWSERS are defined by Babel plugin, see babel config
13
13
  */
14
- if (!["and_chr 119", "chrome 118", "chrome 117", "chrome 116", "chrome 109", "edge 118", "edge 117", "firefox 118", "ios_saf 17.0", "ios_saf 16.6-16.7", "op_mob 73", "opera 102", "safari 16.6", "samsung 22"]) {
14
+ if (!["and_chr 121", "chrome 121", "chrome 120", "chrome 119", "chrome 109", "edge 120", "firefox 121", "ios_saf 17.2", "ios_saf 17.1", "ios_saf 16.6-16.7", "op_mob 73", "samsung 23"]) {
15
15
  // eslint-disable-next-line no-console
16
16
  console.warn('Ring UI: no SUPPORTED_BROWSERS passed. Please check babel config.');
17
17
  }
18
- var SUPPORTED = ["and_chr 119", "chrome 118", "chrome 117", "chrome 116", "chrome 109", "edge 118", "edge 117", "firefox 118", "ios_saf 17.0", "ios_saf 16.6-16.7", "op_mob 73", "opera 102", "safari 16.6", "samsung 22"] || [];
18
+ var SUPPORTED = ["and_chr 121", "chrome 121", "chrome 120", "chrome 119", "chrome 109", "edge 120", "firefox 121", "ios_saf 17.2", "ios_saf 17.1", "ios_saf 16.6-16.7", "op_mob 73", "samsung 23"] || [];
19
19
  var WHITE_LISTED_BROWSERS = ['chrome', 'firefox', 'safari', 'edge'];
20
20
  var WHITE_LIST = SUPPORTED.reduce(function (acc, item) {
21
21
  var _item$match;
@@ -1,6 +1,7 @@
1
- import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, k as _assertThisInitialized, d as _createClass, f as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, d as _assertThisInitialized, f as _createClass, i as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
2
2
  import 'core-js/modules/es.array.concat.js';
3
3
  import 'core-js/modules/es.array.map.js';
4
+ import 'core-js/modules/es.array.find.js';
4
5
  import 'core-js/modules/es.object.to-string.js';
5
6
  import React, { PureComponent } from 'react';
6
7
  import PropTypes from 'prop-types';
@@ -34,10 +35,12 @@ import '../global/data-tests.js';
34
35
  import 'core-js/modules/es.array.reduce.js';
35
36
  import 'core-js/modules/es.object.entries.js';
36
37
  import '../_helpers/caption.js';
38
+ import 'core-js/modules/es.array.index-of.js';
37
39
  import 'core-js/modules/es.string.trim.js';
38
40
  import 'core-js/modules/es.array.filter.js';
39
41
  import 'core-js/modules/web.dom-collections.for-each.js';
40
42
  import 'core-js/modules/es.array.slice.js';
43
+ import 'core-js/modules/es.object.assign.js';
41
44
  import 'core-js/modules/es.object.values.js';
42
45
  import '@jetbrains/icons/chevron-down';
43
46
  import '@jetbrains/icons/close-12px';
@@ -51,6 +54,7 @@ import 'core-js/modules/es.string.match.js';
51
54
  import '../global/dom.js';
52
55
  import 'core-js/modules/es.set.js';
53
56
  import '../avatar/fallback-avatar.js';
57
+ import 'core-js/modules/es.array.from.js';
54
58
  import '../global/get-uid.js';
55
59
  import 'core-js/modules/es.regexp.to-string.js';
56
60
  import '../popup/popup.js';
@@ -61,6 +65,7 @@ import '../shortcuts/core.js';
61
65
  import 'core-js/modules/es.array.includes.js';
62
66
  import 'core-js/modules/es.string.includes.js';
63
67
  import 'core-js/modules/es.array.splice.js';
68
+ import 'core-js/modules/es.array.find-index.js';
64
69
  import 'combokeys';
65
70
  import '../global/sniffer.js';
66
71
  import 'sniffr';
@@ -108,7 +113,7 @@ import '../text/text.js';
108
113
  import '../_helpers/select__filter.js';
109
114
  import '../i18n/i18n.js';
110
115
 
111
- var modules_1a5f0d42 = {"unit":"i__const_unit_0","light":"light_rui_2ac4","pager":"pager_rui_2db7","links":"links_rui_2db7","link":"link_rui_2db7","linkDisabled":"linkDisabled_rui_2db7"};
116
+ var modules_1a5f0d42 = {"light":"light_rui_2ac4","pager":"pager_rui_2db7","links":"links_rui_2db7","link":"link_rui_2db7","linkDisabled":"linkDisabled_rui_2db7"};
112
117
 
113
118
  var Pager = /*#__PURE__*/function (_PureComponent) {
114
119
  _inherits(Pager, _PureComponent);
@@ -130,7 +135,7 @@ var Pager = /*#__PURE__*/function (_PureComponent) {
130
135
  if (currentPage !== 1) {
131
136
  var _this$props$onPageCha, _this$props;
132
137
  var prevPage = currentPage - 1;
133
- (_this$props$onPageCha = (_this$props = _this.props).onPageChange) === null || _this$props$onPageCha === void 0 ? void 0 : _this$props$onPageCha.call(_this$props, prevPage);
138
+ (_this$props$onPageCha = (_this$props = _this.props).onPageChange) === null || _this$props$onPageCha === void 0 || _this$props$onPageCha.call(_this$props, prevPage);
134
139
  }
135
140
  });
136
141
  _defineProperty(_assertThisInitialized(_this), "handleNextClick", function () {
@@ -141,7 +146,7 @@ var Pager = /*#__PURE__*/function (_PureComponent) {
141
146
  var total = _this.getTotalPages();
142
147
  if (currentPage !== total) {
143
148
  var _this$props$onPageCha2, _this$props3;
144
- (_this$props$onPageCha2 = (_this$props3 = _this.props).onPageChange) === null || _this$props$onPageCha2 === void 0 ? void 0 : _this$props$onPageCha2.call(_this$props3, nextPage);
149
+ (_this$props$onPageCha2 = (_this$props3 = _this.props).onPageChange) === null || _this$props$onPageCha2 === void 0 || _this$props$onPageCha2.call(_this$props3, nextPage);
145
150
  } else if (_this.props.openTotal) {
146
151
  onLoadPage(nextPage);
147
152
  }
@@ -149,7 +154,7 @@ var Pager = /*#__PURE__*/function (_PureComponent) {
149
154
  _defineProperty(_assertThisInitialized(_this), "handlePageChange", memoize(function (i) {
150
155
  return function (event) {
151
156
  var _this$props$onPageCha3, _this$props4;
152
- (_this$props$onPageCha3 = (_this$props4 = _this.props).onPageChange) === null || _this$props$onPageCha3 === void 0 ? void 0 : _this$props$onPageCha3.call(_this$props4, i, event);
157
+ (_this$props$onPageCha3 = (_this$props4 = _this.props).onPageChange) === null || _this$props$onPageCha3 === void 0 || _this$props$onPageCha3.call(_this$props4, i, event);
153
158
  };
154
159
  }));
155
160
  _defineProperty(_assertThisInitialized(_this), "handleLoadMore", memoize(function (i) {
@@ -303,7 +308,7 @@ var Pager = /*#__PURE__*/function (_PureComponent) {
303
308
  var translate = this.context.translate;
304
309
  if (totalPages < this.props.currentPage) {
305
310
  var _this$props$onPageCha4, _this$props9;
306
- (_this$props$onPageCha4 = (_this$props9 = this.props).onPageChange) === null || _this$props$onPageCha4 === void 0 ? void 0 : _this$props$onPageCha4.call(_this$props9, totalPages);
311
+ (_this$props$onPageCha4 = (_this$props9 = this.props).onPageChange) === null || _this$props$onPageCha4 === void 0 || _this$props$onPageCha4.call(_this$props9, totalPages);
307
312
  }
308
313
  var start = 1;
309
314
  var end = totalPages;
@@ -1,9 +1,9 @@
1
- import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, d as _createClass, e as _objectWithoutProperties, f as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, f as _createClass, g as _objectWithoutProperties, i as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
2
2
  import React, { PureComponent } from 'react';
3
3
  import PropTypes from 'prop-types';
4
4
  import classNames from 'classnames';
5
5
 
6
- var modules_cf670408 = {"unit":"i__const_unit_0","light":"light_rui_2ac4","panel":"panel_rui_1067 panel_rui_381e"};
6
+ var modules_cf670408 = {"light":"light_rui_2ac4","panel":"panel_rui_1067 panel_rui_381e"};
7
7
 
8
8
  var _excluded = ["className", "children"];
9
9
  /**
@@ -1,6 +1,7 @@
1
- import { _ as _defineProperty, d as _createClass, c as _classCallCheck } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { _ as _defineProperty, f as _createClass, c as _classCallCheck } from '../_helpers/_rollupPluginBabelHelpers.js';
2
2
  import 'core-js/modules/es.object.to-string.js';
3
3
  import 'core-js/modules/es.promise.js';
4
+ import 'core-js/modules/es.array.index-of.js';
4
5
  import 'core-js/modules/es.array.map.js';
5
6
  import PermissionCache from './permissions__cache.js';
6
7
  import 'core-js/modules/es.array.reduce.js';
@@ -1,4 +1,4 @@
1
- import { _ as _defineProperty, d as _createClass, c as _classCallCheck } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { _ as _defineProperty, f as _createClass, c as _classCallCheck } from '../_helpers/_rollupPluginBabelHelpers.js';
2
2
  import 'core-js/modules/es.array.reduce.js';
3
3
  import 'core-js/modules/es.object.to-string.js';
4
4
 
@@ -1,4 +1,4 @@
1
- import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, k as _assertThisInitialized, g as _objectSpread2, j as _slicedToArray, d as _createClass } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, d as _assertThisInitialized, h as _objectSpread2, k as _slicedToArray, f as _createClass } from '../_helpers/_rollupPluginBabelHelpers.js';
2
2
  import 'core-js/modules/es.array.concat.js';
3
3
  import 'core-js/modules/es.object.to-string.js';
4
4
  import 'core-js/modules/web.dom-collections.for-each.js';
@@ -19,6 +19,7 @@ import TabTrap from '../tab-trap/tab-trap.js';
19
19
  import position from './position.js';
20
20
  import { Display, DEFAULT_DIRECTIONS, Directions, Dimension, MinWidth, MaxHeight } from './popup.consts.js';
21
21
  import { PopupTargetContext, PopupTarget } from './popup.target.js';
22
+ import 'core-js/modules/es.object.assign.js';
22
23
  import 'core-js/modules/es.array.filter.js';
23
24
  import 'core-js/modules/es.string.split.js';
24
25
  import 'core-js/modules/es.array.iterator.js';
@@ -31,6 +32,7 @@ import 'core-js/modules/es.string.includes.js';
31
32
  import 'core-js/modules/es.array.slice.js';
32
33
  import 'core-js/modules/es.array.splice.js';
33
34
  import 'core-js/modules/es.string.match.js';
35
+ import 'core-js/modules/es.array.find-index.js';
34
36
  import 'combokeys';
35
37
  import '../global/sniffer.js';
36
38
  import 'sniffr';
@@ -393,8 +395,10 @@ Popup.propTypes = {
393
395
  dontCloseOnAnchorClick: PropTypes.bool,
394
396
  shortcuts: PropTypes.bool,
395
397
  keepMounted: PropTypes.bool,
398
+ // pass this prop to preserve the popup's DOM state while hidden
396
399
  'data-test': PropTypes.string,
397
400
  client: PropTypes.bool,
401
+ // true means that it's never used in SSR
398
402
  directions: PropTypes.arrayOf(PropTypes.string),
399
403
  autoPositioning: PropTypes.bool,
400
404
  autoCorrectTopOverflow: PropTypes.bool,
@@ -404,6 +408,7 @@ Popup.propTypes = {
404
408
  minWidth: PropTypes.number,
405
409
  sidePadding: PropTypes.number,
406
410
  attached: PropTypes.bool,
411
+ // Popup adjacent to an input, without upper border and shadow
407
412
  onMouseDown: PropTypes.func,
408
413
  onMouseUp: PropTypes.func,
409
414
  onMouseOver: PropTypes.func,
@@ -1,4 +1,4 @@
1
- import { e as _objectWithoutProperties, f as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { g as _objectWithoutProperties, i as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
2
2
  import React, { createContext, forwardRef } from 'react';
3
3
  import PropTypes from 'prop-types';
4
4
 
@@ -1,4 +1,4 @@
1
- import { g as _objectSpread2 } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { h as _objectSpread2 } from '../_helpers/_rollupPluginBabelHelpers.js';
2
2
  import 'core-js/modules/es.array.includes.js';
3
3
  import 'core-js/modules/es.string.includes.js';
4
4
  import 'core-js/modules/es.array.sort.js';
@@ -8,6 +8,7 @@ import 'core-js/modules/es.object.to-string.js';
8
8
  import 'core-js/modules/es.array.concat.js';
9
9
  import { getRect, isMounted, getDocumentScrollTop, getDocumentScrollLeft, getWindowHeight } from '../global/dom.js';
10
10
  import { MaxHeight, Dimension, MinWidth, Directions } from './popup.consts.js';
11
+ import 'core-js/modules/es.object.assign.js';
11
12
  import 'core-js/modules/web.dom-collections.for-each.js';
12
13
  import 'core-js/modules/es.regexp.exec.js';
13
14
  import 'core-js/modules/es.string.split.js';
@@ -1,4 +1,4 @@
1
- import { e as _objectWithoutProperties, _ as _defineProperty, g as _objectSpread2, a as _inherits, b as _createSuper, c as _classCallCheck, k as _assertThisInitialized, d as _createClass, f as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { g as _objectWithoutProperties, _ as _defineProperty, h as _objectSpread2, a as _inherits, b as _createSuper, c as _classCallCheck, d as _assertThisInitialized, f as _createClass, i as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
2
2
  import 'core-js/modules/es.array.concat.js';
3
3
  import React from 'react';
4
4
  import PropTypes from 'prop-types';
@@ -15,6 +15,7 @@ import 'classnames';
15
15
  import '../global/get-uid.js';
16
16
  import '../global/schedule-raf.js';
17
17
  import '../global/dom.js';
18
+ import 'core-js/modules/es.object.assign.js';
18
19
  import 'core-js/modules/es.array.filter.js';
19
20
  import 'core-js/modules/es.string.split.js';
20
21
  import 'core-js/modules/es.array.iterator.js';
@@ -28,6 +29,7 @@ import 'core-js/modules/es.string.includes.js';
28
29
  import 'core-js/modules/es.array.slice.js';
29
30
  import 'core-js/modules/es.array.splice.js';
30
31
  import 'core-js/modules/es.string.match.js';
32
+ import 'core-js/modules/es.array.find-index.js';
31
33
  import 'combokeys';
32
34
  import '../global/sniffer.js';
33
35
  import 'sniffr';
@@ -40,6 +42,7 @@ import '../popup/popup.consts.js';
40
42
  import '../popup/popup.target.js';
41
43
  import 'core-js/modules/es.symbol.js';
42
44
  import 'core-js/modules/es.symbol.description.js';
45
+ import 'core-js/modules/es.array.find.js';
43
46
  import 'react-virtualized/dist/es/List';
44
47
  import 'react-virtualized/dist/es/AutoSizer';
45
48
  import 'react-virtualized/dist/es/WindowScroller';
@@ -56,9 +59,11 @@ import '../link/clickableLink.js';
56
59
  import '../_helpers/link.js';
57
60
  import '../_helpers/list.js';
58
61
  import '../list/list__item.js';
62
+ import 'core-js/modules/es.array.index-of.js';
59
63
  import '../avatar/avatar.js';
60
64
  import '../global/url.js';
61
65
  import '../avatar/fallback-avatar.js';
66
+ import 'core-js/modules/es.array.from.js';
62
67
  import '../checkbox/checkbox.js';
63
68
  import '@jetbrains/icons/checkmark-14px';
64
69
  import '@jetbrains/icons/remove-14px';
@@ -5,6 +5,7 @@ export interface ProgressBarProps extends HTMLAttributes<HTMLElement> {
5
5
  value: number;
6
6
  label: string;
7
7
  global?: boolean | null | undefined;
8
+ staticColor?: boolean;
8
9
  }
9
10
  /**
10
11
  * @name Progress Bar
@@ -43,6 +44,11 @@ export default class ProgressBar extends PureComponent<ProgressBarProps> {
43
44
  * @type {number}
44
45
  */
45
46
  value: PropTypes.Requireable<number>;
47
+ /**
48
+ * Disables Disabled progress bar color animation and sets it to static color.
49
+ * @type {boolean}
50
+ */
51
+ staticColor: PropTypes.Requireable<boolean>;
46
52
  };
47
53
  static defaultProps: {
48
54
  max: number;
@@ -1,12 +1,12 @@
1
- import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, k as _assertThisInitialized, d as _createClass, e as _objectWithoutProperties, f as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, d as _assertThisInitialized, f as _createClass, g as _objectWithoutProperties, i as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
2
2
  import 'core-js/modules/es.array.concat.js';
3
3
  import React, { PureComponent } from 'react';
4
4
  import PropTypes from 'prop-types';
5
5
  import classNames from 'classnames';
6
6
 
7
- var modules_fb7af416 = {"dark":"dark_rui_eb55","unit":"i__const_unit_1","light":"light_rui_2ac4","progressBar":"progressBar_rui_5875","globalMode":"globalMode_rui_5875","line":"line_rui_5875","progress-bar":"progress-bar_rui_5875"};
7
+ var modules_fb7af416 = {"dark":"dark_rui_eb55","light":"light_rui_2ac4","progressBar":"progressBar_rui_5875","globalMode":"globalMode_rui_5875","line":"line_rui_5875","progress-bar":"progress-bar_rui_5875","staticLineColor":"staticLineColor_rui_5875"};
8
8
 
9
- var _excluded = ["className", "global", "max", "value", "label"];
9
+ var _excluded = ["className", "global", "max", "value", "label", "staticColor"];
10
10
  /**
11
11
  * @name Progress Bar
12
12
  */
@@ -39,10 +39,12 @@ var ProgressBar = /*#__PURE__*/function (_PureComponent) {
39
39
  max = _this$props.max,
40
40
  value = _this$props.value,
41
41
  label = _this$props.label,
42
+ staticColor = _this$props.staticColor,
42
43
  otherProps = _objectWithoutProperties(_this$props, _excluded);
43
44
  var width = value ? "".concat(ProgressBar.toPercent(value, max), "%") : undefined;
44
45
  var classes = classNames(modules_fb7af416.progressBar, className, {
45
- [modules_fb7af416.globalMode]: global
46
+ [modules_fb7af416.globalMode]: global,
47
+ [modules_fb7af416.staticLineColor]: staticColor
46
48
  });
47
49
  return /*#__PURE__*/React.createElement("div", _extends({}, otherProps, {
48
50
  className: classes,
@@ -102,7 +104,12 @@ _defineProperty(ProgressBar, "propTypes", {
102
104
  * A floating point number that specifies current task completion rate.
103
105
  * @type {number}
104
106
  */
105
- value: PropTypes.number
107
+ value: PropTypes.number,
108
+ /**
109
+ * Disables Disabled progress bar color animation and sets it to static color.
110
+ * @type {boolean}
111
+ */
112
+ staticColor: PropTypes.bool
106
113
  });
107
114
  _defineProperty(ProgressBar, "defaultProps", {
108
115
  max: 1.0,
@@ -1,14 +1,18 @@
1
- import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, k as _assertThisInitialized, l as _toConsumableArray, n as _get, o as _getPrototypeOf, e as _objectWithoutProperties, d as _createClass } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, d as _assertThisInitialized, l as _toConsumableArray, n as _get, o as _getPrototypeOf, g as _objectWithoutProperties, f as _createClass } from '../_helpers/_rollupPluginBabelHelpers.js';
2
2
  import 'core-js/modules/es.regexp.exec.js';
3
3
  import 'core-js/modules/es.string.replace.js';
4
+ import 'core-js/modules/es.array.find.js';
4
5
  import 'core-js/modules/es.object.to-string.js';
5
6
  import 'core-js/modules/web.dom-collections.for-each.js';
6
7
  import 'core-js/modules/es.array.filter.js';
7
8
  import 'core-js/modules/es.array.splice.js';
8
9
  import 'core-js/modules/es.promise.js';
10
+ import 'core-js/modules/es.object.assign.js';
9
11
  import 'core-js/modules/es.symbol.js';
10
12
  import 'core-js/modules/es.symbol.description.js';
13
+ import 'core-js/modules/es.array.concat.js';
11
14
  import 'core-js/modules/es.array.map.js';
15
+ import 'core-js/modules/es.array.from.js';
12
16
  import React, { Component } from 'react';
13
17
  import PropTypes from 'prop-types';
14
18
  import debounce from 'just-debounce-it';
@@ -32,7 +36,6 @@ import { S as Size, m as modules_88cfaf40 } from '../_helpers/input.js';
32
36
  import { I18nContext } from '../i18n/i18n-context.js';
33
37
  import { Q as QueryAssistSuggestions, m as modules_da7ab055 } from '../_helpers/query-assist__suggestions.js';
34
38
  import 'core-js/modules/es.regexp.to-string.js';
35
- import 'core-js/modules/es.array.concat.js';
36
39
  import 'core-js/modules/es.array.reduce.js';
37
40
  import 'core-js/modules/es.object.entries.js';
38
41
  import 'core-js/modules/es.string.split.js';
@@ -51,6 +54,7 @@ import 'core-js/modules/es.array.sort.js';
51
54
  import '../popup/popup.consts.js';
52
55
  import '../popup/popup.target.js';
53
56
  import '../list/list.js';
57
+ import 'core-js/modules/es.array.find-index.js';
54
58
  import 'react-virtualized/dist/es/List';
55
59
  import 'react-virtualized/dist/es/AutoSizer';
56
60
  import 'react-virtualized/dist/es/WindowScroller';
@@ -67,6 +71,7 @@ import '../link/clickableLink.js';
67
71
  import '../_helpers/link.js';
68
72
  import '../_helpers/list.js';
69
73
  import '../list/list__item.js';
74
+ import 'core-js/modules/es.array.index-of.js';
70
75
  import '../avatar/avatar.js';
71
76
  import '../global/url.js';
72
77
  import 'core-js/modules/es.string.match.js';
@@ -200,14 +205,14 @@ var QueryAssist = /*#__PURE__*/function (_Component) {
200
205
  if (typeof _this.immediateState.selection === 'number' && Number.isInteger(_this.immediateState.selection) && _this.immediateState.selection > -1) {
201
206
  var _this$caret;
202
207
  // Set to end of field value if newCaretPosition is inappropriate
203
- (_this$caret = _this.caret) === null || _this$caret === void 0 ? void 0 : _this$caret.setPosition(newCaretPosition >= 0 ? newCaretPosition : -1);
208
+ (_this$caret = _this.caret) === null || _this$caret === void 0 || _this$caret.setPosition(newCaretPosition >= 0 ? newCaretPosition : -1);
204
209
  _this.scrollInput();
205
210
  } else if (_this.immediateState.selection && typeof _this.immediateState.selection === 'object' && _this.immediateState.selection.startOffset !== undefined) {
206
211
  var _this$caret2;
207
- (_this$caret2 = _this.caret) === null || _this$caret2 === void 0 ? void 0 : _this$caret2.setPosition(_this.immediateState.selection);
212
+ (_this$caret2 = _this.caret) === null || _this$caret2 === void 0 || _this$caret2.setPosition(_this.immediateState.selection);
208
213
  } else if (_this.immediateState.selection === undefined || params.forceSetCaret) {
209
214
  var _this$caret3;
210
- (_this$caret3 = _this.caret) === null || _this$caret3 === void 0 ? void 0 : _this$caret3.setPosition(-1);
215
+ (_this$caret3 = _this.caret) === null || _this$caret3 === void 0 || _this$caret3.setPosition(-1);
211
216
  }
212
217
  }
213
218
  });
@@ -264,7 +269,7 @@ var QueryAssist = /*#__PURE__*/function (_Component) {
264
269
  _this.props.onChange(props);
265
270
  if (_this.props.autoOpen === 'force' || props.query.length > 0) {
266
271
  var _this$requestData, _this2;
267
- (_this$requestData = (_this2 = _this).requestData) === null || _this$requestData === void 0 ? void 0 : _this$requestData.call(_this2);
272
+ (_this$requestData = (_this2 = _this).requestData) === null || _this$requestData === void 0 || _this$requestData.call(_this2);
268
273
  }
269
274
  });
270
275
  // It's necessary to prevent new element creation before any other hooks
@@ -292,7 +297,7 @@ var QueryAssist = /*#__PURE__*/function (_Component) {
292
297
  _defineProperty(_assertThisInitialized(_this), "setState", function (state, resolve) {
293
298
  _get((_thisSuper = _assertThisInitialized(_this), _getPrototypeOf(QueryAssist.prototype)), "setState", _thisSuper).call(_thisSuper, state, function () {
294
299
  _this._pushHistory(state);
295
- resolve === null || resolve === void 0 ? void 0 : resolve();
300
+ resolve === null || resolve === void 0 || resolve();
296
301
  });
297
302
  });
298
303
  _defineProperty(_assertThisInitialized(_this), "undo", function (e) {
@@ -304,7 +309,7 @@ var QueryAssist = /*#__PURE__*/function (_Component) {
304
309
  query: previous.query
305
310
  }, function () {
306
311
  var _this$caret5;
307
- (_this$caret5 = _this.caret) === null || _this$caret5 === void 0 ? void 0 : _this$caret5.setPosition(previous.caret);
312
+ (_this$caret5 = _this.caret) === null || _this$caret5 === void 0 || _this$caret5.setPosition(previous.caret);
308
313
  _this.handleInput(e);
309
314
  });
310
315
  });
@@ -331,7 +336,7 @@ var QueryAssist = /*#__PURE__*/function (_Component) {
331
336
  _this.scrollInput();
332
337
  if (_this.immediateState.query.length > 0) {
333
338
  var _this$requestData2, _this3;
334
- (_this$requestData2 = (_this3 = _this).requestData) === null || _this$requestData2 === void 0 ? void 0 : _this$requestData2.call(_this3);
339
+ (_this$requestData2 = (_this3 = _this).requestData) === null || _this$requestData2 === void 0 || _this$requestData2.call(_this3);
335
340
  }
336
341
  }
337
342
  if (_this.props.autoOpen !== 'force' && _this.immediateState.query.length < 1) {
@@ -434,7 +439,7 @@ var QueryAssist = /*#__PURE__*/function (_Component) {
434
439
  _this.setCaretPosition();
435
440
  }
436
441
  _this.closePopup();
437
- (_this$requestData3 = (_this4 = _this).requestData) === null || _this$requestData3 === void 0 ? void 0 : _this$requestData3.call(_this4, true);
442
+ (_this$requestData3 = (_this4 = _this).requestData) === null || _this$requestData3 === void 0 || _this$requestData3.call(_this4, true);
438
443
  });
439
444
  _defineProperty(_assertThisInitialized(_this), "requestStyleRanges", function () {
440
445
  var _this$immediateState = _this.immediateState,
@@ -468,7 +473,7 @@ var QueryAssist = /*#__PURE__*/function (_Component) {
468
473
  preventDefault(e);
469
474
  if (!_this.state.showPopup) {
470
475
  var _this$requestData4, _this5;
471
- (_this$requestData4 = (_this5 = _this).requestData) === null || _this$requestData4 === void 0 ? void 0 : _this$requestData4.call(_this5);
476
+ (_this$requestData4 = (_this5 = _this).requestData) === null || _this$requestData4 === void 0 || _this$requestData4.call(_this5);
472
477
  }
473
478
  });
474
479
  _defineProperty(_assertThisInitialized(_this), "trackPopupMouseState", function (e) {
@@ -605,7 +610,7 @@ var QueryAssist = /*#__PURE__*/function (_Component) {
605
610
  this.immediateState.query = query;
606
611
  if (query && (this.props.autoOpen === 'force' || prevProps.autoOpen && query.length > 0)) {
607
612
  var _this$requestData5;
608
- (_this$requestData5 = this.requestData) === null || _this$requestData5 === void 0 ? void 0 : _this$requestData5.call(this);
613
+ (_this$requestData5 = this.requestData) === null || _this$requestData5 === void 0 || _this$requestData5.call(this);
609
614
  } else if (query) {
610
615
  this.requestStyleRanges();
611
616
  }
@@ -722,7 +727,7 @@ var QueryAssist = /*#__PURE__*/function (_Component) {
722
727
  this.immediateState.selection = null;
723
728
  if (!this.props.focus) {
724
729
  var _this$caret11;
725
- (_this$caret11 = this.caret) === null || _this$caret11 === void 0 ? void 0 : _this$caret11.target.blur();
730
+ (_this$caret11 = this.caret) === null || _this$caret11 === void 0 || _this$caret11.target.blur();
726
731
  }
727
732
  }
728
733
  /**
@@ -871,6 +876,7 @@ var QueryAssist = /*#__PURE__*/function (_Component) {
871
876
  ["".concat(modules_da7ab055.input, " ring-js-shortcuts")]: true,
872
877
  [modules_da7ab055.inputGap]: actions.length || this.isRenderingGlassOrLoader() && !glass,
873
878
  [modules_da7ab055.inputGap2]: actions.length === 2,
879
+ // TODO: replace with flex-box layout
874
880
  [modules_da7ab055.inputRevertOrder]: !glass || huge
875
881
  });
876
882
  var placeholderStyles = classNames({
@@ -10,6 +10,9 @@ import 'core-js/modules/es.array.includes.js';
10
10
  import 'core-js/modules/es.string.includes.js';
11
11
  import 'core-js/modules/es.array.map.js';
12
12
  import 'core-js/modules/es.array.concat.js';
13
+ import 'core-js/modules/es.array.find-index.js';
14
+ import 'core-js/modules/es.object.assign.js';
15
+ import 'core-js/modules/es.array.find.js';
13
16
  import 'prop-types';
14
17
  import 'classnames';
15
18
  import 'react-virtualized/dist/es/List';
@@ -49,10 +52,12 @@ import '../link/clickableLink.js';
49
52
  import '../_helpers/link.js';
50
53
  import '../_helpers/list.js';
51
54
  import '../list/list__item.js';
55
+ import 'core-js/modules/es.array.index-of.js';
52
56
  import '../avatar/avatar.js';
53
57
  import '../global/url.js';
54
58
  import 'core-js/modules/es.string.replace.js';
55
59
  import '../avatar/fallback-avatar.js';
60
+ import 'core-js/modules/es.array.from.js';
56
61
  import '../checkbox/checkbox.js';
57
62
  import '@jetbrains/icons/checkmark-14px';
58
63
  import '@jetbrains/icons/remove-14px';
@@ -1,4 +1,4 @@
1
- import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, k as _assertThisInitialized, d as _createClass, g as _objectSpread2 } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, d as _assertThisInitialized, f as _createClass, h as _objectSpread2 } from '../_helpers/_rollupPluginBabelHelpers.js';
2
2
  import 'core-js/modules/es.array.concat.js';
3
3
  import React, { Component } from 'react';
4
4
  import PropTypes from 'prop-types';
@@ -1,4 +1,4 @@
1
- import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, k as _assertThisInitialized, d as _createClass, e as _objectWithoutProperties, f as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, d as _assertThisInitialized, f as _createClass, g as _objectWithoutProperties, i as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
2
2
  import 'core-js/modules/es.array.concat.js';
3
3
  import React, { createContext, Component, forwardRef } from 'react';
4
4
  import PropTypes from 'prop-types';
@@ -7,7 +7,7 @@ import getUID from '../global/get-uid.js';
7
7
  import 'core-js/modules/es.object.to-string.js';
8
8
  import 'core-js/modules/es.regexp.to-string.js';
9
9
 
10
- var modules_df92307a = {"unit":"i__const_unit_0","radio-size":"16px","light":"light_rui_2ac4","radio":"radio_rui_370b","circle":"circle_rui_370b","input":"input_rui_370b","focus":"focus_rui_370b","label":"label_rui_370b"};
10
+ var modules_df92307a = {"light":"light_rui_2ac4","radio":"radio_rui_370b","circle":"circle_rui_370b","input":"input_rui_370b","focus":"focus_rui_370b","label":"label_rui_370b"};
11
11
 
12
12
  var _excluded = ["className", "children"],
13
13
  _excluded2 = ["value", "onChange"];