@jetbrains/ring-ui-built 7.0.0-beta.2 → 7.0.0-beta.3

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 (236) hide show
  1. package/components/_helpers/_rollupPluginBabelHelpers.js +1 -504
  2. package/components/_helpers/anchor.js +7 -5
  3. package/components/_helpers/button__classes.js +15 -13
  4. package/components/_helpers/caption.js +11 -17
  5. package/components/_helpers/card.js +92 -96
  6. package/components/_helpers/dialog__body-scroll-preventer.js +10 -17
  7. package/components/_helpers/icon__svg.js +27 -23
  8. package/components/_helpers/input.js +150 -171
  9. package/components/_helpers/query-assist__suggestions.js +78 -93
  10. package/components/_helpers/select__filter.js +56 -67
  11. package/components/_helpers/services-link.js +23 -29
  12. package/components/_helpers/sidebar.js +91 -93
  13. package/components/_helpers/tab-link.js +8 -6
  14. package/components/_helpers/theme.js +41 -50
  15. package/components/_helpers/title.js +59 -69
  16. package/components/alert/alert.js +112 -156
  17. package/components/alert/container.js +32 -39
  18. package/components/alert-service/alert-service.js +104 -161
  19. package/components/analytics/analytics.js +12 -20
  20. package/components/analytics/analytics__custom-plugin.js +52 -68
  21. package/components/auth/auth.js +2 -27
  22. package/components/auth/auth__core.d.ts +1 -1
  23. package/components/auth/auth__core.js +742 -1428
  24. package/components/auth/background-flow.js +84 -121
  25. package/components/auth/down-notification.js +31 -69
  26. package/components/auth/iframe-flow.js +70 -123
  27. package/components/auth/request-builder.js +46 -77
  28. package/components/auth/response-parser.js +84 -112
  29. package/components/auth/storage.js +160 -318
  30. package/components/auth/token-validator.js +132 -227
  31. package/components/auth/window-flow.js +84 -121
  32. package/components/auth-dialog/auth-dialog.js +99 -150
  33. package/components/auth-dialog-service/auth-dialog-service.js +6 -26
  34. package/components/avatar/avatar-example-datauri.js +1 -1
  35. package/components/avatar/avatar.js +94 -123
  36. package/components/avatar/fallback-avatar.js +20 -34
  37. package/components/badge/badge.js +32 -38
  38. package/components/breadcrumbs/breadcrumbs.js +13 -17
  39. package/components/button/button.js +67 -80
  40. package/components/button-group/button-group.js +27 -36
  41. package/components/button-set/button-set.js +19 -27
  42. package/components/button-toolbar/button-toolbar.js +17 -25
  43. package/components/caret/caret.js +184 -211
  44. package/components/checkbox/checkbox.js +69 -86
  45. package/components/clipboard/clipboard-fallback.js +7 -7
  46. package/components/clipboard/clipboard.js +36 -128
  47. package/components/code/code.js +83 -151
  48. package/components/collapse/collapse-content.js +42 -60
  49. package/components/collapse/collapse-context.js +2 -2
  50. package/components/collapse/collapse-control.js +12 -12
  51. package/components/collapse/collapse.js +12 -17
  52. package/components/collapse/consts.js +4 -4
  53. package/components/collapse/utils.js +1 -3
  54. package/components/confirm/confirm.js +57 -87
  55. package/components/confirm-service/confirm-service.js +23 -44
  56. package/components/content-layout/content-layout.js +41 -56
  57. package/components/content-layout/sidebar.js +1 -1
  58. package/components/contenteditable/contenteditable.js +38 -46
  59. package/components/control-help/control-help.js +5 -3
  60. package/components/control-label/control-label.js +9 -8
  61. package/components/data-list/data-list.js +113 -156
  62. package/components/data-list/data-list.mock.js +3 -5
  63. package/components/data-list/item.js +120 -140
  64. package/components/data-list/selection.js +77 -135
  65. package/components/data-list/title.js +2 -10
  66. package/components/date-picker/consts.js +16 -22
  67. package/components/date-picker/date-input.js +99 -124
  68. package/components/date-picker/date-picker.js +140 -184
  69. package/components/date-picker/date-popup.js +280 -327
  70. package/components/date-picker/day.js +71 -94
  71. package/components/date-picker/month-names.js +41 -59
  72. package/components/date-picker/month-slider.js +42 -61
  73. package/components/date-picker/month.js +17 -24
  74. package/components/date-picker/months.js +44 -49
  75. package/components/date-picker/weekdays.js +12 -21
  76. package/components/date-picker/years.js +77 -98
  77. package/components/dialog/dialog.js +151 -187
  78. package/components/dialog/dialog__body-scroll-preventer.js +0 -3
  79. package/components/dropdown/anchor.js +0 -6
  80. package/components/dropdown/dropdown.js +134 -154
  81. package/components/dropdown-menu/dropdown-menu.js +59 -87
  82. package/components/editable-heading/editable-heading.js +69 -116
  83. package/components/error-bubble/error-bubble.js +29 -54
  84. package/components/error-message/error-message.js +34 -49
  85. package/components/footer/footer.js +27 -28
  86. package/components/global/compose.js +1 -8
  87. package/components/global/composeRefs.d.ts +0 -3
  88. package/components/global/composeRefs.js +8 -15
  89. package/components/global/controls-height.js +2 -2
  90. package/components/global/create-stateful-context.js +14 -13
  91. package/components/global/data-tests.js +7 -12
  92. package/components/global/dom.js +49 -82
  93. package/components/global/focus-sensor-hoc.js +99 -106
  94. package/components/global/fuzzy-highlight.js +23 -34
  95. package/components/global/get-event-key.js +8 -8
  96. package/components/global/get-uid.js +3 -7
  97. package/components/global/inject-styles.js +7 -14
  98. package/components/global/listeners.js +28 -47
  99. package/components/global/memoize.js +6 -10
  100. package/components/global/normalize-indent.js +19 -46
  101. package/components/global/promise-with-timeout.js +6 -8
  102. package/components/global/prop-types.js +3 -5
  103. package/components/global/react-dom-renderer.js +29 -40
  104. package/components/global/rerender-hoc.js +16 -32
  105. package/components/global/schedule-raf.js +4 -4
  106. package/components/global/sniffer.js +1 -1
  107. package/components/global/theme.js +1 -18
  108. package/components/global/trivial-template-tag.js +4 -9
  109. package/components/global/typescript-utils.js +2 -6
  110. package/components/global/url.js +20 -23
  111. package/components/global/use-event-callback.js +7 -4
  112. package/components/grid/col.js +27 -39
  113. package/components/grid/grid.js +18 -27
  114. package/components/grid/row.js +23 -30
  115. package/components/group/group.js +16 -22
  116. package/components/header/header-icon.js +19 -31
  117. package/components/header/header.d.ts +0 -1
  118. package/components/header/header.js +30 -64
  119. package/components/header/links.js +6 -3
  120. package/components/header/logo.js +15 -26
  121. package/components/header/profile.js +124 -150
  122. package/components/header/services-link.js +1 -3
  123. package/components/header/services.js +64 -97
  124. package/components/header/smart-profile.js +101 -178
  125. package/components/header/smart-services.js +55 -90
  126. package/components/header/tray.js +21 -30
  127. package/components/heading/heading.js +21 -20
  128. package/components/http/http.js +162 -319
  129. package/components/http/http.mock.js +50 -98
  130. package/components/hub-source/hub-source.js +77 -182
  131. package/components/hub-source/hub-source__user.js +9 -37
  132. package/components/hub-source/hub-source__users-groups.js +34 -60
  133. package/components/i18n/i18n-context.js +7 -8
  134. package/components/i18n/i18n.js +3 -6
  135. package/components/icon/icon.js +60 -74
  136. package/components/icon/icon__svg.js +0 -5
  137. package/components/icon/index.js +0 -5
  138. package/components/input/input.js +1 -11
  139. package/components/island/adaptive-island-hoc.js +29 -37
  140. package/components/island/content.js +100 -110
  141. package/components/island/header.js +56 -66
  142. package/components/island/island.js +25 -33
  143. package/components/island-legacy/content-legacy.js +16 -22
  144. package/components/island-legacy/header-legacy.js +19 -25
  145. package/components/island-legacy/island-legacy.js +16 -22
  146. package/components/link/clickableLink.js +33 -42
  147. package/components/link/link.js +47 -55
  148. package/components/list/consts.js +2 -2
  149. package/components/list/list.js +399 -486
  150. package/components/list/list__custom.js +51 -61
  151. package/components/list/list__hint.js +9 -17
  152. package/components/list/list__item.js +147 -178
  153. package/components/list/list__link.js +38 -47
  154. package/components/list/list__separator.js +15 -24
  155. package/components/list/list__title.js +25 -34
  156. package/components/list/list__users-groups-source.js +55 -121
  157. package/components/loader/loader.js +38 -60
  158. package/components/loader/loader__core.js +123 -184
  159. package/components/loader-inline/loader-inline.js +24 -32
  160. package/components/loader-screen/loader-screen.js +24 -40
  161. package/components/login-dialog/login-dialog.js +81 -121
  162. package/components/login-dialog/service.js +6 -29
  163. package/components/markdown/markdown.js +16 -24
  164. package/components/message/message.js +170 -201
  165. package/components/old-browsers-message/old-browsers-message.js +11 -14
  166. package/components/old-browsers-message/old-browsers-message__stop.js +1 -4
  167. package/components/old-browsers-message/white-list.js +8 -13
  168. package/components/pager/pager.js +212 -257
  169. package/components/panel/panel.js +16 -22
  170. package/components/permissions/permissions.js +118 -161
  171. package/components/permissions/permissions__cache.js +191 -218
  172. package/components/popup/popup.consts.js +1 -1
  173. package/components/popup/popup.js +237 -288
  174. package/components/popup/popup.target.js +9 -7
  175. package/components/popup/position.js +94 -101
  176. package/components/popup-menu/popup-menu.js +33 -67
  177. package/components/progress-bar/progress-bar.js +57 -68
  178. package/components/query-assist/query-assist.js +583 -652
  179. package/components/query-assist/query-assist__suggestions.js +2 -26
  180. package/components/radio/radio.js +15 -27
  181. package/components/radio/radio__item.js +52 -62
  182. package/components/scrollable-section/scrollable-section.js +22 -32
  183. package/components/select/select.js +693 -793
  184. package/components/select/select__filter.js +1 -26
  185. package/components/select/select__popup.js +316 -413
  186. package/components/shortcuts/core.js +147 -195
  187. package/components/shortcuts/shortcut-title.js +6 -10
  188. package/components/shortcuts/shortcuts-hoc.js +23 -41
  189. package/components/shortcuts/shortcuts.js +41 -64
  190. package/components/slider/slider.js +93 -112
  191. package/components/slider/slider.utils.js +16 -23
  192. package/components/storage/storage.js +3 -27
  193. package/components/storage/storage__fallback.js +137 -210
  194. package/components/storage/storage__local.js +89 -147
  195. package/components/style.css +1 -1
  196. package/components/tab-trap/tab-trap.js +35 -53
  197. package/components/table/cell.js +11 -21
  198. package/components/table/disable-hover-hoc.js +27 -42
  199. package/components/table/header-cell.js +59 -75
  200. package/components/table/header.js +89 -110
  201. package/components/table/multitable.js +83 -89
  202. package/components/table/row-with-focus-sensor.js +25 -57
  203. package/components/table/row.js +169 -200
  204. package/components/table/selection-adapter.js +2 -2
  205. package/components/table/selection-shortcuts-hoc.js +108 -113
  206. package/components/table/selection.js +150 -217
  207. package/components/table/simple-table.js +19 -55
  208. package/components/table/smart-table.js +42 -76
  209. package/components/table/table.js +267 -327
  210. package/components/tabs/collapsible-more.js +47 -73
  211. package/components/tabs/collapsible-tab.js +32 -36
  212. package/components/tabs/collapsible-tabs.js +89 -148
  213. package/components/tabs/custom-item.js +4 -2
  214. package/components/tabs/dumb-tabs.js +60 -92
  215. package/components/tabs/smart-tabs.js +29 -61
  216. package/components/tabs/tab-link.js +1 -3
  217. package/components/tabs/tab.js +15 -24
  218. package/components/tabs/tabs.js +1 -26
  219. package/components/tag/tag.d.ts +0 -2
  220. package/components/tag/tag.js +120 -162
  221. package/components/tags-input/tags-input.js +222 -304
  222. package/components/tags-list/tags-list.js +45 -61
  223. package/components/text/text.js +28 -37
  224. package/components/toggle/toggle.js +51 -61
  225. package/components/tooltip/tooltip.js +109 -141
  226. package/components/user-agreement/service.js +259 -400
  227. package/components/user-agreement/user-agreement.js +80 -108
  228. package/components/user-card/card.js +1 -25
  229. package/components/user-card/smart-user-card-tooltip.js +52 -103
  230. package/components/user-card/tooltip.js +35 -65
  231. package/components/user-card/user-card.js +1 -25
  232. package/package.json +1 -1
  233. package/components/global/react-render-adapter.d.ts +0 -1
  234. package/components/global/react-render-adapter.js +0 -6
  235. package/components/header/tray-icon.d.ts +0 -1
  236. package/components/header/tray-icon.js +0 -26
