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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (336) hide show
  1. package/components/_helpers/_rollupPluginBabelHelpers.js +1 -504
  2. package/components/_helpers/anchor.js +7 -10
  3. package/components/_helpers/button__classes.js +15 -13
  4. package/components/_helpers/caption.js +11 -21
  5. package/components/_helpers/card.js +91 -123
  6. package/components/_helpers/dialog__body-scroll-preventer.js +10 -17
  7. package/components/_helpers/icon__svg.js +27 -29
  8. package/components/_helpers/input.js +150 -192
  9. package/components/_helpers/query-assist__suggestions.js +78 -93
  10. package/components/_helpers/select__filter.js +56 -75
  11. package/components/_helpers/services-link.js +23 -39
  12. package/components/_helpers/sidebar.js +91 -102
  13. package/components/_helpers/tab-link.js +8 -12
  14. package/components/_helpers/theme.js +42 -51
  15. package/components/_helpers/title.js +59 -84
  16. package/components/alert/alert.d.ts +7 -24
  17. package/components/alert/alert.js +111 -179
  18. package/components/alert/container.d.ts +0 -5
  19. package/components/alert/container.js +32 -44
  20. package/components/alert-service/alert-service.js +104 -162
  21. package/components/analytics/analytics.js +12 -20
  22. package/components/analytics/analytics__custom-plugin.js +52 -68
  23. package/components/auth/auth.js +2 -28
  24. package/components/auth/auth__core.d.ts +4 -4
  25. package/components/auth/auth__core.js +753 -1431
  26. package/components/auth/background-flow.js +84 -121
  27. package/components/auth/down-notification.js +31 -78
  28. package/components/auth/iframe-flow.js +70 -124
  29. package/components/auth/request-builder.js +46 -77
  30. package/components/auth/response-parser.js +84 -112
  31. package/components/auth/storage.js +160 -319
  32. package/components/auth/token-validator.js +132 -227
  33. package/components/auth/window-flow.js +84 -121
  34. package/components/auth-dialog/auth-dialog.d.ts +0 -18
  35. package/components/auth-dialog/auth-dialog.js +106 -175
  36. package/components/auth-dialog-service/auth-dialog-service.js +10 -31
  37. package/components/avatar/avatar-example-datauri.js +1 -1
  38. package/components/avatar/avatar.d.ts +0 -13
  39. package/components/avatar/avatar.js +94 -136
  40. package/components/avatar/fallback-avatar.d.ts +1 -10
  41. package/components/avatar/fallback-avatar.js +20 -40
  42. package/components/badge/badge.d.ts +0 -10
  43. package/components/badge/badge.js +32 -48
  44. package/components/breadcrumbs/breadcrumbs.js +13 -17
  45. package/components/button/button.d.ts +0 -21
  46. package/components/button/button.js +67 -101
  47. package/components/button-group/button-group.d.ts +0 -5
  48. package/components/button-group/button-group.js +27 -41
  49. package/components/button-group/caption.d.ts +0 -4
  50. package/components/button-group/caption.js +0 -1
  51. package/components/button-set/button-set.d.ts +0 -6
  52. package/components/button-set/button-set.js +19 -33
  53. package/components/button-toolbar/button-toolbar.d.ts +0 -6
  54. package/components/button-toolbar/button-toolbar.js +17 -31
  55. package/components/caret/caret.js +184 -211
  56. package/components/checkbox/checkbox.d.ts +0 -19
  57. package/components/checkbox/checkbox.js +69 -104
  58. package/components/clipboard/clipboard-fallback.js +7 -7
  59. package/components/clipboard/clipboard.js +36 -129
  60. package/components/code/code.d.ts +0 -12
  61. package/components/code/code.js +83 -163
  62. package/components/collapse/collapse-content.js +42 -60
  63. package/components/collapse/collapse-context.js +2 -2
  64. package/components/collapse/collapse-control.js +12 -12
  65. package/components/collapse/collapse.js +12 -17
  66. package/components/collapse/consts.js +4 -4
  67. package/components/collapse/utils.js +1 -3
  68. package/components/confirm/confirm.d.ts +0 -14
  69. package/components/confirm/confirm.js +67 -111
  70. package/components/confirm-service/confirm-service.js +23 -45
  71. package/components/content-layout/content-layout.d.ts +0 -7
  72. package/components/content-layout/content-layout.js +41 -63
  73. package/components/content-layout/sidebar.d.ts +0 -9
  74. package/components/content-layout/sidebar.js +1 -2
  75. package/components/contenteditable/contenteditable.d.ts +1 -22
  76. package/components/contenteditable/contenteditable.js +37 -60
  77. package/components/control-help/control-help.js +5 -3
  78. package/components/control-label/control-label.js +9 -14
  79. package/components/data-list/data-list.d.ts +0 -2
  80. package/components/data-list/data-list.js +115 -179
  81. package/components/data-list/data-list.mock.js +3 -6
  82. package/components/data-list/item.js +118 -164
  83. package/components/data-list/selection.js +77 -135
  84. package/components/data-list/title.d.ts +2 -2
  85. package/components/data-list/title.js +2 -12
  86. package/components/date-picker/consts.d.ts +0 -2
  87. package/components/date-picker/consts.js +16 -24
  88. package/components/date-picker/date-input.d.ts +0 -20
  89. package/components/date-picker/date-input.js +99 -147
  90. package/components/date-picker/date-picker.d.ts +0 -29
  91. package/components/date-picker/date-picker.js +143 -224
  92. package/components/date-picker/date-popup.d.ts +0 -22
  93. package/components/date-picker/date-popup.js +281 -351
  94. package/components/date-picker/day.d.ts +0 -14
  95. package/components/date-picker/day.js +72 -109
  96. package/components/date-picker/month-names.d.ts +1 -11
  97. package/components/date-picker/month-names.js +42 -72
  98. package/components/date-picker/month-slider.d.ts +0 -9
  99. package/components/date-picker/month-slider.js +43 -71
  100. package/components/date-picker/month.d.ts +1 -9
  101. package/components/date-picker/month.js +18 -30
  102. package/components/date-picker/months.d.ts +1 -9
  103. package/components/date-picker/months.js +45 -55
  104. package/components/date-picker/weekdays.d.ts +2 -8
  105. package/components/date-picker/weekdays.js +12 -25
  106. package/components/date-picker/years.d.ts +0 -6
  107. package/components/date-picker/years.js +77 -104
  108. package/components/dialog/dialog.d.ts +0 -20
  109. package/components/dialog/dialog.js +152 -210
  110. package/components/dialog/dialog__body-scroll-preventer.js +0 -3
  111. package/components/dropdown/anchor.d.ts +1 -8
  112. package/components/dropdown/anchor.js +0 -7
  113. package/components/dropdown/dropdown.d.ts +4 -22
  114. package/components/dropdown/dropdown.js +134 -176
  115. package/components/dropdown-menu/dropdown-menu.js +51 -103
  116. package/components/editable-heading/editable-heading.js +69 -118
  117. package/components/error-bubble/error-bubble.d.ts +0 -6
  118. package/components/error-bubble/error-bubble.js +29 -60
  119. package/components/error-message/error-message.d.ts +0 -10
  120. package/components/error-message/error-message.js +34 -59
  121. package/components/footer/footer.js +27 -43
  122. package/components/global/compose.js +1 -8
  123. package/components/global/composeRefs.d.ts +0 -3
  124. package/components/global/composeRefs.js +8 -15
  125. package/components/global/controls-height.js +2 -2
  126. package/components/global/create-stateful-context.d.ts +0 -4
  127. package/components/global/create-stateful-context.js +14 -17
  128. package/components/global/data-tests.js +7 -12
  129. package/components/global/dom.js +49 -82
  130. package/components/global/focus-sensor-hoc.js +95 -122
  131. package/components/global/fuzzy-highlight.js +23 -34
  132. package/components/global/get-event-key.js +8 -8
  133. package/components/global/get-uid.js +3 -7
  134. package/components/global/inject-styles.js +7 -14
  135. package/components/global/listeners.js +28 -47
  136. package/components/global/memoize.js +6 -10
  137. package/components/global/normalize-indent.js +19 -46
  138. package/components/global/promise-with-timeout.js +6 -8
  139. package/components/global/react-dom-renderer.d.ts +0 -5
  140. package/components/global/react-dom-renderer.js +29 -45
  141. package/components/global/rerender-hoc.js +16 -32
  142. package/components/global/schedule-raf.js +4 -4
  143. package/components/global/sniffer.js +1 -1
  144. package/components/global/theme.d.ts +1 -0
  145. package/components/global/theme.js +2 -20
  146. package/components/global/trivial-template-tag.js +4 -9
  147. package/components/global/typescript-utils.js +2 -6
  148. package/components/global/url.js +20 -23
  149. package/components/global/use-event-callback.js +7 -4
  150. package/components/grid/col.d.ts +0 -14
  151. package/components/grid/col.js +26 -53
  152. package/components/grid/grid.d.ts +0 -5
  153. package/components/grid/grid.js +18 -32
  154. package/components/grid/row.d.ts +0 -18
  155. package/components/grid/row.js +22 -47
  156. package/components/group/group.d.ts +0 -5
  157. package/components/group/group.js +16 -27
  158. package/components/header/header-icon.d.ts +0 -22
  159. package/components/header/header-icon.js +19 -36
  160. package/components/header/header.d.ts +0 -7
  161. package/components/header/header.js +30 -71
  162. package/components/header/links.js +6 -3
  163. package/components/header/logo.d.ts +0 -4
  164. package/components/header/logo.js +15 -30
  165. package/components/header/profile.d.ts +1 -39
  166. package/components/header/profile.js +125 -190
  167. package/components/header/services-link.d.ts +0 -10
  168. package/components/header/services-link.js +1 -4
  169. package/components/header/services.d.ts +0 -14
  170. package/components/header/services.js +65 -110
  171. package/components/header/smart-profile.d.ts +0 -9
  172. package/components/header/smart-profile.js +119 -205
  173. package/components/header/smart-services.d.ts +0 -4
  174. package/components/header/smart-services.js +72 -141
  175. package/components/header/tray.d.ts +0 -5
  176. package/components/header/tray.js +21 -35
  177. package/components/heading/heading.js +21 -26
  178. package/components/http/http.js +162 -319
  179. package/components/http/http.mock.js +50 -98
  180. package/components/hub-source/hub-source.js +77 -182
  181. package/components/hub-source/hub-source__user.js +9 -37
  182. package/components/hub-source/hub-source__users-groups.js +34 -60
  183. package/components/i18n/i18n-context.js +7 -8
  184. package/components/i18n/i18n.js +3 -6
  185. package/components/icon/icon.d.ts +0 -11
  186. package/components/icon/icon.js +60 -85
  187. package/components/icon/icon__svg.d.ts +0 -8
  188. package/components/icon/icon__svg.js +0 -6
  189. package/components/icon/index.js +0 -6
  190. package/components/input/input.js +1 -13
  191. package/components/island/adaptive-island-hoc.d.ts +0 -1
  192. package/components/island/adaptive-island-hoc.js +30 -39
  193. package/components/island/content.d.ts +0 -10
  194. package/components/island/content.js +99 -119
  195. package/components/island/header.js +55 -73
  196. package/components/island/island.d.ts +0 -9
  197. package/components/island/island.js +25 -41
  198. package/components/island-legacy/content-legacy.d.ts +0 -5
  199. package/components/island-legacy/content-legacy.js +16 -27
  200. package/components/island-legacy/header-legacy.d.ts +0 -5
  201. package/components/island-legacy/header-legacy.js +19 -30
  202. package/components/island-legacy/island-legacy.d.ts +0 -5
  203. package/components/island-legacy/island-legacy.js +16 -27
  204. package/components/link/clickableLink.d.ts +0 -9
  205. package/components/link/clickableLink.js +33 -51
  206. package/components/link/link.d.ts +0 -25
  207. package/components/link/link.js +47 -68
  208. package/components/list/consts.js +2 -2
  209. package/components/list/list.d.ts +0 -32
  210. package/components/list/list.js +399 -516
  211. package/components/list/list__custom.js +51 -78
  212. package/components/list/list__hint.d.ts +0 -4
  213. package/components/list/list__hint.js +8 -21
  214. package/components/list/list__item.js +147 -211
  215. package/components/list/list__link.js +39 -59
  216. package/components/list/list__separator.js +15 -30
  217. package/components/list/list__title.js +25 -41
  218. package/components/list/list__users-groups-source.js +55 -123
  219. package/components/loader/loader.d.ts +0 -10
  220. package/components/loader/loader.js +38 -70
  221. package/components/loader/loader__core.js +123 -184
  222. package/components/loader-inline/loader-inline.d.ts +0 -6
  223. package/components/loader-inline/loader-inline.js +24 -38
  224. package/components/loader-screen/loader-screen.d.ts +0 -6
  225. package/components/loader-screen/loader-screen.js +24 -46
  226. package/components/login-dialog/login-dialog.d.ts +0 -11
  227. package/components/login-dialog/login-dialog.js +93 -144
  228. package/components/login-dialog/service.js +9 -31
  229. package/components/markdown/markdown.js +16 -29
  230. package/components/message/message.js +170 -217
  231. package/components/old-browsers-message/old-browsers-message.js +11 -14
  232. package/components/old-browsers-message/old-browsers-message__stop.js +1 -4
  233. package/components/old-browsers-message/white-list.js +8 -13
  234. package/components/pager/pager.js +212 -277
  235. package/components/panel/panel.d.ts +0 -5
  236. package/components/panel/panel.js +16 -27
  237. package/components/permissions/permissions.js +118 -161
  238. package/components/permissions/permissions__cache.js +191 -218
  239. package/components/popup/popup.consts.js +1 -1
  240. package/components/popup/popup.js +237 -329
  241. package/components/popup/popup.target.js +9 -12
  242. package/components/popup/position.js +94 -101
  243. package/components/popup-menu/popup-menu.js +31 -76
  244. package/components/progress-bar/progress-bar.d.ts +19 -33
  245. package/components/progress-bar/progress-bar.js +55 -99
  246. package/components/query-assist/query-assist.d.ts +63 -93
  247. package/components/query-assist/query-assist.js +583 -746
  248. package/components/query-assist/query-assist__suggestions.js +2 -28
  249. package/components/radio/radio.d.ts +0 -8
  250. package/components/radio/radio.js +15 -35
  251. package/components/radio/radio__item.d.ts +0 -9
  252. package/components/radio/radio__item.js +52 -72
  253. package/components/scrollable-section/scrollable-section.js +22 -32
  254. package/components/select/select.js +693 -858
  255. package/components/select/select__filter.js +1 -28
  256. package/components/select/select__popup.js +317 -465
  257. package/components/shortcuts/core.js +147 -195
  258. package/components/shortcuts/shortcut-title.js +6 -10
  259. package/components/shortcuts/shortcuts-hoc.d.ts +0 -5
  260. package/components/shortcuts/shortcuts-hoc.js +23 -46
  261. package/components/shortcuts/shortcuts.d.ts +0 -8
  262. package/components/shortcuts/shortcuts.js +41 -72
  263. package/components/slider/slider.js +93 -113
  264. package/components/slider/slider.utils.js +16 -23
  265. package/components/storage/storage.js +3 -28
  266. package/components/storage/storage__fallback.js +137 -210
  267. package/components/storage/storage__local.js +89 -148
  268. package/components/style.css +1 -1
  269. package/components/tab-trap/tab-trap.js +35 -61
  270. package/components/table/cell.d.ts +0 -6
  271. package/components/table/cell.js +11 -27
  272. package/components/table/disable-hover-hoc.d.ts +0 -1
  273. package/components/table/disable-hover-hoc.js +27 -42
  274. package/components/table/header-cell.d.ts +0 -10
  275. package/components/table/header-cell.js +59 -85
  276. package/components/table/header.d.ts +0 -15
  277. package/components/table/header.js +89 -126
  278. package/components/table/multitable.d.ts +0 -4
  279. package/components/table/multitable.js +83 -93
  280. package/components/table/row-with-focus-sensor.d.ts +2 -2
  281. package/components/table/row-with-focus-sensor.js +25 -60
  282. package/components/table/row.js +169 -235
  283. package/components/table/selection-adapter.js +2 -2
  284. package/components/table/selection-shortcuts-hoc.js +102 -126
  285. package/components/table/selection.js +150 -217
  286. package/components/table/simple-table.d.ts +0 -44
  287. package/components/table/simple-table.js +17 -59
  288. package/components/table/smart-table.d.ts +0 -48
  289. package/components/table/smart-table.js +40 -83
  290. package/components/table/table.d.ts +0 -2
  291. package/components/table/table.js +268 -377
  292. package/components/tabs/collapsible-more.d.ts +1 -9
  293. package/components/tabs/collapsible-more.js +47 -97
  294. package/components/tabs/collapsible-tab.js +32 -44
  295. package/components/tabs/collapsible-tabs.d.ts +2 -29
  296. package/components/tabs/collapsible-tabs.js +89 -161
  297. package/components/tabs/custom-item.d.ts +1 -7
  298. package/components/tabs/custom-item.js +4 -7
  299. package/components/tabs/dumb-tabs.d.ts +0 -11
  300. package/components/tabs/dumb-tabs.js +60 -104
  301. package/components/tabs/smart-tabs.d.ts +0 -6
  302. package/components/tabs/smart-tabs.js +29 -68
  303. package/components/tabs/tab-link.d.ts +0 -8
  304. package/components/tabs/tab-link.js +1 -4
  305. package/components/tabs/tab.d.ts +0 -8
  306. package/components/tabs/tab.js +14 -32
  307. package/components/tabs/tabs.js +1 -28
  308. package/components/tag/tag.d.ts +0 -19
  309. package/components/tag/tag.js +120 -179
  310. package/components/tags-input/tags-input.d.ts +7 -33
  311. package/components/tags-input/tags-input.js +223 -338
  312. package/components/tags-list/tags-list.d.ts +0 -13
  313. package/components/tags-list/tags-list.js +45 -74
  314. package/components/text/text.d.ts +0 -7
  315. package/components/text/text.js +27 -43
  316. package/components/toggle/toggle.d.ts +0 -15
  317. package/components/toggle/toggle.js +51 -76
  318. package/components/tooltip/tooltip.d.ts +0 -9
  319. package/components/tooltip/tooltip.js +109 -150
  320. package/components/user-agreement/service.js +259 -401
  321. package/components/user-agreement/user-agreement.d.ts +0 -18
  322. package/components/user-agreement/user-agreement.js +91 -137
  323. package/components/user-card/card.d.ts +0 -35
  324. package/components/user-card/card.js +1 -26
  325. package/components/user-card/smart-user-card-tooltip.d.ts +0 -5
  326. package/components/user-card/smart-user-card-tooltip.js +52 -108
  327. package/components/user-card/tooltip.d.ts +0 -9
  328. package/components/user-card/tooltip.js +35 -74
  329. package/components/user-card/user-card.js +1 -26
  330. package/package.json +1 -2
  331. package/components/global/prop-types.d.ts +0 -4
  332. package/components/global/prop-types.js +0 -9
  333. package/components/global/react-render-adapter.d.ts +0 -1
  334. package/components/global/react-render-adapter.js +0 -6
  335. package/components/header/tray-icon.d.ts +0 -1
  336. 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,6 +1,5 @@
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
- import PropTypes from 'prop-types';
4
3
  import chevronDown from '@jetbrains/icons/chevron-10px';
