@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,83 @@
1
+ import { a as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
2
+ import 'core-js/modules/es.string.replace.js';
3
+ import React, { memo } from 'react';
4
+ import classNames from 'classnames';
5
+ import PropTypes from 'prop-types';
6
+ import memoize from '../global/memoize.js';
7
+ import { m as modules_29747b80 } from '../_helpers/icon.js';
8
+ import 'core-js/modules/web.dom-collections.iterator.js';
9
+
10
+ function convertReactSVGDOMProperty(str) {
11
+ return str.replace(/[-|:]([a-z])/g, g => g[1].toUpperCase());
12
+ }
13
+
14
+ function serializeAttrs(map) {
15
+ const res = {};
16
+
17
+ for (let i = 0; i < map.length; i++) {
18
+ const key = map[i].name;
19
+ let prop = key;
20
+
21
+ if (key === 'class') {
22
+ prop = 'className';
23
+ } else if (!key.startsWith('data-')) {
24
+ prop = convertReactSVGDOMProperty(key);
25
+ }
26
+
27
+ res[prop] = map[i].value;
28
+ }
29
+
30
+ return res;
31
+ }
32
+
33
+ function extractSVGProps(svgNode) {
34
+ const map = svgNode.attributes;
35
+ return map.length > 0 ? serializeAttrs(map) : null;
36
+ }
37
+
38
+ const getSVGFromSource = memoize(src => {
39
+ const svgContainer = document.createElement('div');
40
+ svgContainer.innerHTML = src;
41
+ const svg = svgContainer.firstElementChild;
42
+ svg.remove ? svg.remove() : svgContainer.removeChild(svg);
43
+ return {
44
+ props: extractSVGProps(svg),
45
+ html: svg.innerHTML
46
+ };
47
+ });
48
+
49
+ function isCompatibilityMode(iconSrc) {
50
+ const hasWidth = /width="[\d\.]+"/ig.test(iconSrc);
51
+ const hasHeight = /height="[\d\.]+"/ig.test(iconSrc);
52
+ return !hasWidth || !hasHeight;
53
+ }
54
+
55
+ function IconSVG(_ref) {
56
+ let {
57
+ src,
58
+ className,
59
+ ...rest
60
+ } = _ref;
61
+ const glyphClasses = classNames(modules_29747b80.glyph, {
62
+ [modules_29747b80.compatibilityMode]: isCompatibilityMode(src)
63
+ }, className);
64
+ const {
65
+ props,
66
+ html
67
+ } = getSVGFromSource(src);
68
+ return /*#__PURE__*/React.createElement("svg", _extends({}, props, rest, {
69
+ className: glyphClasses,
70
+ dangerouslySetInnerHTML: {
71
+ __html: html
72
+ }
73
+ }));
74
+ }
75
+
76
+ IconSVG.propTypes = {
77
+ className: PropTypes.string,
78
+ src: PropTypes.string.isRequired,
79
+ style: PropTypes.object
80
+ };
81
+ var IconSVG$1 = /*#__PURE__*/memo(IconSVG);
82
+
83
+ export { IconSVG$1 as default };
@@ -0,0 +1,12 @@
1
+ export { default } from './icon.js';
2
+ export { Size } from './icon__constants.js';
3
+ import '../_helpers/_rollupPluginBabelHelpers.js';
4
+ import 'react';
5
+ import 'prop-types';
6
+ import 'classnames';
7
+ import 'util-deprecate';
8
+ import '../_helpers/icon.js';
9
+ import './icon__svg.js';
10
+ import 'core-js/modules/es.string.replace.js';
11
+ import '../global/memoize.js';
12
+ import 'core-js/modules/web.dom-collections.iterator.js';
@@ -0,0 +1,91 @@
1
+ import 'core-js/modules/es.string.replace.js';
2
+ import 'core-js/modules/web.dom-collections.iterator.js';
3
+ import angular from 'angular';
4
+ import { Color } from '../icon/icon__constants.js';
5
+ import RingTemplateNg from '../template-ng/template-ng.js';
6
+ import { m as modules_29747b80 } from '../_helpers/icon.js';
7
+ import '../_helpers/_rollupPluginBabelHelpers.js';
8
+ import '../global/ring-angular-component.js';
9
+
10
+ /**
11
+ * @name Icon Ng
12
+ */
13
+
14
+ const angularModule = angular.module('Ring.icon', [RingTemplateNg]);
15
+ const BASE64_PREFIX = 'data:image/svg+xml;base64,';
16
+ angularModule.directive('rgIcon', function rgIconDirective() {
17
+ return {
18
+ restrict: 'E',
19
+ scope: {
20
+ glyph: '@',
21
+ loading: '=?',
22
+ color: '@?',
23
+ size: '@?',
24
+ height: '@?',
25
+ width: '@?'
26
+ },
27
+ template: "<span class=\"".concat(modules_29747b80.icon, "\" rg-template=\"normalizedGlyph\" rg-template-class=\"").concat(modules_29747b80.glyph, "\"></span>"),
28
+ controller: ["$scope", $scope => {
29
+ function decodeBase64IfNeeded(glyph) {
30
+ // This hack allows passing SVG content as string from angular templates like
31
+ // <rg-icon glyph="data:image/svg+xml;base64,PHN2ZyB4bWx...></rg-icon>
32
+ const isEncoded = glyph.indexOf(BASE64_PREFIX) === 0;
33
+ return isEncoded ? window.atob(glyph.replace(BASE64_PREFIX, '')) : glyph;
34
+ }
35
+
36
+ $scope.$watch('glyph', value => {
37
+ if (!value) {
38
+ return;
39
+ }
40
+
41
+ $scope.normalizedGlyph = decodeBase64IfNeeded(value);
42
+ });
43
+ }],
44
+ link: function link(scope, iElement, iAttrs) {
45
+ iAttrs.$addClass('ring-icon'); // TODO: We keep this class for now for compatibility reasons (styles overrides)
46
+
47
+ scope.$watch('loading', value => {
48
+ if (value) {
49
+ iAttrs.$addClass(modules_29747b80.loading);
50
+ } else {
51
+ iAttrs.$removeClass(modules_29747b80.loading);
52
+ }
53
+ });
54
+ scope.$watch(() => scope.color && Color[scope.color] && modules_29747b80[Color[scope.color]], (colorClass, prevColorClass) => {
55
+ if (colorClass) {
56
+ iAttrs.$addClass(colorClass); // Remove previous class, but don't remove initial one
57
+
58
+ if (prevColorClass && prevColorClass !== colorClass) {
59
+ iAttrs.$removeClass(prevColorClass);
60
+ }
61
+ }
62
+ });
63
+ scope.$watchGroup(['size', 'width', 'height'], _ref => {
64
+ let [size, width, height] = _ref;
65
+ const svgNode = iElement[0].querySelector('svg');
66
+
67
+ if (!svgNode) {
68
+ return;
69
+ }
70
+
71
+ if (size && !width && !height) {
72
+ const sizeString = "".concat(size, "px");
73
+ const style = "width: ".concat(sizeString, "; height: ").concat(sizeString, ";");
74
+ svgNode.setAttribute('style', style);
75
+ return;
76
+ }
77
+
78
+ if (width) {
79
+ svgNode.setAttribute('style', "width: ".concat(width, "px;"));
80
+ }
81
+
82
+ if (height) {
83
+ svgNode.setAttribute('style', "height: ".concat(height, "px;"));
84
+ }
85
+ });
86
+ }
87
+ };
88
+ });
89
+ var IconNG = angularModule.name;
90
+
91
+ export { IconNG as default };
@@ -0,0 +1,230 @@
1
+ import { _ as _defineProperty, a as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
2
+ import 'core-js/modules/web.dom-collections.iterator.js';
3
+ import React, { PureComponent } from 'react';
4
+ import PropTypes from 'prop-types';
5
+ import classNames from 'classnames';
6
+ import closeIcon from '@jetbrains/icons/close';
7
+ import { withTheme } from '../global/theme.js';
8
+ export { default as Theme } from '../global/theme.js';
9
+ import Button from '../button/button.js';
10
+ import getUID from '../global/get-uid.js';
11
+ import Icon from '../icon/icon.js';
12
+ import { m as modules_88cfaf40 } from '../_helpers/input.js';
13
+ import 'focus-visible';
14
+ import '@jetbrains/icons/chevron-10px';
15
+ import '../link/clickableLink.js';
16
+ import '../_helpers/button__classes.js';
17
+ import '../icon/icon__constants.js';
18
+ import 'util-deprecate';
19
+ import '../_helpers/icon.js';
20
+ import '../icon/icon__svg.js';
21
+ import 'core-js/modules/es.string.replace.js';
22
+ import '../global/memoize.js';
23
+
24
+ function noop() {}
25
+ /**
26
+ * @name Input
27
+ */
28
+
29
+
30
+ const Size = {
31
+ AUTO: 'Auto',
32
+ S: 'S',
33
+ M: 'M',
34
+ L: 'L',
35
+ FULL: 'FULL'
36
+ };
37
+ class Input extends PureComponent {
38
+ constructor() {
39
+ super(...arguments);
40
+
41
+ _defineProperty(this, "state", {
42
+ empty: true
43
+ });
44
+
45
+ _defineProperty(this, "id", getUID('ring-input-'));
46
+
47
+ _defineProperty(this, "underlineRef", el => {
48
+ this.underlineNode = el;
49
+ });
50
+
51
+ _defineProperty(this, "inputRef", el => {
52
+ const {
53
+ inputRef
54
+ } = this.props;
55
+ this.input = el;
56
+
57
+ if (typeof inputRef === 'function') {
58
+ inputRef(el);
59
+ } else {
60
+ inputRef.current = el;
61
+ }
62
+ });
63
+
64
+ _defineProperty(this, "clear", e => {
65
+ this.props.onClear && this.props.onClear(e);
66
+ });
67
+
68
+ _defineProperty(this, "handleChange", e => {
69
+ this.props.onChange(e);
70
+ this.checkValue(e.target);
71
+ });
72
+ }
73
+
74
+ componentDidMount() {
75
+ this.adapt();
76
+ }
77
+
78
+ componentDidUpdate() {
79
+ this.adapt();
80
+ }
81
+
82
+ getId() {
83
+ return this.props.id || this.id;
84
+ }
85
+
86
+ checkValue() {
87
+ this.setState({
88
+ empty: !this.input.value
89
+ });
90
+
91
+ if (this.props.multiline && this.input.scrollHeight > this.input.clientHeight) {
92
+ this.stretch(this.input);
93
+ }
94
+ }
95
+
96
+ stretch(el) {
97
+ if (!el || !el.style) {
98
+ return;
99
+ }
100
+
101
+ el.style.height = "".concat(el.scrollHeight, "px");
102
+ }
103
+
104
+ adapt() {
105
+ this.checkValue();
106
+ this.stretch(this.underlineNode);
107
+ }
108
+
109
+ render() {
110
+ const {
111
+ // Modifiers
112
+ theme,
113
+ size,
114
+ active,
115
+ multiline,
116
+ borderless,
117
+ compact,
118
+ // Props
119
+ label,
120
+ error,
121
+ className,
122
+ inputClassName,
123
+ children,
124
+ value,
125
+ onClear,
126
+ disabled,
127
+ inputRef,
128
+ onChange,
129
+ enableShortcuts,
130
+ id,
131
+ placeholder,
132
+ icon,
133
+ renderUnderline,
134
+ ...restProps
135
+ } = this.props;
136
+ const minimizeMargins = compact || borderless;
137
+ const {
138
+ empty
139
+ } = this.state;
140
+ const clearable = !!onClear;
141
+ const classes = classNames(modules_88cfaf40.container, className, modules_88cfaf40[theme], [modules_88cfaf40["size".concat(size)]], {
142
+ 'ring-js-shortcuts': enableShortcuts === true,
143
+ [modules_88cfaf40.active]: active,
144
+ [modules_88cfaf40.error]: error != null,
145
+ [modules_88cfaf40.empty]: empty,
146
+ [modules_88cfaf40.noLabel]: !this.props.label,
147
+ [modules_88cfaf40.withIcon]: icon != null,
148
+ [modules_88cfaf40.clearable]: clearable,
149
+ [modules_88cfaf40.compact]: minimizeMargins
150
+ });
151
+ const inputClasses = classNames(modules_88cfaf40.input, inputClassName);
152
+ const TagName = multiline ? 'textarea' : 'input';
153
+ const text = value != null ? value : children;
154
+ return /*#__PURE__*/React.createElement("div", {
155
+ className: classes,
156
+ "data-test": "ring-input"
157
+ }, icon && /*#__PURE__*/React.createElement(Icon, {
158
+ glyph: icon,
159
+ className: modules_88cfaf40.icon
160
+ }), /*#__PURE__*/React.createElement(TagName, _extends({
161
+ ref: this.inputRef,
162
+ onChange: this.handleChange,
163
+ className: inputClasses,
164
+ value: text,
165
+ rows: multiline ? 1 : null,
166
+ disabled: disabled,
167
+ id: this.getId(),
168
+ placeholder: placeholder,
169
+ "aria-label": typeof label === 'string' && label ? label : placeholder,
170
+ "data-enabled-shortcuts": Array.isArray(enableShortcuts) ? enableShortcuts.join(',') : null
171
+ }, restProps)), clearable && !disabled && /*#__PURE__*/React.createElement(Button, {
172
+ title: "Clear input",
173
+ "data-test": "ring-input-clear",
174
+ className: modules_88cfaf40.clear,
175
+ icon: closeIcon,
176
+ onClick: this.clear
177
+ }), !minimizeMargins && /*#__PURE__*/React.createElement("label", {
178
+ htmlFor: this.getId(),
179
+ className: modules_88cfaf40.label
180
+ }, label), !borderless && /*#__PURE__*/React.createElement("div", {
181
+ className: modules_88cfaf40.underline
182
+ }), !borderless && /*#__PURE__*/React.createElement("div", {
183
+ className: modules_88cfaf40.focusUnderline
184
+ }), !minimizeMargins && /*#__PURE__*/React.createElement("div", {
185
+ className: modules_88cfaf40.errorUnderline
186
+ }), !minimizeMargins && renderUnderline(this.underlineRef, error));
187
+ }
188
+
189
+ }
190
+
191
+ _defineProperty(Input, "propTypes", {
192
+ value: PropTypes.string,
193
+ theme: PropTypes.string,
194
+ className: PropTypes.string,
195
+ inputClassName: PropTypes.string,
196
+ size: PropTypes.string,
197
+ label: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
198
+ active: PropTypes.bool,
199
+ error: PropTypes.string,
200
+ multiline: PropTypes.bool,
201
+ borderless: PropTypes.bool,
202
+ compact: PropTypes.bool,
203
+ onChange: PropTypes.func,
204
+ onClear: PropTypes.func,
205
+ inputRef: PropTypes.oneOfType([PropTypes.func, PropTypes.shape({
206
+ current: PropTypes.instanceOf(HTMLInputElement)
207
+ })]),
208
+ children: PropTypes.string,
209
+ enableShortcuts: PropTypes.oneOfType([PropTypes.bool, PropTypes.arrayOf(PropTypes.string)]),
210
+ disabled: PropTypes.bool,
211
+ id: PropTypes.string,
212
+ placeholder: PropTypes.string,
213
+ icon: PropTypes.oneOfType([PropTypes.string, PropTypes.elementType]),
214
+ renderUnderline: PropTypes.func
215
+ });
216
+
217
+ _defineProperty(Input, "defaultProps", {
218
+ size: Size.M,
219
+ onChange: noop,
220
+ inputRef: noop,
221
+ enableShortcuts: ['esc'],
222
+ renderUnderline: (underlineRef, errorText) => /*#__PURE__*/React.createElement("div", {
223
+ className: modules_88cfaf40.errorText,
224
+ ref: underlineRef
225
+ }, errorText)
226
+ });
227
+
228
+ var Input$1 = withTheme()(Input);
229
+
230
+ export { Input, Size, Input$1 as default };
@@ -0,0 +1,111 @@
1
+ import { _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
2
+ import angular from 'angular';
3
+ import classNames from 'classnames';
4
+ import closeIcon from '@jetbrains/icons/close';
5
+ import RingAngularComponent from '../global/ring-angular-component.js';
6
+ import { m as modules_88cfaf40 } from '../_helpers/input.js';
7
+ import Theme from '../global/theme.js';
8
+ import ButtonNG from '../button-ng/button-ng.js';
9
+ import 'react';
10
+ import 'core-js/modules/web.dom-collections.iterator.js';
11
+ import '../global/dom.js';
12
+ import '../icon-ng/icon-ng.js';
13
+ import 'core-js/modules/es.string.replace.js';
14
+ import '../icon/icon__constants.js';
15
+ import '../template-ng/template-ng.js';
16
+ import '../_helpers/icon.js';
17
+ import '../_helpers/button__classes.js';
18
+
19
+ var modules_c40fa551 = {"errorText":"errorText_rui_d15a","clear":"clear_rui_d15a"};
20
+
21
+ const angularModule = angular.module('Ring.input', [ButtonNG]);
22
+
23
+ class RingInputComponent extends RingAngularComponent {
24
+ $onInit() {
25
+ this.closeIcon = closeIcon;
26
+
27
+ if (!this.ngModelCtrl) {
28
+ return;
29
+ }
30
+
31
+ this.ngModelCtrl.$render = () => {
32
+ this.value = this.ngModelCtrl.$viewValue;
33
+ };
34
+ }
35
+
36
+ onInputChange() {
37
+ if (!this.ngModelCtrl) {
38
+ return;
39
+ }
40
+
41
+ this.ngModelCtrl.$setViewValue(this.value);
42
+ }
43
+
44
+ stretch(el) {
45
+ if (!el) {
46
+ return;
47
+ }
48
+
49
+ el.style.height = "".concat(el.scrollHeight, "px");
50
+ }
51
+
52
+ onKeyUp() {
53
+ if (!this.inputNode) {
54
+ this.inputNode = this.$inject.$element[0].querySelector('[data-test="ring-input"]');
55
+ }
56
+
57
+ if (this.multiline && this.inputNode.scrollHeight > this.inputNode.clientHeight) {
58
+ this.stretch(this.inputNode);
59
+ }
60
+ }
61
+
62
+ onClear() {
63
+ this.value = '';
64
+ }
65
+
66
+ getContainerClasses() {
67
+ return classNames(modules_88cfaf40.container, modules_88cfaf40[this.theme || Theme.LIGHT], this.size ? [modules_88cfaf40["size".concat(this.size)]] : null, {
68
+ [modules_88cfaf40.active]: this.active,
69
+ [modules_88cfaf40.error]: this.error != null,
70
+ [modules_88cfaf40.empty]: !this.value,
71
+ [modules_88cfaf40.noLabel]: !this.label,
72
+ [modules_88cfaf40.clearable]: this.clearable,
73
+ [modules_88cfaf40.borderless]: this.borderless
74
+ });
75
+ }
76
+
77
+ }
78
+
79
+ _defineProperty(RingInputComponent, "$inject", ['$element']);
80
+
81
+ _defineProperty(RingInputComponent, "require", {
82
+ ngModelCtrl: '?ngModel'
83
+ });
84
+
85
+ _defineProperty(RingInputComponent, "bindings", {
86
+ name: '@',
87
+ required: '@',
88
+ ngMinlength: '@',
89
+ ngMaxlength: '@',
90
+ placeholder: '@',
91
+ ngModel: '<',
92
+ onChange: '&',
93
+ label: '@',
94
+ hint: '@',
95
+ size: '@',
96
+ theme: '@',
97
+ disabled: '@',
98
+ active: '<',
99
+ error: '@',
100
+ empty: '<',
101
+ clearable: '<',
102
+ borderless: '<',
103
+ multiline: '<'
104
+ });
105
+
106
+ _defineProperty(RingInputComponent, "template", "\n<div\n data-test=\"ring-input-container\"\n ng-class=\"$ctrl.getContainerClasses()\"\n>\n <input\n aria-label=\"{{$ctrl.label || $ctrl.placeholder}}\"\n type=\"text\"\n data-test=\"ring-input\"\n class=\"".concat(modules_88cfaf40.input, "\"\n name=\"{{$ctrl.name}}\"\n ng-if=\"!$ctrl.multiline\"\n placeholder=\"{{$ctrl.placeholder}}\"\n ng-model=\"$ctrl.value\"\n ng-required=\"$ctrl.required\"\n ng-disabled=\"$ctrl.disabled\"\n ng-minlength=\"$ctrl.ngMinlength\"\n ng-maxlength=\"$ctrl.ngMaxlength\"\n ng-change=\"$ctrl.onInputChange()\"\n ng-keyup=\"$ctrl.onKeyUp()\"\n />\n\n <textarea\n aria-label=\"{{$ctrl.label || $ctrl.placeholder}}\"\n data-test=\"ring-input\"\n ng-if=\"$ctrl.multiline\"\n class=\"").concat(modules_88cfaf40.input, "\"\n rows=\"1\"\n name=\"{{$ctrl.name}}\"\n placeholder=\"{{$ctrl.placeholder}}\"\n ng-model=\"$ctrl.value\"\n ng-required=\"$ctrl.required\"\n ng-disabled=\"$ctrl.disabled\"\n ng-minlength=\"$ctrl.ngMinlength\"\n ng-maxlength=\"$ctrl.ngMaxlength\"\n ng-change=\"$ctrl.onInputChange()\"\n ng-keyup=\"$ctrl.onKeyUp()\"\n ></textarea>\n\n <rg-button\n ng-if=\"$ctrl.clearable\"\n data-test=\"ring-input-clear\"\n class=\"").concat(modules_88cfaf40.clear, " ").concat(modules_c40fa551.clear, "\"\n icon=\"{{:: $ctrl.closeIcon}}\"\n ng-click=\"$ctrl.onClear()\"\n ></rg-button>\n\n <label\n ng-if=\"!$ctrl.borderless\"\n class=\"").concat(modules_88cfaf40.label, "\"\n >{{$ctrl.label}}</label>\n\n <div ng-if=\"!$ctrl.borderless\" class=\"").concat(modules_88cfaf40.underline, "\"></div>\n <div ng-if=\"!$ctrl.borderless\" class=\"").concat(modules_88cfaf40.focusUnderline, "\"></div>\n <div ng-if=\"!$ctrl.borderless\" class=\"").concat(modules_88cfaf40.errorUnderline, "\"></div>\n <div ng-if=\"!$ctrl.borderless && $ctrl.error\" class=\"").concat(modules_88cfaf40.errorText, " ").concat(modules_c40fa551.errorText, "\">{{$ctrl.error}}</div>\n</div>\n "));
107
+
108
+ angularModule.component('rgInput', RingInputComponent);
109
+ var InputNg = angularModule.name;
110
+
111
+ export { InputNg as default };
@@ -0,0 +1,48 @@
1
+ import { _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
2
+ import 'core-js/modules/web.dom-collections.iterator.js';
3
+ import React, { createContext, Component } from 'react';
4
+ import { interpolateLinear } from '../global/linear-function.js';
5
+
6
+ const TITLE_RESIZE_END = 20;
7
+ const TITLE_RESIZE_THRESHOLD = 36;
8
+ const PhaseContext = /*#__PURE__*/createContext();
9
+ const ScrollHandlerContext = /*#__PURE__*/createContext();
10
+ function adaptiveIslandHOC(ComposedComponent) {
11
+ var _class;
12
+
13
+ return _class = class AdaptiveIsland extends Component {
14
+ constructor() {
15
+ super(...arguments);
16
+
17
+ _defineProperty(this, "state", {
18
+ phase: 0
19
+ });
20
+
21
+ _defineProperty(this, "onContentScroll", _ref => {
22
+ let {
23
+ scrollTop,
24
+ scrollHeight,
25
+ clientHeight
26
+ } = _ref;
27
+
28
+ if (scrollHeight - clientHeight >= interpolateLinear(TITLE_RESIZE_THRESHOLD, TITLE_RESIZE_END, this.state.phase)) {
29
+ const phase = Math.min(1, scrollTop / TITLE_RESIZE_END);
30
+ this.setState({
31
+ phase
32
+ });
33
+ }
34
+ });
35
+ }
36
+
37
+ render() {
38
+ return /*#__PURE__*/React.createElement(PhaseContext.Provider, {
39
+ value: this.state.phase
40
+ }, /*#__PURE__*/React.createElement(ScrollHandlerContext.Provider, {
41
+ value: this.onContentScroll
42
+ }, /*#__PURE__*/React.createElement(ComposedComponent, this.props)));
43
+ }
44
+
45
+ }, _defineProperty(_class, "propTypes", ComposedComponent.propTypes), _class;
46
+ }
47
+
48
+ export { PhaseContext, ScrollHandlerContext, adaptiveIslandHOC as default };