@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,266 @@
1
+ import { _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
2
+ import 'core-js/modules/es.string.replace.js';
3
+ import { getRect } from '../global/dom.js';
4
+ import 'core-js/modules/web.dom-collections.iterator.js';
5
+
6
+ /**
7
+ * @name Caret
8
+ */
9
+
10
+ class Caret {
11
+ /**
12
+ * Line endings RegExp
13
+ * @type {RegExp}
14
+ */
15
+
16
+ /**
17
+ * Line endings normalizer
18
+ * Borrowed from jQuery
19
+ * @see https://github.com/jquery/jquery/blob/master/src/attributes/val.js
20
+ * @param value {*}
21
+ * @return {*}
22
+ */
23
+ static normalizeNewlines(value) {
24
+ return typeof value === 'string' ? value.replace(this.returnRE, '') : value;
25
+ }
26
+
27
+ constructor(target) {
28
+ this.target = target;
29
+ }
30
+
31
+ isContentEditable() {
32
+ return this.target.contentEditable === 'true';
33
+ }
34
+ /**
35
+ * Set focus on target if possible
36
+ */
37
+
38
+
39
+ focus() {
40
+ if (!document.activeElement || document.activeElement !== this.target) {
41
+ this.target.focus();
42
+ }
43
+ }
44
+ /**
45
+ * Get absolute caret position index
46
+ * @return {number}
47
+ */
48
+
49
+
50
+ getAbsolutePosition(node) {
51
+ let _curNode = node;
52
+ let curPos = 0;
53
+
54
+ while (_curNode !== this.target) {
55
+ while (_curNode.previousSibling) {
56
+ curPos += _curNode.previousSibling.textContent.length;
57
+ _curNode = _curNode.previousSibling;
58
+ }
59
+
60
+ _curNode = _curNode.parentNode;
61
+ }
62
+
63
+ return curPos;
64
+ }
65
+ /**
66
+ * Get caret position index
67
+ * @param {Object} [params]
68
+ * @param {boolean} params.avoidFocus
69
+ * @return {number}
70
+ */
71
+
72
+
73
+ getPosition() {
74
+ let params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
75
+
76
+ if (this.isContentEditable()) {
77
+ if (!params.avoidFocus) {
78
+ this.focus();
79
+ }
80
+
81
+ const selection = window.getSelection();
82
+
83
+ if (!selection.rangeCount) {
84
+ return 0;
85
+ }
86
+
87
+ const range1 = selection.getRangeAt(0);
88
+ const range2 = range1.cloneRange();
89
+ range2.selectNodeContents(this.target);
90
+ range2.setEnd(range1.endContainer, range1.endOffset);
91
+ const _curNode = range1.startContainer;
92
+
93
+ if (this.target === _curNode) {
94
+ return range1.startOffset === 0 ? 0 : _curNode.textContent.length;
95
+ } else if (!this.target.contains(_curNode)) {
96
+ return -1;
97
+ } else if (!_curNode) {
98
+ return this.target.selectionStart;
99
+ }
100
+
101
+ const curPos = this.getAbsolutePosition(_curNode);
102
+
103
+ if (range1.startContainer === range1.endContainer) {
104
+ if (range1.startOffset === range1.endOffset) {
105
+ return curPos + range1.startOffset;
106
+ } else {
107
+ return {
108
+ startOffset: curPos + range1.startOffset,
109
+ endOffset: curPos + range1.endOffset,
110
+ position: range2.toString().length
111
+ };
112
+ }
113
+ } else {
114
+ const startOffset = curPos + range1.startOffset;
115
+ const endPos = this.getAbsolutePosition(range1.endContainer);
116
+ const endOffset = endPos + range1.endOffset;
117
+ return {
118
+ startOffset,
119
+ endOffset,
120
+ position: range2.toString().length
121
+ };
122
+ }
123
+ }
124
+
125
+ return this.target.selectionStart;
126
+ }
127
+ /**
128
+ * Get relative position of query
129
+ * @param {Node} curNode
130
+ * @param {number} position
131
+ * @return {{_correctedPosition: number, _curNode: Node}}
132
+ */
133
+
134
+
135
+ getRelativePosition(curNode, position) {
136
+ let curPos = 0;
137
+ let _curNode = curNode;
138
+ const nodeTypeText = 3;
139
+
140
+ if (!_curNode) {
141
+ return {
142
+ _curNode: this.target,
143
+ _correctedPosition: position
144
+ };
145
+ }
146
+
147
+ if (position === 0) {
148
+ while (_curNode.nodeType !== nodeTypeText) {
149
+ _curNode = _curNode.childNodes[0];
150
+ }
151
+
152
+ const _correctedPosition = position;
153
+ return {
154
+ _curNode,
155
+ _correctedPosition
156
+ };
157
+ }
158
+
159
+ let i = -1;
160
+
161
+ if (_curNode && _curNode.nodeType !== undefined) {
162
+ while (curPos < position && _curNode.nodeType !== nodeTypeText) {
163
+ i++;
164
+
165
+ if (_curNode.childNodes[i] !== null && _curNode.childNodes[i]) {
166
+ curPos += _curNode.childNodes[i].textContent.length;
167
+
168
+ if (curPos >= position) {
169
+ _curNode = _curNode.childNodes[i];
170
+ curPos -= _curNode.textContent.length;
171
+ i = -1;
172
+ }
173
+ } else {
174
+ break;
175
+ }
176
+ }
177
+ }
178
+
179
+ const _correctedPosition = position - curPos;
180
+
181
+ return {
182
+ _curNode,
183
+ _correctedPosition
184
+ };
185
+ }
186
+ /**
187
+ * Set caret position index
188
+ * @param {number} position
189
+ * @return {number}
190
+ */
191
+
192
+
193
+ setPosition(position) {
194
+ const isContentEditable = this.isContentEditable();
195
+ let correctedPosition;
196
+ let curNode = this.target && this.target.childNodes[0];
197
+
198
+ if (position !== undefined) {
199
+ if (position.startOffset !== undefined) {
200
+ const range = new Range();
201
+ const start = this.getRelativePosition(curNode, position.startOffset);
202
+ range.setStart(start._curNode, start._correctedPosition);
203
+ const end = this.getRelativePosition(curNode, position.endOffset);
204
+ range.setEnd(end._curNode, end._correctedPosition);
205
+ correctedPosition = range;
206
+ } else if (position === -1) {
207
+ const value = isContentEditable ? this.target.textContent : this.constructor.normalizeNewlines(this.target.value);
208
+ correctedPosition = value.length;
209
+ } else {
210
+ const {
211
+ _curNode,
212
+ _correctedPosition
213
+ } = this.getRelativePosition(curNode, position);
214
+ curNode = _curNode;
215
+ correctedPosition = _correctedPosition;
216
+ }
217
+ }
218
+
219
+ if (isContentEditable) {
220
+ this.focus();
221
+
222
+ try {
223
+ if (correctedPosition instanceof Range) {
224
+ window.getSelection().removeAllRanges();
225
+ window.getSelection().addRange(correctedPosition);
226
+ } else {
227
+ window.getSelection().collapse(curNode || this.target, correctedPosition);
228
+ }
229
+ } catch (e) {// Do nothing
230
+ }
231
+ } else {
232
+ this.target.setSelectionRange(correctedPosition, correctedPosition);
233
+ }
234
+
235
+ return correctedPosition;
236
+ }
237
+ /**
238
+ * Get caret position in pixels
239
+ * @return {number}
240
+ */
241
+
242
+
243
+ getOffset() {
244
+ let offset = 0;
245
+ let range;
246
+
247
+ try {
248
+ // Both statements may throw
249
+ range = window.getSelection().getRangeAt(0).cloneRange();
250
+ range.setStart(range.startContainer, range.startOffset - 1);
251
+ } catch (e) {
252
+ return offset;
253
+ }
254
+
255
+ if (range && range.endOffset !== 0 && range.toString() !== '') {
256
+ offset = getRect(range).right - getRect(this.target).left - (range.startContainer.offsetLeft || 0);
257
+ }
258
+
259
+ return offset;
260
+ }
261
+
262
+ }
263
+
264
+ _defineProperty(Caret, "returnRE", /\r/g);
265
+
266
+ export { Caret as default };
@@ -0,0 +1,110 @@
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 checkmarkIcon from '@jetbrains/icons/checkmark';
7
+ import minusIcon from '@jetbrains/icons/remove-10px';
8
+ import Icon from '../icon/icon.js';
9
+ import { m as modules_3199090e } from '../_helpers/checkbox.js';
10
+ import 'util-deprecate';
11
+ import '../icon/icon__constants.js';
12
+ import '../_helpers/icon.js';
13
+ import '../icon/icon__svg.js';
14
+ import 'core-js/modules/es.string.replace.js';
15
+ import '../global/memoize.js';
16
+
17
+ /**
18
+ * @name Checkbox
19
+ */
20
+
21
+ /**
22
+ * Displays a checkbox.
23
+ */
24
+
25
+ class Checkbox extends PureComponent {
26
+ constructor() {
27
+ super(...arguments);
28
+
29
+ _defineProperty(this, "inputRef", el => {
30
+ if (el != null) {
31
+ el.indeterminate = this.props.indeterminate;
32
+ }
33
+
34
+ this.input = el;
35
+ });
36
+ }
37
+
38
+ componentDidMount() {
39
+ if (this.input != null) {
40
+ this.input.indeterminate = this.props.indeterminate;
41
+ }
42
+ }
43
+
44
+ componentDidUpdate(prevProps) {
45
+ const {
46
+ indeterminate
47
+ } = this.props;
48
+
49
+ if (this.input != null && indeterminate !== prevProps.indeterminate) {
50
+ this.input.indeterminate = this.props.indeterminate;
51
+ }
52
+ }
53
+
54
+ render() {
55
+ const {
56
+ children,
57
+ label,
58
+ className,
59
+ containerClassName,
60
+ containerStyle,
61
+ cellClassName,
62
+ labelClassName,
63
+ indeterminate,
64
+ ...restProps
65
+ } = this.props;
66
+ const classes = classNames(modules_3199090e.input, className);
67
+ const containerClasses = classNames(modules_3199090e.checkbox, containerClassName);
68
+ const cellClasses = classNames(modules_3199090e.cell, cellClassName);
69
+ const labelClasses = classNames(modules_3199090e.label, labelClassName);
70
+ return /*#__PURE__*/React.createElement("label", {
71
+ className: containerClasses,
72
+ style: containerStyle,
73
+ "data-test": "ring-checkbox"
74
+ }, /*#__PURE__*/React.createElement("input", _extends({}, restProps, {
75
+ "data-checked": restProps.checked,
76
+ ref: this.inputRef,
77
+ type: "checkbox",
78
+ className: classes
79
+ })), /*#__PURE__*/React.createElement("span", {
80
+ className: cellClasses
81
+ }, /*#__PURE__*/React.createElement(Icon, {
82
+ glyph: checkmarkIcon,
83
+ className: modules_3199090e.check
84
+ }), /*#__PURE__*/React.createElement(Icon, {
85
+ glyph: minusIcon,
86
+ className: modules_3199090e.minus
87
+ })), /*#__PURE__*/React.createElement("span", {
88
+ className: labelClasses
89
+ }, label || children));
90
+ }
91
+
92
+ }
93
+
94
+ _defineProperty(Checkbox, "propTypes", {
95
+ name: PropTypes.string,
96
+ label: PropTypes.string,
97
+ className: PropTypes.string,
98
+ containerClassName: PropTypes.string,
99
+ containerStyle: PropTypes.object,
100
+ cellClassName: PropTypes.string,
101
+ labelClassName: PropTypes.string,
102
+ defaultChecked: PropTypes.bool,
103
+ checked: PropTypes.bool,
104
+ indeterminate: PropTypes.bool,
105
+ disabled: PropTypes.bool,
106
+ onChange: PropTypes.func,
107
+ children: PropTypes.node
108
+ });
109
+
110
+ export { Checkbox as default };
@@ -0,0 +1,38 @@
1
+ import angular from 'angular';
2
+ import checkmarkIcon from '@jetbrains/icons/checkmark';
3
+ import IconNG from '../icon-ng/icon-ng.js';
4
+ import proxyAttrs from '../proxy-attrs/proxy-attrs.js';
5
+ import { m as modules_3199090e } from '../_helpers/checkbox.js';
6
+ import 'core-js/modules/es.string.replace.js';
7
+ import 'core-js/modules/web.dom-collections.iterator.js';
8
+ import '../icon/icon__constants.js';
9
+ import '../template-ng/template-ng.js';
10
+ import '../_helpers/_rollupPluginBabelHelpers.js';
11
+ import '../global/ring-angular-component.js';
12
+ import '../_helpers/icon.js';
13
+
14
+ /**
15
+ * @name Checkbox Ng
16
+ */
17
+
18
+ const angularModule = angular.module('Ring.checkbox', [IconNG]);
19
+ let idCounter = 0;
20
+ const CHECKBOX_ID_PREFIX = 'rg-checkbox-';
21
+ angularModule.directive('rgCheckbox', function rgCheckboxDirective() {
22
+ return {
23
+ restrict: 'E',
24
+ transclude: true,
25
+ replace: true,
26
+ template: proxyAttrs("\n<label class=\"".concat(modules_3199090e.checkbox, "\">\n <input\n data-proxy-ng-disabled\n data-proxy-ng-model\n data-proxy-ng-change\n data-proxy-ng-true-value\n data-proxy-ng-false-value\n data-proxy-name\n data-proxy-title\n data-proxy-aria-label\n data-test=\"ring-checkbox\"\n type=\"checkbox\"\n class=\"").concat(modules_3199090e.input, "\"\n />\n <span class=\"").concat(modules_3199090e.cell, "\">\n <rg-icon class=\"").concat(modules_3199090e.check, "\" glyph=\"{{:: checkmarkIcon}}\" />\n </span><span class=\"").concat(modules_3199090e.label, "\" ng-transclude></span>\n</label>\n ")),
27
+ link: function link(scope, iElement) {
28
+ scope.checkmarkIcon = checkmarkIcon;
29
+ const input = iElement[0].querySelector('input[type="checkbox"]');
30
+ const id = CHECKBOX_ID_PREFIX + idCounter++;
31
+ iElement[0].setAttribute('for', id);
32
+ input.setAttribute('id', id);
33
+ }
34
+ };
35
+ });
36
+ var Checkbox = angularModule.name;
37
+
38
+ export { Checkbox as default };
@@ -0,0 +1,137 @@
1
+ import { _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
2
+ import React, { PureComponent } from 'react';
3
+ import PropTypes from 'prop-types';
4
+ import classNames from 'classnames';
5
+ import highlight from 'highlight.js/lib/core';
6
+ export { default as highlight } from 'highlight.js/lib/core';
7
+ import normalizeIndent from '../global/normalize-indent.js';
8
+ import trivialTemplateTag from '../global/trivial-template-tag.js';
9
+ import memoize from '../global/memoize.js';
10
+ import 'core-js/modules/web.dom-collections.iterator.js';
11
+
12
+ var modules_66c414ea = {"unit":"8px","code":"code_rui_7185","inline":"inline_rui_7185","softWrap":"softWrap_rui_7185"};
13
+
14
+ var modules_39cf09e8 = {"highlightContainer":"highlightContainer_rui_6e02"};
15
+
16
+ function noop() {}
17
+
18
+ const registerLanguage = memoize(async language => {
19
+ const languageExports = await import(
20
+ /* webpackChunkName: "highlight-[request]" */
21
+ "highlight.js/lib/languages/".concat(language));
22
+ highlight.registerLanguage(language, languageExports.default);
23
+ });
24
+ /**
25
+ * @name Code
26
+ */
27
+
28
+ class Code extends PureComponent {
29
+ componentDidMount() {
30
+ this.highlight();
31
+ }
32
+
33
+ componentDidUpdate() {
34
+ this.highlight();
35
+ }
36
+
37
+ async highlight() {
38
+ const codeRef = this.codeRef;
39
+
40
+ if (codeRef == null) {
41
+ return;
42
+ }
43
+
44
+ const {
45
+ language,
46
+ inline,
47
+ replacer
48
+ } = this.props;
49
+
50
+ if (!inline) {
51
+ if (language != null && highlight.getLanguage(language) == null) {
52
+ await registerLanguage(language);
53
+ }
54
+
55
+ highlight.highlightElement(codeRef);
56
+ }
57
+
58
+ replacer(codeRef);
59
+ }
60
+
61
+ get codeRef() {
62
+ const {
63
+ codeRef
64
+ } = this.props;
65
+ return !codeRef || this.isFunctionCodeRef ? this.code : codeRef.current;
66
+ }
67
+
68
+ get isFunctionCodeRef() {
69
+ return typeof this.props.codeRef === 'function';
70
+ }
71
+
72
+ get initCodeRef() {
73
+ const {
74
+ codeRef
75
+ } = this.props;
76
+
77
+ if (codeRef && !this.isFunctionCodeRef) {
78
+ return codeRef;
79
+ }
80
+
81
+ return ref => {
82
+ this.code = ref;
83
+
84
+ if (this.isFunctionCodeRef) {
85
+ codeRef(this.code);
86
+ }
87
+ };
88
+ }
89
+
90
+ render() {
91
+ const {
92
+ code,
93
+ className,
94
+ inline,
95
+ softWrap,
96
+ language
97
+ } = this.props;
98
+ const Tag = inline ? 'span' : 'pre';
99
+ const classes = classNames(modules_66c414ea.code, className, language, {
100
+ [modules_66c414ea.inline]: inline,
101
+ [modules_66c414ea.softWrap]: softWrap
102
+ });
103
+ return /*#__PURE__*/React.createElement(Tag, {
104
+ className: classes
105
+ }, /*#__PURE__*/React.createElement("code", {
106
+ // should be focusable because it can be scrollable
107
+ tabIndex: inline ? -1 : 0,
108
+ ref: this.initCodeRef,
109
+ className: modules_39cf09e8.highlightContainer
110
+ }, normalizeIndent(code)));
111
+ }
112
+
113
+ }
114
+
115
+ _defineProperty(Code, "propTypes", {
116
+ className: PropTypes.string,
117
+ code: PropTypes.string.isRequired,
118
+ inline: PropTypes.bool,
119
+ softWrap: PropTypes.bool,
120
+ language: PropTypes.string,
121
+ replacer: PropTypes.func,
122
+ codeRef: PropTypes.oneOfType([PropTypes.shape({
123
+ current: PropTypes.instanceOf(Element)
124
+ }), PropTypes.func])
125
+ });
126
+
127
+ _defineProperty(Code, "defaultProps", {
128
+ inline: false,
129
+ softWrap: false,
130
+ replacer: noop
131
+ });
132
+
133
+ const code = trivialTemplateTag(source => /*#__PURE__*/React.createElement(Code, {
134
+ code: source
135
+ }));
136
+
137
+ export { code, Code as default };
@@ -0,0 +1,53 @@
1
+ import angular from 'angular';
2
+
3
+ const angularModule = angular.module('Ring.compiler', []).factory('rgCompiler', ["$q", "$controller", "$injector", "$compile", function rgCompilerFactory($q, $controller, $injector, $compile) {
4
+ return options => {
5
+ const template = options.template;
6
+ const controller = options.controller;
7
+ const controllerAs = options.controllerAs;
8
+ const resolve = angular.extend({}, options.resolve);
9
+ const bindToController = options.bindToController;
10
+ angular.forEach(resolve, (value, key) => {
11
+ if (angular.isString(value)) {
12
+ resolve[key] = $injector.get(value);
13
+ } else {
14
+ // Use comma expression to disable babel-plugin-angular-annotate
15
+ // Otherwise is fails with "Maximum call stack size exceeded" error
16
+ resolve[key] = $injector.invoke((value));
17
+ }
18
+ });
19
+ angular.extend(resolve, options.locals);
20
+ return $q.all(resolve).then(locals => {
21
+ const element = options.element || angular.element('<div>').html(template.trim()).contents();
22
+ const linkFn = $compile(element, locals.$transclude);
23
+ locals.$element = element;
24
+ return {
25
+ locals,
26
+ element,
27
+ link: function link(scope) {
28
+ locals.$scope = scope;
29
+
30
+ if (controller) {
31
+ const invokeCtrl = $controller(controller, locals, true);
32
+
33
+ if (bindToController) {
34
+ angular.extend(invokeCtrl.instance, locals);
35
+ }
36
+
37
+ const ctrl = invokeCtrl();
38
+ element.data('$ngControllerController', ctrl);
39
+
40
+ if (controllerAs) {
41
+ scope[controllerAs] = ctrl;
42
+ }
43
+ }
44
+
45
+ return linkFn(scope);
46
+ }
47
+ };
48
+ });
49
+ };
50
+ }]);
51
+ var rgCompilerModuleName = angularModule.name;
52
+
53
+ export { rgCompilerModuleName as default };