5
4
  import classNames from 'classnames';
6
5
  import Icon from '../icon/icon.js';
@@ -9,10 +8,12 @@ import { jsxs, jsx } from 'react/jsx-runtime';
9
8
 
10
9
  var modules_d9414203 = {"light":"light_rui_2ac4","dropdown":"dropdown_rui_8ec5","anchor":"anchor_rui_8ec5","chevron":"chevron_rui_8ec5"};
11
10
 
12
- var _excluded = ["children", "className"];
13
- var Anchor = function Anchor(_ref) {
14
- var children = _ref.children,
15
- className = _ref.className,
11
+ const _excluded = ["children", "className"];
12
+ const Anchor = _ref => {
13
+ let {
14
+ children,
15
+ className
16
+ } = _ref,
16
17
  restProps = _objectWithoutProperties(_ref, _excluded);
17
18
  return /*#__PURE__*/jsxs(Button, _objectSpread2(_objectSpread2({
18
19
  "data-test-ring-dropdown-anchor": true,
@@ -25,10 +26,6 @@ var Anchor = function Anchor(_ref) {
25
26
  })]
26
27
  }));
27
28
  };
28
- Anchor.propTypes = {
29
- children: PropTypes.node,
30
- className: PropTypes.string
31
- };
32
29
  var Anchor$1 = /*#__PURE__*/memo(Anchor);