@@ -1,108 +1,3 @@
1
- function _arrayLikeToArray(r, a) {
2
- (null == a || a > r.length) && (a = r.length);
3
- for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
4
- return n;
5
- }
6
- function _arrayWithHoles(r) {
7
- if (Array.isArray(r)) return r;
8
- }
9
- function _arrayWithoutHoles(r) {
10
- if (Array.isArray(r)) return _arrayLikeToArray(r);
11
- }
12
- function _assertThisInitialized(e) {
13
- if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
14
- return e;
15
- }
16
- function asyncGeneratorStep(n, t, e, r, o, a, c) {
17
- try {
18
- var i = n[a](c),
19
- u = i.value;
20
- } catch (n) {
21
- return void e(n);
22
- }
23
- i.done ? t(u) : Promise.resolve(u).then(r, o);
24
- }
25
- function _asyncToGenerator(n) {
26
- return function () {
27
- var t = this,
28
- e = arguments;
29
- return new Promise(function (r, o) {
30
- var a = n.apply(t, e);
31
- function _next(n) {
32
- asyncGeneratorStep(a, r, o, _next, _throw, "next", n);
33
- }
34
- function _throw(n) {
35
- asyncGeneratorStep(a, r, o, _next, _throw, "throw", n);
36
- }
37
- _next(void 0);
38
- });
39
- };
40
- }
41
- function _callSuper(t, o, e) {
42
- return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e));
43
- }
44
- function _classCallCheck(a, n) {
45
- if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function");
46
- }
47
- function _defineProperties(e, r) {
48
- for (var t = 0; t < r.length; t++) {
49
- var o = r[t];
50
- o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o);
51
- }
52
- }
53
- function _createClass(e, r, t) {
54
- return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", {
55
- writable: !1
56
- }), e;
57
- }
58
- function _createForOfIteratorHelper(r, e) {
59
- var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
60
- if (!t) {
61
- if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e) {
62
- t && (r = t);
63
- var n = 0,
64
- F = function () {};
65
- return {
66
- s: F,
67
- n: function () {
68
- return n >= r.length ? {
69
- done: !0
70
- } : {
71
- done: !1,
72
- value: r[n++]
73
- };
74
- },
75
- e: function (r) {
76
- throw r;
77
- },
78
- f: F
79
- };
80
- }
81
- throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
82
- }
83
- var o,
84
- a = !0,
85
- u = !1;
86
- return {
87
- s: function () {
88
- t = t.call(r);
89
- },
90
- n: function () {
91
- var r = t.next();
92
- return a = r.done, r;
93
- },
94
- e: function (r) {
95
- u = !0, o = r;
96
- },
97
- f: function () {
98
- try {
99
- a || null == t.return || t.return();
100
- } finally {
101
- if (u) throw o;
102
- }
103
- }
104
- };
105
- }
106
1
  function _defineProperty(e, r, t) {
107
2
  return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
108
3
  value: t,
@@ -111,76 +6,6 @@ function _defineProperty(e, r, t) {
111
6
  writable: !0
112
7
  }) : e[r] = t, e;
