@jetbrains/ring-ui 4.2.9 → 4.2.10

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 (315) hide show
  1. package/dist/_helpers/_rollupPluginBabelHelpers.js +34 -0
  2. package/dist/_helpers/anchor.js +33 -0
  3. package/dist/_helpers/badge.js +3 -0
  4. package/dist/_helpers/button-group.js +3 -0
  5. package/dist/_helpers/button-set.js +3 -0
  6. package/dist/_helpers/button-toolbar.js +3 -0
  7. package/dist/_helpers/button__classes.js +39 -0
  8. package/dist/_helpers/card.js +75 -0
  9. package/dist/_helpers/checkbox.js +3 -0
  10. package/dist/_helpers/date-picker.js +3 -0
  11. package/dist/_helpers/dialog__body-scroll-preventer.js +58 -0
  12. package/dist/_helpers/error-message.js +3 -0
  13. package/dist/_helpers/footer.js +121 -0
  14. package/dist/_helpers/grid.js +3 -0
  15. package/dist/_helpers/group.js +3 -0
  16. package/dist/_helpers/header.js +3 -0
  17. package/dist/_helpers/icon.js +3 -0
  18. package/dist/_helpers/inject-styles.js +22 -0
  19. package/dist/_helpers/input.js +3 -0
  20. package/dist/_helpers/island.js +3 -0
  21. package/dist/_helpers/link.js +3 -0
  22. package/dist/_helpers/list.js +3 -0
  23. package/dist/_helpers/loader-screen.js +3 -0
  24. package/dist/_helpers/panel.js +3 -0
  25. package/dist/_helpers/query-assist__suggestions.js +95 -0
  26. package/dist/_helpers/radio.js +3 -0
  27. package/dist/_helpers/select__filter.js +77 -0
  28. package/dist/_helpers/services-link.js +40 -0
  29. package/dist/_helpers/sidebar.js +126 -0
  30. package/dist/_helpers/table.js +3 -0
  31. package/dist/_helpers/tabs.js +3 -0
  32. package/dist/_helpers/title.js +100 -0
  33. package/dist/alert/alert.js +262 -0
  34. package/dist/alert/container.js +48 -0
  35. package/dist/alert-service/alert-service.js +173 -0
  36. package/dist/analytics/analytics.js +118 -0
  37. package/dist/analytics/analytics__custom-plugin.js +128 -0
  38. package/dist/analytics/analytics__fus-plugin.js +102 -0
  39. package/dist/analytics/analytics__ga-plugin.js +75 -0
  40. package/dist/analytics/analytics__plugin-utils.js +80 -0
  41. package/dist/analytics-ng/analytics-ng.js +95 -0
  42. package/dist/auth/auth.js +96 -0
  43. package/dist/auth/auth__core.js +1065 -0
  44. package/dist/auth/background-flow.js +123 -0
  45. package/dist/auth/down-notification.js +117 -0
  46. package/dist/auth/iframe-flow.js +153 -0
  47. package/dist/auth/landing-entry.js +5 -0
  48. package/dist/auth/landing.js +90 -0
  49. package/dist/auth/request-builder.js +76 -0
  50. package/dist/auth/response-parser.js +118 -0
  51. package/dist/auth/storage.js +283 -0
  52. package/dist/auth/token-validator.js +180 -0
  53. package/dist/auth/window-flow.js +134 -0
  54. package/dist/auth-dialog/auth-dialog.js +180 -0
  55. package/dist/auth-dialog-service/auth-dialog-service.js +71 -0
  56. package/dist/auth-ng/auth-ng.js +206 -0
  57. package/dist/auth-ng/auth-ng.mock.js +33 -0
  58. package/dist/autofocus-ng/autofocus-ng.js +51 -0
  59. package/dist/avatar/avatar-example-datauri.js +4 -0
  60. package/dist/avatar/avatar.js +163 -0
  61. package/dist/avatar/fallback-avatar.js +142 -0
  62. package/dist/avatar-editor-ng/avatar-editor-ng.js +167 -0
  63. package/dist/avatar-editor-ng/avatar-editor-ng__template.js +3 -0
  64. package/dist/avatar-ng/avatar-ng.js +21 -0
  65. package/dist/badge/badge.js +51 -0
  66. package/dist/badge-ng/badge-ng.js +18 -0
  67. package/dist/breadcrumb-ng/breadcrumb-ng.js +37 -0
  68. package/dist/button/button.js +125 -0
  69. package/dist/button/button__classes.js +5 -0
  70. package/dist/button-group/button-group.js +30 -0
  71. package/dist/button-group/caption.js +24 -0
  72. package/dist/button-group-ng/button-group-ng.js +39 -0
  73. package/dist/button-ng/button-ng.js +217 -0
  74. package/dist/button-set/button-set.js +26 -0
  75. package/dist/button-set-ng/button-set-ng.js +19 -0
  76. package/dist/button-toolbar/button-toolbar.js +29 -0
  77. package/dist/button-toolbar-ng/button-toolbar-ng.js +24 -0
  78. package/dist/caret/caret.js +266 -0
  79. package/dist/checkbox/checkbox.js +110 -0
  80. package/dist/checkbox-ng/checkbox-ng.js +38 -0
  81. package/dist/code/code.js +137 -0
  82. package/dist/compiler-ng/compiler-ng.js +53 -0
  83. package/dist/confirm/confirm.js +127 -0
  84. package/dist/confirm-ng/confirm-ng.js +69 -0
  85. package/dist/confirm-service/confirm-service.js +117 -0
  86. package/dist/content-layout/content-layout.js +66 -0
  87. package/dist/content-layout/sidebar.js +7 -0
  88. package/dist/contenteditable/contenteditable.js +78 -0
  89. package/dist/data-list/data-list.js +208 -0
  90. package/dist/data-list/data-list.mock.js +191 -0
  91. package/dist/data-list/item.js +229 -0
  92. package/dist/data-list/selection.js +102 -0
  93. package/dist/data-list/title.js +20 -0
  94. package/dist/data-list-ng/data-list-ng.js +62 -0
  95. package/dist/date-picker/consts.js +69 -0
  96. package/dist/date-picker/date-input.js +175 -0
  97. package/dist/date-picker/date-picker.js +367 -0
  98. package/dist/date-picker/date-popup.js +483 -0
  99. package/dist/date-picker/day.js +120 -0
  100. package/dist/date-picker/formats.js +3 -0
  101. package/dist/date-picker/month-names.js +100 -0
  102. package/dist/date-picker/month-slider.js +84 -0
  103. package/dist/date-picker/month.js +55 -0
  104. package/dist/date-picker/months.js +122 -0
  105. package/dist/date-picker/weekdays.js +32 -0
  106. package/dist/date-picker/years.js +110 -0
  107. package/dist/dialog/dialog.js +205 -0
  108. package/dist/dialog/dialog__body-scroll-preventer.js +3 -0
  109. package/dist/dialog-ng/dialog-ng.js +604 -0
  110. package/dist/dialog-ng/dialog-ng__template.js +3 -0
  111. package/dist/docked-panel-ng/docked-panel-ng.js +171 -0
  112. package/dist/dropdown/anchor.js +19 -0
  113. package/dist/dropdown/dropdown.js +236 -0
  114. package/dist/dropdown-menu/dropdown-menu.js +177 -0
  115. package/dist/error-bubble/error-bubble.js +59 -0
  116. package/dist/error-message/error-message.js +57 -0
  117. package/dist/error-message-ng/error-message-ng.js +35 -0
  118. package/dist/footer/footer.js +12 -0
  119. package/dist/footer-ng/footer-ng.js +64 -0
  120. package/dist/form-ng/form-ng.js +167 -0
  121. package/dist/global/angular-component-factory.js +84 -0
  122. package/dist/global/compose.js +9 -0
  123. package/dist/global/composeRefs.js +15 -0
  124. package/dist/global/conic-gradient.js +35 -0
  125. package/dist/global/create-stateful-context.js +55 -0
  126. package/dist/global/data-tests.js +24 -0
  127. package/dist/global/dom.js +125 -0
  128. package/dist/global/focus-sensor-hoc.js +146 -0
  129. package/dist/global/fuzzy-highlight.js +67 -0
  130. package/dist/global/get-event-key.js +111 -0
  131. package/dist/global/get-uid.js +15 -0
  132. package/dist/global/inject-styles.js +15 -0
  133. package/dist/global/linear-function.js +17 -0
  134. package/dist/global/listeners.js +44 -0
  135. package/dist/global/memoize.js +20 -0
  136. package/dist/global/normalize-indent.js +30 -0
  137. package/dist/global/promise-with-timeout.js +17 -0
  138. package/dist/global/radial-gradient-mask.js +38 -0
  139. package/dist/global/react-dom-renderer.js +46 -0
  140. package/dist/global/react-render-adapter.js +41 -0
  141. package/dist/global/rerender-hoc.js +55 -0
  142. package/dist/global/ring-angular-component.js +24 -0
  143. package/dist/global/schedule-raf.js +31 -0
  144. package/dist/global/sniffer.js +6 -0
  145. package/dist/global/supports-css.js +22 -0
  146. package/dist/global/theme.js +54 -0
  147. package/dist/global/trivial-template-tag.js +17 -0
  148. package/dist/global/url.js +165 -0
  149. package/dist/global/variables_dark.js +57 -0
  150. package/dist/grid/col.js +60 -0
  151. package/dist/grid/grid.js +33 -0
  152. package/dist/grid/row.js +64 -0
  153. package/dist/group/group.js +31 -0
  154. package/dist/group-ng/group-ng.js +11 -0
  155. package/dist/header/header.js +150 -0
  156. package/dist/header/logo.js +40 -0
  157. package/dist/header/profile.js +219 -0
  158. package/dist/header/services-link.js +12 -0
  159. package/dist/header/services.js +138 -0
  160. package/dist/header/smart-profile.js +233 -0
  161. package/dist/header/smart-services.js +163 -0
  162. package/dist/header/tray-icon.js +47 -0
  163. package/dist/header/tray.js +31 -0
  164. package/dist/heading/heading.js +73 -0
  165. package/dist/http/http.js +218 -0
  166. package/dist/http/http.mock.js +67 -0
  167. package/dist/hub-source/hub-source.js +130 -0
  168. package/dist/hub-source/hub-source__user.js +30 -0
  169. package/dist/hub-source/hub-source__users-groups.js +63 -0
  170. package/dist/icon/icon.js +105 -0
  171. package/dist/icon/icon__constants.js +33 -0
  172. package/dist/icon/icon__svg.js +83 -0
  173. package/dist/icon/index.js +12 -0
  174. package/dist/icon-ng/icon-ng.js +91 -0
  175. package/dist/input/input.js +230 -0
  176. package/dist/input-ng/input-ng.js +111 -0
  177. package/dist/island/adaptive-island-hoc.js +48 -0
  178. package/dist/island/content.js +160 -0
  179. package/dist/island/header.js +84 -0
  180. package/dist/island/island.js +51 -0
  181. package/dist/island-legacy/content-legacy.js +26 -0
  182. package/dist/island-legacy/header-legacy.js +28 -0
  183. package/dist/island-legacy/island-legacy.js +28 -0
  184. package/dist/island-ng/island-content-ng.js +42 -0
  185. package/dist/island-ng/island-header-ng.js +26 -0
  186. package/dist/island-ng/island-ng-class-fixer.js +11 -0
  187. package/dist/island-ng/island-ng.js +25 -0
  188. package/dist/link/clickableLink.js +64 -0
  189. package/dist/link/link.js +115 -0
  190. package/dist/link-ng/link-ng.js +22 -0
  191. package/dist/list/consts.js +26 -0
  192. package/dist/list/list.js +822 -0
  193. package/dist/list/list__custom.js +86 -0
  194. package/dist/list/list__hint.js +26 -0
  195. package/dist/list/list__item.js +206 -0
  196. package/dist/list/list__link.js +65 -0
  197. package/dist/list/list__separator.js +30 -0
  198. package/dist/list/list__title.js +39 -0
  199. package/dist/list/list__users-groups-source.js +130 -0
  200. package/dist/loader/loader.js +71 -0
  201. package/dist/loader/loader__core.js +273 -0
  202. package/dist/loader-inline/inject-styles.js +13 -0
  203. package/dist/loader-inline/loader-inline.js +58 -0
  204. package/dist/loader-inline-ng/loader-inline-ng.js +44 -0
  205. package/dist/loader-ng/loader-ng.js +44 -0
  206. package/dist/loader-screen/loader-screen.js +44 -0
  207. package/dist/loader-screen-ng/loader-screen-ng.js +95 -0
  208. package/dist/login-dialog/login-dialog.js +188 -0
  209. package/dist/login-dialog/service.js +72 -0
  210. package/dist/markdown/code.js +31 -0
  211. package/dist/markdown/heading.js +23 -0
  212. package/dist/markdown/link.js +31 -0
  213. package/dist/markdown/markdown.js +74 -0
  214. package/dist/message/message.js +235 -0
  215. package/dist/message-bundle-ng/message-bundle-ng.js +111 -0
  216. package/dist/old-browsers-message/old-browsers-message.js +101 -0
  217. package/dist/old-browsers-message/old-browsers-message__stop.js +5 -0
  218. package/dist/old-browsers-message/white-list.js +34 -0
  219. package/dist/pager/pager.js +365 -0
  220. package/dist/pager-ng/pager-ng.js +100 -0
  221. package/dist/panel/panel.js +31 -0
  222. package/dist/panel-ng/panel-ng.js +17 -0
  223. package/dist/permissions/permissions.js +200 -0
  224. package/dist/permissions/permissions__cache.js +272 -0
  225. package/dist/permissions-ng/permissions-ng.js +277 -0
  226. package/dist/place-under-ng/place-under-ng.js +158 -0
  227. package/dist/popup/popup.consts.js +41 -0
  228. package/dist/popup/popup.js +396 -0
  229. package/dist/popup/popup.target.js +26 -0
  230. package/dist/popup/position.js +280 -0
  231. package/dist/popup-menu/popup-menu.js +117 -0
  232. package/dist/progress-bar/progress-bar.js +114 -0
  233. package/dist/progress-bar-ng/progress-bar-ng.js +17 -0
  234. package/dist/promised-click-ng/promised-click-ng.js +128 -0
  235. package/dist/proxy-attrs/proxy-attrs.js +21 -0
  236. package/dist/query-assist/query-assist.js +1096 -0
  237. package/dist/query-assist/query-assist__suggestions.js +49 -0
  238. package/dist/query-assist-ng/query-assist-ng.js +86 -0
  239. package/dist/radio/radio.js +42 -0
  240. package/dist/radio/radio__item.js +78 -0
  241. package/dist/radio-ng/radio-ng.js +47 -0
  242. package/dist/save-field-ng/save-field-ng.js +337 -0
  243. package/dist/save-field-ng/save-field-ng__template.js +3 -0
  244. package/dist/select/select.js +1357 -0
  245. package/dist/select/select__filter.js +56 -0
  246. package/dist/select/select__popup.js +553 -0
  247. package/dist/select-ng/select-ng.js +637 -0
  248. package/dist/select-ng/select-ng__lazy.js +169 -0
  249. package/dist/select-ng/select-ng__options.js +145 -0
  250. package/dist/shortcuts/core.js +245 -0
  251. package/dist/shortcuts/shortcut-title.js +51 -0
  252. package/dist/shortcuts/shortcuts-hoc.js +42 -0
  253. package/dist/shortcuts/shortcuts.js +72 -0
  254. package/dist/shortcuts-hint-ng/shortcuts-hint-ng.js +123 -0
  255. package/dist/shortcuts-hint-ng/shortcuts-hint-ng__template.js +3 -0
  256. package/dist/shortcuts-ng/shortcuts-ng.js +262 -0
  257. package/dist/sidebar-ng/sidebar-ng.js +113 -0
  258. package/dist/sidebar-ng/sidebar-ng__button-template.js +3 -0
  259. package/dist/sidebar-ng/sidebar-ng__template.js +3 -0
  260. package/dist/storage/storage.js +59 -0
  261. package/dist/storage/storage__fallback.js +215 -0
  262. package/dist/storage/storage__local.js +154 -0
  263. package/dist/style.css +1 -0
  264. package/dist/tab-trap/tab-trap.js +177 -0
  265. package/dist/table/cell.js +26 -0
  266. package/dist/table/disable-hover-hoc.js +54 -0
  267. package/dist/table/header-cell.js +92 -0
  268. package/dist/table/header.js +193 -0
  269. package/dist/table/multitable.js +141 -0
  270. package/dist/table/row-with-focus-sensor.js +83 -0
  271. package/dist/table/row.js +278 -0
  272. package/dist/table/selection-adapter.js +16 -0
  273. package/dist/table/selection-shortcuts-hoc.js +215 -0
  274. package/dist/table/selection.js +223 -0
  275. package/dist/table/smart-table.js +125 -0
  276. package/dist/table/table.js +409 -0
  277. package/dist/table-legacy-ng/table-legacy-ng.js +468 -0
  278. package/dist/table-legacy-ng/table-legacy-ng__pager.js +120 -0
  279. package/dist/table-legacy-ng/table-legacy-ng__selection-navigate-actions.js +123 -0
  280. package/dist/table-legacy-ng/table-legacy-ng__selection.js +179 -0
  281. package/dist/table-legacy-ng/table-legacy-ng__toolbar.js +57 -0
  282. package/dist/table-ng/smart-table-ng.js +68 -0
  283. package/dist/table-ng/table-ng.js +67 -0
  284. package/dist/tabs/collapsible-more.js +198 -0
  285. package/dist/tabs/collapsible-tab.js +91 -0
  286. package/dist/tabs/collapsible-tabs.js +362 -0
  287. package/dist/tabs/custom-item.js +13 -0
  288. package/dist/tabs/dumb-tabs.js +164 -0
  289. package/dist/tabs/smart-tabs.js +106 -0
  290. package/dist/tabs/tab-link.js +42 -0
  291. package/dist/tabs/tab.js +33 -0
  292. package/dist/tabs/tabs.js +71 -0
  293. package/dist/tabs-ng/tabs-ng.js +194 -0
  294. package/dist/tabs-ng/tabs-ng__template.js +3 -0
  295. package/dist/tag/tag.js +197 -0
  296. package/dist/tags-input/tags-input.js +482 -0
  297. package/dist/tags-input-ng/tags-input-ng.js +93 -0
  298. package/dist/tags-list/tags-list.js +95 -0
  299. package/dist/template-ng/template-ng.js +71 -0
  300. package/dist/text/text.js +36 -0
  301. package/dist/theme-ng/theme-ng.js +45 -0
  302. package/dist/title-ng/title-ng.js +114 -0
  303. package/dist/toggle/toggle.js +78 -0
  304. package/dist/toggle-ng/toggle-ng.js +18 -0
  305. package/dist/tooltip/tooltip.js +209 -0
  306. package/dist/tooltip-ng/tooltip-ng.js +104 -0
  307. package/dist/user-agreement/service.js +412 -0
  308. package/dist/user-agreement/toolbox.eula.js +3 -0
  309. package/dist/user-agreement/user-agreement.js +169 -0
  310. package/dist/user-card/card.js +19 -0
  311. package/dist/user-card/smart-user-card-tooltip.js +114 -0
  312. package/dist/user-card/tooltip.js +95 -0
  313. package/dist/user-card/user-card.js +51 -0
  314. package/dist/user-card-ng/user-card-ng.js +62 -0
  315. package/package.json +2 -2