33
30
 
34
31
  export { Anchor$1 as A, modules_d9414203 as m };
@@ -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,30 +1,20 @@
1
- import { _ as _defineProperty, a as _inherits, b as _createClass, d as _objectSpread2, e as _classCallCheck, f as _callSuper } from './_rollupPluginBabelHelpers.js';
1
+ import { b as _objectSpread2 } from './_rollupPluginBabelHelpers.js';
2
2
  import { PureComponent } from 'react';
3
- import PropTypes from 'prop-types';
4
3
  import classNames from 'classnames';
5
4
  import { jsx } from 'react/jsx-runtime';
6
5
 
7
6
  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
7
 
9
- var Caption = /*#__PURE__*/function (_PureComponent) {
10
- function Caption() {
11
- _classCallCheck(this, Caption);
12
- return _callSuper(this, Caption, arguments);
8
+ class Caption extends PureComponent {
9
+ render() {
10
+ const {
11
+ className
12
+ } = this.props;
13
+ const classes = classNames(modules_1068e447.caption, className);
14
+ return /*#__PURE__*/jsx("span", _objectSpread2(_objectSpread2({}, this.props), {}, {
15
+ className: classes
16
+ }));
13
17
  }
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);
26
- _defineProperty(Caption, "propTypes", {
27
- className: PropTypes.node
28
- });
18
+ }
29
19
 
30
20
  export { Caption as C, modules_1068e447 as m };