113
8
  }
114
- function _get() {
115
- return _get = "undefined" != typeof Reflect && Reflect.get ? Reflect.get.bind() : function (e, t, r) {
116
- var p = _superPropBase(e, t);
117
- if (p) {
118
- var n = Object.getOwnPropertyDescriptor(p, t);
119
- return n.get ? n.get.call(arguments.length < 3 ? e : r) : n.value;
120
- }
121
- }, _get.apply(null, arguments);
122
- }
123
- function _getPrototypeOf(t) {
124
- return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) {
125
- return t.__proto__ || Object.getPrototypeOf(t);
126
- }, _getPrototypeOf(t);
127
- }
128
- function _inherits(t, e) {
129
- if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function");
130
- t.prototype = Object.create(e && e.prototype, {
131
- constructor: {
132
- value: t,
133
- writable: !0,
134
- configurable: !0
135
- }
136
- }), Object.defineProperty(t, "prototype", {
137
- writable: !1
138
- }), e && _setPrototypeOf(t, e);
139
- }
140
- function _isNativeReflectConstruct() {
141
- try {
142
- var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
143
- } catch (t) {}
144
- return (_isNativeReflectConstruct = function () {
145
- return !!t;
146
- })();
147
- }
148
- function _iterableToArray(r) {
149
- if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r);
150
- }
151
- function _iterableToArrayLimit(r, l) {
152
- var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
153
- if (null != t) {
154
- var e,
155
- n,
156
- i,
157
- u,
158
- a = [],
159
- f = !0,
160
- o = !1;
161
- try {
162
- if (i = (t = t.call(r)).next, 0 === l) {
163
- if (Object(t) !== t) return;
164
- f = !1;
165
- } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0);
166
- } catch (r) {
167
- o = !0, n = r;
168
- } finally {
169
- try {
170
- if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return;
171
- } finally {
172
- if (o) throw n;
173
- }
174
- }
175
- return a;
176
- }
177
- }
178
- function _nonIterableRest() {
179
- throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
180
- }
181
- function _nonIterableSpread() {
182
- throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
183
- }
184
9
  function ownKeys(e, r) {
185
10
  var t = Object.keys(e);
186
11
  if (Object.getOwnPropertySymbols) {
@@ -222,327 +47,6 @@ function _objectWithoutPropertiesLoose(r, e) {
222
47
  }
223
48
  return t;
224
49
  }
225
- function _possibleConstructorReturn(t, e) {
226
- if (e && ("object" == typeof e || "function" == typeof e)) return e;
227
- if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined");
228
- return _assertThisInitialized(t);
229
- }
230
- function _regeneratorRuntime() {
231
- _regeneratorRuntime = function () {
232
- return e;
233
- };
234
- var t,
235
- e = {},
236
- r = Object.prototype,
237
- n = r.hasOwnProperty,
238
- o = Object.defineProperty || function (t, e, r) {
239
- t[e] = r.value;
240
- },
241
- i = "function" == typeof Symbol ? Symbol : {},
242
- a = i.iterator || "@@iterator",
243
- c = i.asyncIterator || "@@asyncIterator",
244
- u = i.toStringTag || "@@toStringTag";
245
- function define(t, e, r) {
246
- return Object.defineProperty(t, e, {
247
- value: r,
248
- enumerable: !0,
249
- configurable: !0,
250
- writable: !0
251
- }), t[e];
252
- }
253
- try {
254
- define({}, "");
255
- } catch (t) {
256
- define = function (t, e, r) {
257
- return t[e] = r;
258
- };
259
- }
260
- function wrap(t, e, r, n) {
261
- var i = e && e.prototype instanceof Generator ? e : Generator,
262
- a = Object.create(i.prototype),
263
- c = new Context(n || []);
264
- return o(a, "_invoke", {
265
- value: makeInvokeMethod(t, r, c)
266
- }), a;
267
- }
268
- function tryCatch(t, e, r) {
269
- try {
270
- return {
271
- type: "normal",
272
- arg: t.call(e, r)
273
- };
274
- } catch (t) {
275
- return {
276
- type: "throw",
277
- arg: t
278
- };
279
- }
280
- }
281
- e.wrap = wrap;
282
- var h = "suspendedStart",
283
- l = "suspendedYield",
284
- f = "executing",
285
- s = "completed",
286
- y = {};
287
- function Generator() {}
288
- function GeneratorFunction() {}
289
- function GeneratorFunctionPrototype() {}
290
- var p = {};
291
- define(p, a, function () {
292
- return this;
293
- });
294
- var d = Object.getPrototypeOf,
295
- v = d && d(d(values([])));
296
- v && v !== r && n.call(v, a) && (p = v);
297
- var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p);
298
- function defineIteratorMethods(t) {
299
- ["next", "throw", "return"].forEach(function (e) {
300
- define(t, e, function (t) {
301
- return this._invoke(e, t);
302
- });
303
- });
304
- }
305
- function AsyncIterator(t, e) {
306
- function invoke(r, o, i, a) {
307
- var c = tryCatch(t[r], t, o);
308
- if ("throw" !== c.type) {
309
- var u = c.arg,
310
- h = u.value;
311
- return h && "object" == typeof h && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) {
312
- invoke("next", t, i, a);
313
- }, function (t) {
314
- invoke("throw", t, i, a);
315
- }) : e.resolve(h).then(function (t) {
316
- u.value = t, i(u);
317
- }, function (t) {
318
- return invoke("throw", t, i, a);
319
- });
320
- }
321
- a(c.arg);
322
- }
323
- var r;
324
- o(this, "_invoke", {
325
- value: function (t, n) {
326
- function callInvokeWithMethodAndArg() {
327
- return new e(function (e, r) {
328
- invoke(t, n, e, r);
329
- });
330
- }
331
- return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
332
- }
333
- });
334
- }
335
- function makeInvokeMethod(e, r, n) {
336
- var o = h;
337
- return function (i, a) {
338
- if (o === f) throw Error("Generator is already running");
339
- if (o === s) {
340
- if ("throw" === i) throw a;
341
- return {
342
- value: t,
343
- done: !0
344
- };
345
- }
346
- for (n.method = i, n.arg = a;;) {
347
- var c = n.delegate;
348
- if (c) {
349
- var u = maybeInvokeDelegate(c, n);
350
- if (u) {
351
- if (u === y) continue;
352
- return u;
353
- }
354
- }
355
- if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) {
356
- if (o === h) throw o = s, n.arg;
357
- n.dispatchException(n.arg);
358
- } else "return" === n.method && n.abrupt("return", n.arg);
359
- o = f;
360
- var p = tryCatch(e, r, n);
361
- if ("normal" === p.type) {
362
- if (o = n.done ? s : l, p.arg === y) continue;
363
- return {
364
- value: p.arg,
365
- done: n.done
366
- };
367
- }
368
- "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg);
369
- }
370
- };
371
- }
372
- function maybeInvokeDelegate(e, r) {
373
- var n = r.method,
374
- o = e.iterator[n];
375
- if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y;
376
- var i = tryCatch(o, e.iterator, r.arg);
377
- if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y;
378
- var a = i.arg;
379
- return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y);
380
- }
381
- function pushTryEntry(t) {
382
- var e = {
383
- tryLoc: t[0]
384
- };
385
- 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e);
386
- }
387
- function resetTryEntry(t) {
388
- var e = t.completion || {};
389
- e.type = "normal", delete e.arg, t.completion = e;
390
- }
391
- function Context(t) {
392
- this.tryEntries = [{
393
- tryLoc: "root"
394
- }], t.forEach(pushTryEntry, this), this.reset(!0);
395
- }
396
- function values(e) {
397
- if (e || "" === e) {
398
- var r = e[a];
399
- if (r) return r.call(e);
400
- if ("function" == typeof e.next) return e;
401
- if (!isNaN(e.length)) {
402
- var o = -1,
403
- i = function next() {
404
- for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next;
405
- return next.value = t, next.done = !0, next;
406
- };
407
- return i.next = i;
408
- }
409
- }
410
- throw new TypeError(typeof e + " is not iterable");
411
- }
412
- return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", {
413
- value: GeneratorFunctionPrototype,
414
- configurable: !0
415
- }), o(GeneratorFunctionPrototype, "constructor", {
416
- value: GeneratorFunction,
417
- configurable: !0
418
- }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) {
419
- var e = "function" == typeof t && t.constructor;
420
- return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name));
421
- }, e.mark = function (t) {
422
- return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t;
423
- }, e.awrap = function (t) {
424
- return {
425
- __await: t
426
- };
427
- }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () {
428
- return this;
429
- }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) {
430
- void 0 === i && (i = Promise);
431
- var a = new AsyncIterator(wrap(t, r, n, o), i);
432
- return e.isGeneratorFunction(r) ? a : a.next().then(function (t) {
433
- return t.done ? t.value : a.next();
434
- });
435
- }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () {
436
- return this;
437
- }), define(g, "toString", function () {
438
- return "[object Generator]";
439
- }), e.keys = function (t) {
440
- var e = Object(t),
441
- r = [];
442
- for (var n in e) r.push(n);
443
- return r.reverse(), function next() {
444
- for (; r.length;) {
445
- var t = r.pop();
446
- if (t in e) return next.value = t, next.done = !1, next;
447
- }
448
- return next.done = !0, next;
449
- };
450
- }, e.values = values, Context.prototype = {
451
- constructor: Context,
452
- reset: function (e) {
453
- if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t);
454
- },
455
- stop: function () {
456
- this.done = !0;
457
- var t = this.tryEntries[0].completion;
458
- if ("throw" === t.type) throw t.arg;
459
- return this.rval;
460
- },
461
- dispatchException: function (e) {
462
- if (this.done) throw e;
463
- var r = this;
464
- function handle(n, o) {
465
- return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o;
466
- }
467
- for (var o = this.tryEntries.length - 1; o >= 0; --o) {
468
- var i = this.tryEntries[o],
469
- a = i.completion;
470
- if ("root" === i.tryLoc) return handle("end");
471
- if (i.tryLoc <= this.prev) {
472
- var c = n.call(i, "catchLoc"),
473
- u = n.call(i, "finallyLoc");
474
- if (c && u) {
475
- if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
476
- if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
477
- } else if (c) {
478
- if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
479
- } else {
480
- if (!u) throw Error("try statement without catch or finally");
481
- if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
482
- }
483
- }
484
- }
485
- },
486
- abrupt: function (t, e) {
487
- for (var r = this.tryEntries.length - 1; r >= 0; --r) {
488
- var o = this.tryEntries[r];
489
- if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) {
490
- var i = o;
491
- break;
492
- }
493
- }
494
- i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null);
495
- var a = i ? i.completion : {};
496
- return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a);
497
- },
498
- complete: function (t, e) {
499
- if ("throw" === t.type) throw t.arg;
500
- return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y;
501
- },
502
- finish: function (t) {
503
- for (var e = this.tryEntries.length - 1; e >= 0; --e) {
504
- var r = this.tryEntries[e];
505
- if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y;
506
- }
507
- },
508
- catch: function (t) {
509
- for (var e = this.tryEntries.length - 1; e >= 0; --e) {
510
- var r = this.tryEntries[e];
511
- if (r.tryLoc === t) {
512
- var n = r.completion;
513
- if ("throw" === n.type) {
514
- var o = n.arg;
515
- resetTryEntry(r);
516
- }
517
- return o;
518
- }
519
- }
520
- throw Error("illegal catch attempt");
521
- },
522
- delegateYield: function (e, r, n) {
523
- return this.delegate = {
524
- iterator: values(e),
525
- resultName: r,
526
- nextLoc: n
527
- }, "next" === this.method && (this.arg = t), y;
528
- }
529
- }, e;
530
- }
531
- function _setPrototypeOf(t, e) {
532
- return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) {
533
- return t.__proto__ = e, t;
534
- }, _setPrototypeOf(t, e);
535
- }
536
- function _slicedToArray(r, e) {
537
- return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest();
538
- }
539
- function _superPropBase(t, o) {
540
- for (; !{}.hasOwnProperty.call(t, o) && null !== (t = _getPrototypeOf(t)););
541
- return t;
542
- }
543
- function _toConsumableArray(r) {
544
- return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread();
545
- }
546
50
  function _toPrimitive(t, r) {
547
51
  if ("object" != typeof t || !t) return t;
548
52
  var e = t[Symbol.toPrimitive];
@@ -557,12 +61,5 @@ function _toPropertyKey(t) {
557
61
  var i = _toPrimitive(t, "string");
558
62
  return "symbol" == typeof i ? i : i + "";
559
63
  }
560
- function _unsupportedIterableToArray(r, a) {
561
- if (r) {
562
- if ("string" == typeof r) return _arrayLikeToArray(r, a);
563
- var t = {}.toString.call(r).slice(8, -1);
564
- return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0;
565
- }
566
- }
567
64
 
568
- export { _defineProperty as _, _inherits as a, _createClass as b, _objectWithoutProperties as c, _objectSpread2 as d, _classCallCheck as e, _callSuper as f, _asyncToGenerator as g, _regeneratorRuntime as h, _slicedToArray as i, _toConsumableArray as j, _createForOfIteratorHelper as k, _get as l, _getPrototypeOf as m, _toPropertyKey as n };
65
+ export { _defineProperty as _, _objectWithoutProperties as a, _objectSpread2 as b, _toPropertyKey as c };
@@ -1,4 +1,4 @@
1
- import { c as _objectWithoutProperties, d as _objectSpread2 } from './_rollupPluginBabelHelpers.js';
1
+ import { a as _objectWithoutProperties, b as _objectSpread2 } from './_rollupPluginBabelHelpers.js';
2
2
  import { memo } from 'react';
3
3
  import PropTypes from 'prop-types';
4
4
  import chevronDown from '@jetbrains/icons/chevron-10px';
@@ -9,10 +9,12 @@ import { jsxs, jsx } from 'react/jsx-runtime';
9
9
 
10
10
  var modules_d9414203 = {"light":"light_rui_2ac4","dropdown":"dropdown_rui_8ec5","anchor":"anchor_rui_8ec5","chevron":"chevron_rui_8ec5"};
11
11
 
12
- var _excluded = ["children", "className"];
13
- var Anchor = function Anchor(_ref) {
14
- var children = _ref.children,
15
- className = _ref.className,
12
+ const _excluded = ["children", "className"];
13
+ const Anchor = _ref => {
14
+ let {
15
+ children,
16
+ className
17
+ } = _ref,
16
18
  restProps = _objectWithoutProperties(_ref, _excluded);
17
19
  return /*#__PURE__*/jsxs(Button, _objectSpread2(_objectSpread2({
18
20
  "data-test-ring-dropdown-anchor": true,
@@ -3,19 +3,21 @@ import classNames from 'classnames';
3
3
  var modules_e81895c9 = {"button-shadow":"inset 0 0 0 1px","loaderWidth":"calc(var(--ring-unit)*8)","light":"light_rui_2ac4","heightS":"heightS_rui_6ad6","heightM":"heightM_rui_6ad6","heightL":"heightL_rui_6ad6","button":"button_rui_6ad6","active":"active_rui_6ad6","withIcon":"withIcon_rui_6ad6","icon":"icon_rui_6ad6","primary":"primary_rui_6ad6","loader":"loader_rui_6ad6","loaderBackground":"loaderBackground_rui_6ad6","danger":"danger_rui_6ad6","text":"text_rui_6ad6","content":"content_rui_6ad6","text-loading":"text-loading_rui_6ad6","inline":"inline_rui_6ad6","withNormalIcon":"withNormalIcon_rui_6ad6","withDangerIcon":"withDangerIcon_rui_6ad6","progress":"progress_rui_6ad6","delayed":"delayed_rui_6ad6","short":"short_rui_6ad6","dropdownIcon":"dropdownIcon_rui_6ad6"};
4
4
 
5
5
  function getButtonClasses(_ref) {
6
- var className = _ref.className,
7
- active = _ref.active,
8
- disabled = _ref.disabled,
9
- loader = _ref.loader,
10
- primary = _ref.primary,
11
- short = _ref.short,
12
- text = _ref.text,
13
- inline = _ref.inline,
14
- danger = _ref.danger,
15
- delayed = _ref.delayed,
16
- icon = _ref.icon,
17
- height = _ref.height;
18
- var withNormalIcon = icon && !active && !danger && !primary && !disabled;
6
+ let {
7
+ className,
8
+ active,
9
+ disabled,
10
+ loader,
11
+ primary,
12
+ short,
13
+ text,
14
+ inline,
15
+ danger,
16
+ delayed,
17
+ icon,
18
+ height
19
+ } = _ref;
20
+ const withNormalIcon = icon && !active && !danger && !primary && !disabled;
19
21
  return classNames(modules_e81895c9.button, className, modules_e81895c9["height".concat(height)], {
20
22
  [modules_e81895c9.active]: active,
21
23
  [modules_e81895c9.danger]: danger,
@@ -1,4 +1,4 @@
1
- import { _ as _defineProperty, a as _inherits, b as _createClass, d as _objectSpread2, e as _classCallCheck, f as _callSuper } from './_rollupPluginBabelHelpers.js';
1
+ import { _ as _defineProperty, b as _objectSpread2 } from './_rollupPluginBabelHelpers.js';
2
2
  import { PureComponent } from 'react';
3
3
  import PropTypes from 'prop-types';
4
4
  import classNames from 'classnames';
@@ -6,23 +6,17 @@ import { jsx } from 'react/jsx-runtime';
6
6
 
7
7
  var modules_1068e447 = {"button":"button_rui_6ad6","active":"active_rui_6ad6","primary":"primary_rui_6ad6","button-shadow":"i__const_button_shadow_3","buttonGroup":"buttonGroup_rui_f794 common_rui_f794 buttonGroup_rui_5c90","light":"light_rui_2ac4","common":"common_rui_f794","split":"split_rui_f794 common_rui_f794 buttonGroup_rui_5c90","caption":"caption_rui_f794 font_rui_f295","help":"help_rui_f794"};
8
8
 
9
- var Caption = /*#__PURE__*/function (_PureComponent) {
10
- function Caption() {
11
- _classCallCheck(this, Caption);
12
- return _callSuper(this, Caption, arguments);
9
+ class Caption extends PureComponent {
10
+ render() {
11
+ const {
12
+ className
13
+ } = this.props;
14
+ const classes = classNames(modules_1068e447.caption, className);
15
+ return /*#__PURE__*/jsx("span", _objectSpread2(_objectSpread2({}, this.props), {}, {
16
+ className: classes
17
+ }));
13
18
  }
14
- _inherits(Caption, _PureComponent);
15
- return _createClass(Caption, [{
16
- key: "render",
17
- value: function render() {
18
- var className = this.props.className;
19
- var classes = classNames(modules_1068e447.caption, className);
20
- return /*#__PURE__*/jsx("span", _objectSpread2(_objectSpread2({}, this.props), {}, {
21
- className: classes
22
- }));
23
- }
24
- }]);
25
- }(PureComponent);
19
+ }
26
20
  _defineProperty(Caption, "propTypes", {
27
21
  className: PropTypes.node
28
22
  });