@@ -0,0 +1,482 @@
1
+ import { _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
2
+ import 'core-js/modules/web.dom-collections.iterator.js';
3
+ import React, { Component, PureComponent } from 'react';
4
+ import PropTypes from 'prop-types';
5
+ import classNames from 'classnames';
6
+ import getEventKey from '../global/get-event-key.js';
7
+ import Select from '../select/select.js';
8
+ import TagsList from '../tags-list/tags-list.js';
9
+ import Caret from '../caret/caret.js';
10
+ import memoize from '../global/memoize.js';
11
+ import rerenderHOC from '../global/rerender-hoc.js';
12
+ import 'core-js/modules/es.string.replace.js';
13
+ import '@jetbrains/icons/chevron-10px';
14
+ import '@jetbrains/icons/close';
15
+ import 'deep-equal';
16
+ import '../dropdown/dropdown.js';
17
+ import '../global/data-tests.js';
18
+ import '../_helpers/anchor.js';
19
+ import '../icon/icon.js';
20
+ import 'util-deprecate';
21
+ import '../icon/icon__constants.js';
22
+ import '../_helpers/icon.js';
23
+ import '../icon/icon__svg.js';
24
+ import '../button/button.js';
25
+ import 'focus-visible';
26
+ import '../global/theme.js';
27
+ import '../link/clickableLink.js';
28
+ import '../_helpers/button__classes.js';
29
+ import '../avatar/avatar.js';
30
+ import '../global/url.js';
31
+ import '../global/dom.js';
32
+ import '../avatar/fallback-avatar.js';
33
+ import '../global/get-uid.js';
34
+ import '../popup/popup.js';
35
+ import 'react-dom';
36
+ import '../global/schedule-raf.js';
37
+ import '../shortcuts/shortcuts.js';
38
+ import '../shortcuts/core.js';
39
+ import 'combokeys';
40
+ import '../global/sniffer.js';
41
+ import 'sniffr';
42
+ import '../tab-trap/tab-trap.js';
43
+ import '../popup/position.js';
44
+ import '../popup/popup.consts.js';
45
+ import '../popup/popup.target.js';
46
+ import '../list/list.js';
47
+ import 'react-virtualized/dist/es/List';
48
+ import 'react-virtualized/dist/es/AutoSizer';
49
+ import 'react-virtualized/dist/es/WindowScroller';
50
+ import 'react-virtualized/dist/es/CellMeasurer';
51
+ import 'memoize-one';
52
+ import '../global/create-stateful-context.js';
53
+ import '../list/list__link.js';
54
+ import '../link/link.js';
55
+ import '../_helpers/link.js';
56
+ import '../_helpers/list.js';
57
+ import '../list/list__item.js';
58
+ import '../checkbox/checkbox.js';
59
+ import '@jetbrains/icons/checkmark';
60
+ import '@jetbrains/icons/remove-10px';
61
+ import '../_helpers/checkbox.js';
62
+ import '../list/list__custom.js';
63
+ import '../list/list__title.js';
64
+ import '../list/list__separator.js';
65
+ import '../list/list__hint.js';
66
+ import '../list/consts.js';
67
+ import '../input/input.js';
68
+ import '../_helpers/input.js';
69
+ import '../global/fuzzy-highlight.js';
70
+ import '../select/select__popup.js';
71
+ import '@jetbrains/icons/search';
72
+ import '../loader-inline/loader-inline.js';
73
+ import '../_helpers/inject-styles.js';
74
+ import '../global/conic-gradient.js';
75
+ import 'conic-gradient';
76
+ import '../global/supports-css.js';
77
+ import '../global/inject-styles.js';
78
+ import '../global/radial-gradient-mask.js';
79
+ import '../shortcuts/shortcuts-hoc.js';
80
+ import '../text/text.js';
81
+ import '../_helpers/select__filter.js';
82
+ import '../tag/tag.js';
83
+ import '../global/react-render-adapter.js';
84
+ import '../global/composeRefs.js';
85
+
86
+ var modules_5aa8aaf3 = {"tagsInput":"tagsInput_rui_1a67","tagsInputLegacyMode":"tagsInputLegacyMode_rui_1a67","tagsList":"tagsList_rui_1a67","tag":"tag_rui_1a67","tagsInputDisabled":"tagsInputDisabled_rui_1a67","underline":"underline_rui_1a67","tagsInputFocused":"tagsInputFocused_rui_1a67","tagsSelect":"tagsSelect_rui_1a67","focusUnderline":"focusUnderline_rui_1a67"};
87
+
88
+ function noop() {}
89
+ /**
90
+ * @name Tags Input
91
+ */
92
+
93
+
94
+ const POPUP_VERTICAL_SHIFT = 2;
95
+ class TagsInput extends PureComponent {
96
+ constructor(props) {
97
+ var _this;
98
+
99
+ super(props);
100
+ _this = this;
101
+
102
+ _defineProperty(this, "state", {
103
+ tags: [],
104
+ prevTags: null,
105
+ suggestions: [],
106
+ loading: true,
107
+ focused: false,
108
+ query: '',
109
+ activeIndex: 0
110
+ });
111
+
112
+ _defineProperty(this, "nodeRef", node => {
113
+ this.node = node;
114
+ });
115
+
116
+ _defineProperty(this, "focusInput", () => {
117
+ this.getInputNode().focus();
118
+ });
119
+
120
+ _defineProperty(this, "addTag", tag => {
121
+ const isUniqueTag = this.state.tags.filter(item => tag.key === item.key).length === 0;
122
+ this.select.clear();
123
+ this.select.filterValue('');
124
+
125
+ if (isUniqueTag) {
126
+ this.setState(prevState => ({
127
+ tags: prevState.tags.concat([tag])
128
+ }));
129
+ this.props.onAddTag({
130
+ tag
131
+ });
132
+ this.setActiveIndex();
133
+ }
134
+ });
135
+
136
+ _defineProperty(this, "clickHandler", event => {
137
+ if (event.target !== this.node) {
138
+ return;
139
+ }
140
+
141
+ this.loadSuggestions(this.getInputNode().value);
142
+ this.focusInput();
143
+ });
144
+
145
+ _defineProperty(this, "filterExistingTags", suggestions => {
146
+ const tagsMap = new Map(this.state.tags.map(tag => [tag.key, tag]));
147
+ return suggestions.filter(suggestion => !tagsMap.has(suggestion.key));
148
+ });
149
+
150
+ _defineProperty(this, "loadSuggestions", function () {
151
+ let query = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
152
+ return _this.setState({
153
+ loading: true,
154
+ query
155
+ }, async () => {
156
+ try {
157
+ let allSuggestions = _this.props.dataSource({
158
+ query
159
+ });
160
+
161
+ if (typeof allSuggestions.then === 'function') {
162
+ allSuggestions = await allSuggestions;
163
+ }
164
+
165
+ const suggestions = _this.filterExistingTags(allSuggestions);
166
+
167
+ if (_this.node && query === _this.state.query) {
168
+ _this.setState({
169
+ suggestions,
170
+ loading: false
171
+ });
172
+ }
173
+ } catch (e) {
174
+ _this.setState({
175
+ loading: false
176
+ });
177
+ }
178
+ });
179
+ });
180
+
181
+ _defineProperty(this, "_focusHandler", () => {
182
+ this.setActiveIndex(null);
183
+ this.setState({
184
+ focused: true
185
+ });
186
+ });
187
+
188
+ _defineProperty(this, "_blurHandler", () => {
189
+ this.setState({
190
+ focused: false
191
+ });
192
+ });
193
+
194
+ _defineProperty(this, "selectTag", moveForward => {
195
+ const activeIndex = typeof this.state.activeIndex === 'number' ? this.state.activeIndex : this.state.tags.length + 1;
196
+ let newActiveIndex = activeIndex + (moveForward ? 1 : -1);
197
+
198
+ if (newActiveIndex >= this.state.tags.length) {
199
+ newActiveIndex = this.state.tags.length - 1;
200
+ } else if (newActiveIndex < 0) {
201
+ newActiveIndex = 0;
202
+ }
203
+
204
+ if (this.state.activeIndex !== newActiveIndex) {
205
+ this.setActiveIndex(newActiveIndex);
206
+ }
207
+ });
208
+
209
+ _defineProperty(this, "handleKeyDown", event => {
210
+ const key = getEventKey(event);
211
+
212
+ const isInputFocused = () => event.target.matches(this.getInputNode().tagName);
213
+
214
+ if (key === ' ' && this.props.allowAddNewTags) {
215
+ event.stopPropagation();
216
+ const value = this.getInputNode().value;
217
+
218
+ if (value !== '') {
219
+ this.handleTagCreation(value);
220
+ }
221
+
222
+ return true;
223
+ }
224
+
225
+ if (this.select._popup.isVisible()) {
226
+ return true;
227
+ }
228
+
229
+ if (key === 'ArrowLeft') {
230
+ if (this.getInputNode() && this.caret.getPosition() > 0) {
231
+ return true;
232
+ }
233
+
234
+ this.selectTag();
235
+ return false;
236
+ }
237
+
238
+ if (key === 'ArrowRight' && !isInputFocused()) {
239
+ if (this.state.activeIndex === this.state.tags.length - 1) {
240
+ if (!this.props.disabled) {
241
+ this.getInputNode().focus();
242
+ this.setActiveIndex();
243
+ }
244
+ } else {
245
+ this.selectTag(true);
246
+ }
247
+
248
+ return false;
249
+ }
250
+
251
+ if (!this.props.disabled) {
252
+ if (key === 'Backspace' && !this.getInputNode().value) {
253
+ event.preventDefault();
254
+ const tagsLength = this.state.tags.length;
255
+
256
+ this.select._hidePopup(true); // otherwise confirmation may be overlapped by popup
257
+
258
+
259
+ this.onRemoveTag(this.state.tags[tagsLength - 1]);
260
+ return false;
261
+ }
262
+
263
+ if ((key === 'Delete' || key === 'Backspace') && this.state.tags[this.state.activeIndex]) {
264
+ this.onRemoveTag(this.state.tags[this.state.activeIndex]).then(() => this.selectTag(true));
265
+ return false;
266
+ }
267
+ }
268
+
269
+ return true;
270
+ });
271
+
272
+ _defineProperty(this, "handleClick", memoize(tag => () => {
273
+ this.setActiveIndex(this.state.tags.indexOf(tag));
274
+ }));
275
+
276
+ _defineProperty(this, "handleRemove", memoize(tag => () => this.onRemoveTag(tag)));
277
+
278
+ _defineProperty(this, "handleTagCreation", label => {
279
+ this.addTag({
280
+ key: label,
281
+ label
282
+ });
283
+ });
284
+
285
+ _defineProperty(this, "selectRef", el => {
286
+ this.select = el;
287
+ });
288
+
289
+ this.ngModelStateField = TagsInput.ngModelStateField;
290
+ }
291
+
292
+ static getDerivedStateFromProps(_ref, _ref2) {
293
+ let {
294
+ tags
295
+ } = _ref;
296
+ let {
297
+ prevTags
298
+ } = _ref2;
299
+ const nextState = {
300
+ prevTags: tags
301
+ };
302
+
303
+ if (tags != null && tags !== prevTags) {
304
+ Object.assign(nextState, {
305
+ tags,
306
+ activeIndex: tags.length
307
+ });
308
+ }
309
+
310
+ return nextState;
311
+ }
312
+
313
+ componentDidMount() {
314
+ if (this.props.autoOpen && !this.props.disabled) {
315
+ this.focusInput();
316
+ this.loadSuggestions();
317
+
318
+ this.select._showPopup();
319
+ }
320
+ }
321
+
322
+ getInputNode() {
323
+ if (!this.input) {
324
+ this.input = this.select.filter;
325
+ this.caret = new Caret(this.input);
326
+ }
327
+
328
+ return this.input;
329
+ }
330
+
331
+ setActiveIndex(activeIndex) {
332
+ this.setState({
333
+ activeIndex
334
+ });
335
+ }
336
+
337
+ onRemoveTag(tagToRemove) {
338
+ return Promise.resolve(this.props.onRemoveTag({
339
+ tag: tagToRemove
340
+ })).then(() => {
341
+ const tags = this.state.tags.filter(tag => tag !== tagToRemove);
342
+
343
+ if (this.node) {
344
+ this.setState({
345
+ tags
346
+ });
347
+ this.focusInput();
348
+ }
349
+
350
+ return tags;
351
+ }, this.focusInput);
352
+ }
353
+
354
+ render() {
355
+ const {
356
+ focused,
357
+ tags,
358
+ activeIndex
359
+ } = this.state;
360
+ const {
361
+ legacyMode,
362
+ disabled,
363
+ canNotBeEmpty,
364
+ allowAddNewTags,
365
+ filter
366
+ } = this.props;
367
+ const classes = classNames(modules_5aa8aaf3.tagsInput, {
368
+ [modules_5aa8aaf3.tagsInputDisabled]: disabled,
369
+ [modules_5aa8aaf3.tagsInputFocused]: focused,
370
+ [modules_5aa8aaf3.tagsInputLegacyMode]: legacyMode
371
+ }, this.props.className);
372
+ return /*#__PURE__*/React.createElement("div", {
373
+ // it transfers focus to input
374
+ role: "presentation",
375
+ className: classes,
376
+ onKeyDown: this.handleKeyDown,
377
+ onClick: this.clickHandler,
378
+ ref: this.nodeRef
379
+ }, /*#__PURE__*/React.createElement(TagsList, {
380
+ tags: tags,
381
+ activeIndex: activeIndex,
382
+ disabled: disabled,
383
+ canNotBeEmpty: canNotBeEmpty,
384
+ handleRemove: this.handleRemove,
385
+ className: modules_5aa8aaf3.tagsList,
386
+ tagClassName: modules_5aa8aaf3.tag,
387
+ handleClick: this.handleClick
388
+ }, /*#__PURE__*/React.createElement(Select, {
389
+ ref: this.selectRef,
390
+ size: Select.Size.AUTO,
391
+ type: Select.Type.INPUT_WITHOUT_CONTROLS,
392
+ inputPlaceholder: this.props.placeholder,
393
+ data: this.state.suggestions,
394
+ className: classNames(modules_5aa8aaf3.tagsSelect),
395
+ onSelect: this.addTag,
396
+ onFocus: this._focusHandler,
397
+ onBlur: this._blurHandler,
398
+ renderOptimization: this.props.renderOptimization,
399
+ add: allowAddNewTags ? {
400
+ prefix: 'Add new tag'
401
+ } : undefined,
402
+ onAdd: allowAddNewTags ? this.handleTagCreation : undefined,
403
+ filter: filter,
404
+ maxHeight: this.props.maxPopupHeight,
405
+ minWidth: this.props.minPopupWidth,
406
+ top: POPUP_VERTICAL_SHIFT,
407
+ loading: this.state.loading,
408
+ onFilter: this.loadSuggestions,
409
+ onBeforeOpen: this.loadSuggestions,
410
+ onKeyDown: this.handleKeyDown,
411
+ disabled: this.props.disabled,
412
+ loadingMessage: this.props.loadingMessage,
413
+ notFoundMessage: this.props.notFoundMessage
414
+ })), !legacyMode && /*#__PURE__*/React.createElement("div", {
415
+ className: modules_5aa8aaf3.underline
416
+ }), !legacyMode && /*#__PURE__*/React.createElement("div", {
417
+ className: modules_5aa8aaf3.focusUnderline
418
+ }));
419
+ }
420
+
421
+ }
422
+
423
+ _defineProperty(TagsInput, "propTypes", {
424
+ className: PropTypes.string,
425
+ tags: PropTypes.array,
426
+
427
+ /**
428
+ * Datasource should return array(or promise) of suggestions.
429
+ * Each suggestion should contain key and label fields.
430
+ * DataSource should handle caching and response racing (when later request
431
+ * responded earlier) by himself.
432
+ */
433
+ dataSource: PropTypes.func,
434
+ onAddTag: PropTypes.func,
435
+ onRemoveTag: PropTypes.func,
436
+ customTagComponent: (props, propName, componentName) => {
437
+ if (props[propName] && !props[propName].prototype instanceof Component) {
438
+ return new Error("Invalid prop ".concat(propName, " supplied to ").concat(componentName, ". Validation failed."));
439
+ }
440
+
441
+ return null;
442
+ },
443
+ maxPopupHeight: PropTypes.number,
444
+ minPopupWidth: PropTypes.number,
445
+ placeholder: PropTypes.string,
446
+ canNotBeEmpty: PropTypes.bool,
447
+ disabled: PropTypes.bool,
448
+ autoOpen: PropTypes.bool,
449
+ renderOptimization: PropTypes.bool,
450
+ legacyMode: PropTypes.bool,
451
+ filter: PropTypes.oneOfType([PropTypes.bool, PropTypes.shape({
452
+ fn: PropTypes.func
453
+ })]),
454
+ loadingMessage: PropTypes.string,
455
+ notFoundMessage: PropTypes.string,
456
+ allowAddNewTags: PropTypes.bool
457
+ });
458
+
459
+ _defineProperty(TagsInput, "defaultProps", {
460
+ dataSource: noop,
461
+ onAddTag: noop,
462
+ onRemoveTag: noop,
463
+ customTagComponent: null,
464
+ maxPopupHeight: 500,
465
+ minPopupWidth: 360,
466
+ canNotBeEmpty: false,
467
+ disabled: false,
468
+ autoOpen: false,
469
+ renderOptimization: true,
470
+ legacyMode: false,
471
+ allowAddNewTags: false,
472
+ filter: {
473
+ fn: () => true
474
+ },
475
+ placeholder: 'Select an option'
476
+ });
477
+
478
+ _defineProperty(TagsInput, "ngModelStateField", 'tags');
479
+
480
+ const RerenderableTagsInput = rerenderHOC(TagsInput);
481
+
482
+ export { RerenderableTagsInput, TagsInput as default };
@@ -0,0 +1,93 @@
1
+ import angularComponentFactory from '../global/angular-component-factory.js';
2
+ import TagsInput from '../tags-input/tags-input.js';
3
+ import '../_helpers/_rollupPluginBabelHelpers.js';
4
+ import 'core-js/modules/web.dom-collections.iterator.js';
5
+ import 'angular';
6
+ import 'react';
7
+ import '../global/react-render-adapter.js';
8
+ import 'react-dom';
9
+ import '../global/ring-angular-component.js';
10
+ import '../global/react-dom-renderer.js';
11
+ import 'prop-types';
12
+ import 'classnames';
13
+ import '../global/get-event-key.js';
14
+ import '../select/select.js';
15
+ import 'core-js/modules/es.string.replace.js';
16
+ import '@jetbrains/icons/chevron-10px';
17
+ import '@jetbrains/icons/close';
18
+ import 'deep-equal';
19
+ import '../dropdown/dropdown.js';
20
+ import '../global/data-tests.js';
21
+ import '../_helpers/anchor.js';
22
+ import '../icon/icon.js';
23
+ import 'util-deprecate';
24
+ import '../icon/icon__constants.js';
25
+ import '../_helpers/icon.js';
26
+ import '../icon/icon__svg.js';
27
+ import '../global/memoize.js';
28
+ import '../button/button.js';
29
+ import 'focus-visible';
30
+ import '../global/theme.js';
31
+ import '../link/clickableLink.js';
32
+ import '../_helpers/button__classes.js';
33
+ import '../avatar/avatar.js';
34
+ import '../global/url.js';
35
+ import '../global/dom.js';
36
+ import '../avatar/fallback-avatar.js';
37
+ import '../global/get-uid.js';
38
+ import '../popup/popup.js';
39
+ import '../global/schedule-raf.js';
40
+ import '../shortcuts/shortcuts.js';
41
+ import '../shortcuts/core.js';
42
+ import 'combokeys';
43
+ import '../global/sniffer.js';
44
+ import 'sniffr';
45
+ import '../tab-trap/tab-trap.js';
46
+ import '../popup/position.js';
47
+ import '../popup/popup.consts.js';
48
+ import '../popup/popup.target.js';
49
+ import '../list/list.js';
50
+ import 'react-virtualized/dist/es/List';
51
+ import 'react-virtualized/dist/es/AutoSizer';
52
+ import 'react-virtualized/dist/es/WindowScroller';
53
+ import 'react-virtualized/dist/es/CellMeasurer';
54
+ import 'memoize-one';
55
+ import '../global/create-stateful-context.js';
56
+ import '../list/list__link.js';
57
+ import '../link/link.js';
58
+ import '../_helpers/link.js';
59
+ import '../_helpers/list.js';
60
+ import '../list/list__item.js';
61
+ import '../checkbox/checkbox.js';
62
+ import '@jetbrains/icons/checkmark';
63
+ import '@jetbrains/icons/remove-10px';
64
+ import '../_helpers/checkbox.js';
65
+ import '../list/list__custom.js';
66
+ import '../list/list__title.js';
67
+ import '../list/list__separator.js';
68
+ import '../list/list__hint.js';
69
+ import '../list/consts.js';
70
+ import '../input/input.js';
71
+ import '../_helpers/input.js';
72
+ import '../global/rerender-hoc.js';
73
+ import '../global/composeRefs.js';
74
+ import '../global/fuzzy-highlight.js';
75
+ import '../select/select__popup.js';
76
+ import '@jetbrains/icons/search';
77
+ import '../loader-inline/loader-inline.js';
78
+ import '../_helpers/inject-styles.js';
79
+ import '../global/conic-gradient.js';
80
+ import 'conic-gradient';
81
+ import '../global/supports-css.js';
82
+ import '../global/inject-styles.js';
83
+ import '../global/radial-gradient-mask.js';
84
+ import '../shortcuts/shortcuts-hoc.js';
85
+ import '../tags-list/tags-list.js';
86
+ import '../tag/tag.js';
87
+ import '../caret/caret.js';
88
+ import '../text/text.js';
89
+ import '../_helpers/select__filter.js';
90
+
91
+ var tagsInputNg = angularComponentFactory(TagsInput, 'TagsInput').name;
92
+
93
+ export { tagsInputNg as default };
@@ -0,0 +1,95 @@
1
+ import { _ as _defineProperty, a as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
2
+ import React, { Component } from 'react';
3
+ import PropTypes from 'prop-types';
4
+ import classNames from 'classnames';
5
+ import Tag from '../tag/tag.js';
6
+ import 'core-js/modules/web.dom-collections.iterator.js';
7
+ import '@jetbrains/icons/close';
8
+ import '../icon/icon.js';
9
+ import 'util-deprecate';
10
+ import '../icon/icon__constants.js';
11
+ import '../_helpers/icon.js';
12
+ import '../icon/icon__svg.js';
13
+ import 'core-js/modules/es.string.replace.js';
14
+ import '../global/memoize.js';
15
+ import '../button/button.js';
16
+ import 'focus-visible';
17
+ import '@jetbrains/icons/chevron-10px';
18
+ import '../global/theme.js';
19
+ import '../link/clickableLink.js';
20
+ import '../_helpers/button__classes.js';
21
+
22
+ function noop() {}
23
+ /**
24
+ * @name Tags List
25
+ */
26
+
27
+
28
+ class TagsList extends Component {
29
+ renderTag(tag, focusTag) {
30
+ const TagComponent = this.props.customTagComponent || Tag;
31
+ const readOnly = this.props.disabled || tag.readOnly || this.props.canNotBeEmpty && this.props.tags.length === 1;
32
+ const {
33
+ tagClassName
34
+ } = this.props;
35
+ return /*#__PURE__*/React.createElement(TagComponent, _extends({}, tag, {
36
+ readOnly: readOnly,
37
+ disabled: this.props.disabled || tag.disabled,
38
+ focused: focusTag,
39
+ onClick: this.props.handleClick(tag),
40
+ onRemove: this.props.handleRemove(tag),
41
+ className: tagClassName
42
+ }), tag.label);
43
+ }
44
+
45
+ render() {
46
+ const {
47
+ children,
48
+ className,
49
+ customTagComponent,
50
+ canNotBeEmpty,
51
+ handleClick,
52
+ tagClassName,
53
+ handleRemove,
54
+ tags,
55
+ activeIndex,
56
+ ...props
57
+ } = this.props;
58
+ const classes = classNames('ring-js-shortcuts', className);
59
+ const tagsList = (this.props.tags || []).map((tag, index) => this.renderTag(tag, this.props.activeIndex === index));
60
+ return /*#__PURE__*/React.createElement("div", _extends({
61
+ "data-test": "ring-tags-list",
62
+ className: classes
63
+ }, props), tagsList, children);
64
+ }
65
+
66
+ }
67
+
68
+ _defineProperty(TagsList, "propTypes", {
69
+ children: PropTypes.node,
70
+ tags: PropTypes.array,
71
+ customTagComponent: (props, propName, componentName) => {
72
+ if (props[propName] && !props[propName].prototype instanceof Component) {
73
+ return new Error("Invalid prop ".concat(propName, " supplied to ").concat(componentName, ". Validation failed."));
74
+ }
75
+
76
+ return null;
77
+ },
78
+ activeIndex: PropTypes.number,
79
+ canNotBeEmpty: PropTypes.bool,
80
+ disabled: PropTypes.bool,
81
+ handleClick: PropTypes.func,
82
+ handleRemove: PropTypes.func,
83
+ className: PropTypes.string,
84
+ tagClassName: PropTypes.string
85
+ });
86
+
87
+ _defineProperty(TagsList, "defaultProps", {
88
+ customTagComponent: null,
89
+ canNotBeEmpty: false,
90
+ disabled: false,
91
+ handleClick: noop,
92
+ handleRemove: noop
93
+ });
94
+
95
+ export { TagsList as default };