@jetbrains/ring-ui-built 7.0.71 → 7.0.73

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 (287) hide show
  1. package/components/_helpers/anchor.js +55 -13
  2. package/components/_helpers/avatar-info.js +44 -11
  3. package/components/_helpers/caption.js +2 -2
  4. package/components/_helpers/card.js +21 -21
  5. package/components/_helpers/icon-svg.js +75 -17
  6. package/components/_helpers/input.js +13 -13
  7. package/components/_helpers/query-assist-suggestions.js +5 -5
  8. package/components/_helpers/select-filter.js +5 -5
  9. package/components/_helpers/services-link.js +5 -5
  10. package/components/_helpers/sidebar.js +6 -6
  11. package/components/_helpers/tab-link.js +69 -17
  12. package/components/_helpers/theme.js +231 -54
  13. package/components/_helpers/title.js +5 -5
  14. package/components/alert/alert.d.ts +1 -1
  15. package/components/alert/alert.js +12 -10
  16. package/components/alert/container.js +4 -4
  17. package/components/alert-service/alert-service.d.ts +1 -1
  18. package/components/alert-service/alert-service.js +5 -4
  19. package/components/auth/auth-core.js +8 -8
  20. package/components/auth/auth.js +3 -2
  21. package/components/auth/down-notification.js +61 -17
  22. package/components/auth/iframe-flow.js +7 -6
  23. package/components/auth/storage.js +3 -2
  24. package/components/auth/token-validator.js +1 -1
  25. package/components/auth/window-flow.js +2 -2
  26. package/components/auth-dialog/auth-dialog.d.ts +1 -1
  27. package/components/auth-dialog/auth-dialog.js +15 -14
  28. package/components/auth-dialog-service/auth-dialog-service.js +4 -6
  29. package/components/avatar/avatar-info.d.ts +1 -1
  30. package/components/avatar/avatar-info.js +3 -2
  31. package/components/avatar/avatar.d.ts +1 -1
  32. package/components/avatar/avatar.js +16 -15
  33. package/components/avatar/fallback-avatar.d.ts +1 -1
  34. package/components/avatar/fallback-avatar.js +183 -59
  35. package/components/avatar-stack/avatar-stack.d.ts +1 -1
  36. package/components/avatar-stack/avatar-stack.js +115 -29
  37. package/components/banner/banner.d.ts +1 -1
  38. package/components/banner/banner.js +11 -10
  39. package/components/breadcrumbs/breadcrumbs.d.ts +1 -1
  40. package/components/breadcrumbs/breadcrumbs.js +3 -2
  41. package/components/button/button.d.ts +1 -1
  42. package/components/button/button.js +11 -10
  43. package/components/button-group/button-group.d.ts +1 -1
  44. package/components/button-group/button-group.js +6 -8
  45. package/components/button-group/caption.d.ts +1 -1
  46. package/components/button-group/caption.js +1 -1
  47. package/components/button-set/button-set.d.ts +1 -1
  48. package/components/button-set/button-set.js +2 -5
  49. package/components/button-toolbar/button-toolbar.d.ts +1 -1
  50. package/components/button-toolbar/button-toolbar.js +2 -5
  51. package/components/checkbox/checkbox.d.ts +1 -1
  52. package/components/checkbox/checkbox.js +12 -17
  53. package/components/clipboard/clipboard.js +2 -1
  54. package/components/code/code.d.ts +1 -1
  55. package/components/code/code.js +5 -5
  56. package/components/collapse/collapse-content.js +161 -77
  57. package/components/collapse/collapse-control.js +69 -22
  58. package/components/collapse/collapse.js +83 -31
  59. package/components/confirm/confirm.d.ts +1 -1
  60. package/components/confirm/confirm.js +11 -13
  61. package/components/confirm-service/confirm-service.js +4 -3
  62. package/components/content-layout/content-layout.d.ts +1 -1
  63. package/components/content-layout/content-layout.js +4 -7
  64. package/components/content-layout/sidebar.d.ts +1 -1
  65. package/components/content-layout/sidebar.js +1 -1
  66. package/components/contenteditable/contenteditable.d.ts +2 -2
  67. package/components/contenteditable/contenteditable.js +50 -14
  68. package/components/control-help/control-help.d.ts +1 -1
  69. package/components/control-help/control-help.js +45 -9
  70. package/components/control-label/control-label.js +62 -13
  71. package/components/data-list/data-list.d.ts +1 -1
  72. package/components/data-list/data-list.js +10 -9
  73. package/components/data-list/data-list.mock.d.ts +1 -1
  74. package/components/data-list/data-list.mock.js +79 -78
  75. package/components/data-list/item.d.ts +2 -2
  76. package/components/data-list/item.js +18 -17
  77. package/components/data-list/title.d.ts +1 -1
  78. package/components/data-list/title.js +2 -1
  79. package/components/date-picker/consts.js +1 -1
  80. package/components/date-picker/date-input.d.ts +1 -1
  81. package/components/date-picker/date-input.js +4 -3
  82. package/components/date-picker/date-picker.d.ts +1 -1
  83. package/components/date-picker/date-picker.js +97 -31
  84. package/components/date-picker/date-popup.d.ts +1 -1
  85. package/components/date-picker/date-popup.js +11 -10
  86. package/components/date-picker/day.d.ts +1 -1
  87. package/components/date-picker/day.js +4 -3
  88. package/components/date-picker/month-names.d.ts +1 -1
  89. package/components/date-picker/month-names.js +98 -22
  90. package/components/date-picker/month-slider.d.ts +1 -1
  91. package/components/date-picker/month-slider.js +4 -4
  92. package/components/date-picker/month.d.ts +1 -1
  93. package/components/date-picker/month.js +79 -18
  94. package/components/date-picker/months.d.ts +1 -1
  95. package/components/date-picker/months.js +163 -53
  96. package/components/date-picker/weekdays.d.ts +1 -1
  97. package/components/date-picker/weekdays.js +56 -16
  98. package/components/date-picker/years.d.ts +1 -1
  99. package/components/date-picker/years.js +5 -5
  100. package/components/dialog/dialog.d.ts +1 -1
  101. package/components/dialog/dialog.js +21 -23
  102. package/components/dropdown/anchor.d.ts +1 -1
  103. package/components/dropdown/anchor.js +2 -1
  104. package/components/dropdown/dropdown.d.ts +1 -1
  105. package/components/dropdown/dropdown.js +7 -8
  106. package/components/dropdown-menu/dropdown-menu.js +299 -83
  107. package/components/editable-heading/editable-heading.d.ts +2 -2
  108. package/components/editable-heading/editable-heading.js +523 -174
  109. package/components/error-bubble/error-bubble.d.ts +1 -1
  110. package/components/error-bubble/error-bubble.js +7 -9
  111. package/components/error-message/error-message.d.ts +1 -1
  112. package/components/error-message/error-message.js +8 -10
  113. package/components/footer/footer.js +205 -61
  114. package/components/global/create-stateful-context.d.ts +1 -1
  115. package/components/global/create-stateful-context.js +73 -18
  116. package/components/global/focus-sensor-hoc.js +2 -2
  117. package/components/global/get-uid.js +1 -1
  118. package/components/global/react-dom-renderer.d.ts +1 -1
  119. package/components/global/react-dom-renderer.js +2 -2
  120. package/components/global/rerender-hoc.js +23 -6
  121. package/components/global/theme.js +3 -2
  122. package/components/global/use-event-callback.js +37 -13
  123. package/components/grid/col.d.ts +1 -1
  124. package/components/grid/col.js +3 -3
  125. package/components/grid/grid.d.ts +1 -1
  126. package/components/grid/grid.js +3 -6
  127. package/components/grid/row.d.ts +1 -1
  128. package/components/grid/row.js +3 -3
  129. package/components/group/group.d.ts +1 -1
  130. package/components/group/group.js +3 -6
  131. package/components/header/header-icon.d.ts +1 -1
  132. package/components/header/header-icon.js +3 -2
  133. package/components/header/header.d.ts +1 -1
  134. package/components/header/header.js +7 -12
  135. package/components/header/links.d.ts +1 -1
  136. package/components/header/links.js +45 -10
  137. package/components/header/logo.d.ts +1 -1
  138. package/components/header/logo.js +4 -3
  139. package/components/header/profile.js +17 -16
  140. package/components/header/services-link.d.ts +1 -1
  141. package/components/header/services-link.js +1 -1
  142. package/components/header/services.d.ts +1 -1
  143. package/components/header/services.js +35 -16
  144. package/components/header/smart-profile.d.ts +1 -1
  145. package/components/header/smart-profile.js +6 -5
  146. package/components/header/smart-services.d.ts +1 -1
  147. package/components/header/smart-services.js +3 -2
  148. package/components/header/tray.d.ts +1 -1
  149. package/components/header/tray.js +3 -3
  150. package/components/heading/heading.js +188 -44
  151. package/components/i18n/i18n-context.js +51 -13
  152. package/components/icon/icon-svg.d.ts +1 -1
  153. package/components/icon/icon-svg.js +2 -1
  154. package/components/icon/icon.d.ts +1 -1
  155. package/components/icon/icon.js +6 -5
  156. package/components/icon/index.js +2 -1
  157. package/components/input/input.d.ts +1 -1
  158. package/components/input/input.js +2 -1
  159. package/components/island/adaptive-island-hoc.js +4 -4
  160. package/components/island/content.d.ts +1 -1
  161. package/components/island/content.js +36 -17
  162. package/components/island/header.d.ts +1 -1
  163. package/components/island/header.js +32 -14
  164. package/components/island/island.d.ts +1 -1
  165. package/components/island/island.js +3 -5
  166. package/components/link/clickable-link.d.ts +1 -1
  167. package/components/link/clickable-link.js +2 -2
  168. package/components/link/link.js +4 -4
  169. package/components/list/list-custom.d.ts +1 -1
  170. package/components/list/list-custom.js +2 -2
  171. package/components/list/list-hint.d.ts +1 -1
  172. package/components/list/list-hint.js +3 -7
  173. package/components/list/list-item.d.ts +1 -1
  174. package/components/list/list-item.js +23 -26
  175. package/components/list/list-separator.d.ts +1 -1
  176. package/components/list/list-separator.js +3 -3
  177. package/components/list/list-title.d.ts +1 -1
  178. package/components/list/list-title.js +7 -7
  179. package/components/list/list-users-groups-source.js +6 -5
  180. package/components/list/list.d.ts +6 -6
  181. package/components/list/list.js +33 -31
  182. package/components/loader/loader.d.ts +1 -1
  183. package/components/loader/loader.js +8 -14
  184. package/components/loader-inline/loader-inline.d.ts +1 -1
  185. package/components/loader-inline/loader-inline.js +4 -7
  186. package/components/loader-screen/loader-screen.d.ts +1 -1
  187. package/components/loader-screen/loader-screen.js +3 -6
  188. package/components/login-dialog/login-dialog.d.ts +1 -1
  189. package/components/login-dialog/login-dialog.js +10 -9
  190. package/components/login-dialog/service.js +4 -3
  191. package/components/markdown/markdown.d.ts +1 -1
  192. package/components/markdown/markdown.js +3 -6
  193. package/components/message/message.d.ts +1 -1
  194. package/components/message/message.js +13 -15
  195. package/components/old-browsers-message/white-list.js +2 -2
  196. package/components/pager/pager.d.ts +5 -5
  197. package/components/pager/pager.js +28 -27
  198. package/components/panel/panel.d.ts +1 -1
  199. package/components/panel/panel.js +3 -6
  200. package/components/popup/popup.d.ts +2 -2
  201. package/components/popup/popup.js +14 -11
  202. package/components/popup/popup.target.js +68 -16
  203. package/components/popup-menu/popup-menu.d.ts +1 -1
  204. package/components/popup-menu/popup-menu.js +7 -9
  205. package/components/progress-bar/progress-bar.d.ts +1 -1
  206. package/components/progress-bar/progress-bar.js +4 -7
  207. package/components/query-assist/query-assist-suggestions.d.ts +1 -1
  208. package/components/query-assist/query-assist-suggestions.js +5 -4
  209. package/components/query-assist/query-assist.d.ts +2 -2
  210. package/components/query-assist/query-assist.js +37 -34
  211. package/components/radio/radio-item.d.ts +1 -1
  212. package/components/radio/radio-item.js +40 -20
  213. package/components/radio/radio.d.ts +1 -1
  214. package/components/radio/radio.js +3 -5
  215. package/components/scrollable-section/scrollable-section.d.ts +1 -1
  216. package/components/scrollable-section/scrollable-section.js +100 -38
  217. package/components/select/select-filter.d.ts +1 -1
  218. package/components/select/select-filter.js +5 -4
  219. package/components/select/select-popup.d.ts +7 -7
  220. package/components/select/select-popup.js +26 -25
  221. package/components/select/select.d.ts +3 -3
  222. package/components/select/select.js +52 -52
  223. package/components/shortcuts/shortcuts-hoc.js +3 -3
  224. package/components/slider/slider.js +591 -196
  225. package/components/storage/storage-local.js +2 -1
  226. package/components/storage/storage.js +2 -1
  227. package/components/style.css +1 -1
  228. package/components/tab-trap/tab-trap.js +247 -102
  229. package/components/table/cell.d.ts +1 -1
  230. package/components/table/cell.js +2 -2
  231. package/components/table/disable-hover-hoc.js +3 -3
  232. package/components/table/header-cell.d.ts +1 -1
  233. package/components/table/header-cell.js +7 -6
  234. package/components/table/header.d.ts +2 -2
  235. package/components/table/header.js +14 -13
  236. package/components/table/multitable.d.ts +1 -1
  237. package/components/table/multitable.js +3 -3
  238. package/components/table/row-with-focus-sensor.d.ts +1 -1
  239. package/components/table/row-with-focus-sensor.js +3 -2
  240. package/components/table/row.d.ts +1 -1
  241. package/components/table/row.js +51 -24
  242. package/components/table/selection-shortcuts-hoc.js +2 -2
  243. package/components/table/simple-table.d.ts +1 -1
  244. package/components/table/simple-table.js +4 -3
  245. package/components/table/smart-table.d.ts +1 -1
  246. package/components/table/smart-table.js +4 -3
  247. package/components/table/table.d.ts +2 -2
  248. package/components/table/table.js +21 -23
  249. package/components/tabs/collapsible-more.d.ts +3 -3
  250. package/components/tabs/collapsible-more.js +253 -83
  251. package/components/tabs/collapsible-tab.d.ts +1 -1
  252. package/components/tabs/collapsible-tab.js +4 -3
  253. package/components/tabs/collapsible-tabs.d.ts +2 -2
  254. package/components/tabs/collapsible-tabs.js +450 -188
  255. package/components/tabs/dumb-tabs.d.ts +2 -2
  256. package/components/tabs/dumb-tabs.js +10 -9
  257. package/components/tabs/smart-tabs.d.ts +1 -1
  258. package/components/tabs/smart-tabs.js +6 -5
  259. package/components/tabs/tab-link.d.ts +1 -1
  260. package/components/tabs/tab-link.js +2 -1
  261. package/components/tabs/tab.d.ts +1 -1
  262. package/components/tabs/tab.js +2 -2
  263. package/components/tabs/tabs.js +5 -4
  264. package/components/tag/tag.d.ts +5 -5
  265. package/components/tag/tag.js +14 -13
  266. package/components/tags-input/tags-input.d.ts +1 -1
  267. package/components/tags-input/tags-input.js +10 -9
  268. package/components/tags-list/tags-list.d.ts +2 -2
  269. package/components/tags-list/tags-list.js +4 -3
  270. package/components/text/text.d.ts +1 -1
  271. package/components/text/text.js +2 -2
  272. package/components/toggle/toggle.d.ts +1 -1
  273. package/components/toggle/toggle.js +12 -11
  274. package/components/tooltip/tooltip.d.ts +1 -1
  275. package/components/tooltip/tooltip.js +7 -6
  276. package/components/upload/upload.js +10 -9
  277. package/components/user-agreement/service.js +11 -10
  278. package/components/user-agreement/user-agreement.d.ts +1 -1
  279. package/components/user-agreement/user-agreement.js +19 -18
  280. package/components/user-card/card.d.ts +1 -1
  281. package/components/user-card/card.js +3 -2
  282. package/components/user-card/smart-user-card-tooltip.d.ts +2 -2
  283. package/components/user-card/smart-user-card-tooltip.js +7 -6
  284. package/components/user-card/tooltip.d.ts +2 -2
  285. package/components/user-card/tooltip.js +7 -6
  286. package/components/user-card/user-card.js +4 -3
  287. package/package.json +3 -9
@@ -1,6 +1,6 @@
1
- import { jsx, jsxs } from 'react/jsx-runtime';
2
1
  import Link from '../link/link.js';
3
2
  import Tag from '../tag/tag.js';
3
+ import { jsxs, jsx } from 'react/jsx-runtime';
4
4
  import 'react';
5
5
  import 'classnames';
6
6
  import '../global/data-tests.js';
@@ -11,6 +11,7 @@ import '../icon/icon.js';
11
11
  import 'util-deprecate';
12
12
  import '../icon/icon.constants.js';
13
13
  import '../_helpers/icon-svg.js';
14
+ import 'react-compiler-runtime';
14
15
  import '../global/memoize.js';
15
16
  import '../button/button.js';
16
17
  import '@jetbrains/icons/chevron-down';
@@ -21,8 +22,8 @@ import '../_helpers/button.classes.js';
21
22
 
22
23
  const items = [{
23
24
  id: 1,
24
- title: jsxs("span", {
25
- children: [jsx("strong", {
25
+ title: /*#__PURE__*/jsxs("span", {
26
+ children: [/*#__PURE__*/jsx("strong", {
26
27
  children: "Assigner"
27
28
  }), " in 60 projects"]
28
29
  }),
@@ -36,44 +37,44 @@ const items = [{
36
37
  items: [{
37
38
  id: 111,
38
39
  selectable: true,
39
- title: jsx(Link, {
40
- href: '#',
40
+ title: /*#__PURE__*/jsx(Link, {
41
+ href: "#",
41
42
  children: "TeamCity"
42
43
  })
43
44
  }, {
44
45
  id: 112,
45
46
  selectable: true,
46
- title: jsx(Link, {
47
- href: '#',
47
+ title: /*#__PURE__*/jsx(Link, {
48
+ href: "#",
48
49
  children: "YouTrack"
49
50
  })
50
51
  }, {
51
52
  id: 113,
52
53
  selectable: true,
53
- title: jsx(Link, {
54
- href: '#',
54
+ title: /*#__PURE__*/jsx(Link, {
55
+ href: "#",
55
56
  children: "Sandbox"
56
57
  })
57
58
  }, {
58
59
  id: 114,
59
60
  selectable: true,
60
- title: jsx(Link, {
61
- href: '#',
61
+ title: /*#__PURE__*/jsx(Link, {
62
+ href: "#",
62
63
  children: "Exception Analyzer"
63
64
  })
64
65
  }, {
65
66
  id: 115,
66
67
  selectable: true,
67
- title: jsx(Link, {
68
- href: '#',
68
+ title: /*#__PURE__*/jsx(Link, {
69
+ href: "#",
69
70
  children: "MPS"
70
71
  })
71
72
  }]
72
73
  }]
73
74
  }, {
74
75
  id: 2,
75
- title: jsxs("span", {
76
- children: [jsx("strong", {
76
+ title: /*#__PURE__*/jsxs("span", {
77
+ children: [/*#__PURE__*/jsx("strong", {
77
78
  children: "Code Reviewer"
78
79
  }), " in 5 projects"]
79
80
  }),
@@ -82,13 +83,13 @@ const items = [{
82
83
  items: [{
83
84
  id: 21,
84
85
  selectable: true,
85
- title: jsxs("span", {
86
- children: [jsx(Link, {
87
- href: '#',
86
+ title: /*#__PURE__*/jsxs("span", {
87
+ children: [/*#__PURE__*/jsx(Link, {
88
+ href: "#",
88
89
  children: "JetProfile"
89
- }), jsx("span", {
90
+ }), /*#__PURE__*/jsx("span", {
90
91
  children: " "
91
- }), jsx(Tag, {
92
+ }), /*#__PURE__*/jsx(Tag, {
92
93
  children: "duplicate"
93
94
  })]
94
95
  })
@@ -99,55 +100,55 @@ const items = [{
99
100
  items: [{
100
101
  id: 221,
101
102
  collapsible: true,
102
- title: jsx(Link, {
103
- href: '#',
103
+ title: /*#__PURE__*/jsx(Link, {
104
+ href: "#",
104
105
  children: "TeamCity"
105
106
  })
106
107
  }, {
107
108
  id: 222,
108
109
  collapsible: true,
109
- title: jsx(Link, {
110
- href: '#',
110
+ title: /*#__PURE__*/jsx(Link, {
111
+ href: "#",
111
112
  children: "YouTrack"
112
113
  })
113
114
  }, {
114
115
  id: 223,
115
116
  collapsible: true,
116
- title: jsx(Link, {
117
- href: '#',
117
+ title: /*#__PURE__*/jsx(Link, {
118
+ href: "#",
118
119
  children: "Sandbox"
119
120
  })
120
121
  }, {
121
122
  id: 224,
122
123
  collapsible: true,
123
- title: jsx(Link, {
124
- href: '#',
124
+ title: /*#__PURE__*/jsx(Link, {
125
+ href: "#",
125
126
  children: "Exception Analyzer"
126
127
  })
127
128
  }, {
128
129
  id: 225,
129
130
  collapsible: true,
130
- title: jsx(Link, {
131
- href: '#',
131
+ title: /*#__PURE__*/jsx(Link, {
132
+ href: "#",
132
133
  children: "MPS"
133
134
  })
134
135
  }]
135
136
  }, {
136
137
  id: 23,
137
138
  collapsible: true,
138
- title: jsxs("span", {
139
- children: [jsx(Link, {
140
- href: '#',
139
+ title: /*#__PURE__*/jsxs("span", {
140
+ children: [/*#__PURE__*/jsx(Link, {
141
+ href: "#",
141
142
  children: "CustomJDK"
142
- }), jsx("span", {
143
+ }), /*#__PURE__*/jsx("span", {
143
144
  children: ": as a member of ide-developers"
144
145
  })]
145
146
  })
146
147
  }]
147
148
  }, {
148
149
  id: 3,
149
- title: jsxs("span", {
150
- children: [jsx("strong", {
150
+ title: /*#__PURE__*/jsxs("span", {
151
+ children: [/*#__PURE__*/jsx("strong", {
151
152
  children: "Code Viewer"
152
153
  }), " in 5 projects"]
153
154
  }),
@@ -156,30 +157,30 @@ const items = [{
156
157
  items: [{
157
158
  id: 31,
158
159
  collapsible: true,
159
- title: jsxs("span", {
160
- children: [jsx(Link, {
161
- href: '#',
160
+ title: /*#__PURE__*/jsxs("span", {
161
+ children: [/*#__PURE__*/jsx(Link, {
162
+ href: "#",
162
163
  children: "ide-frontend"
163
- }), jsx("span", {
164
+ }), /*#__PURE__*/jsx("span", {
164
165
  children: ": as a member of ide-developers"
165
166
  })]
166
167
  })
167
168
  }, {
168
169
  id: 32,
169
170
  collapsible: true,
170
- title: jsxs("span", {
171
- children: [jsx(Link, {
172
- href: '#',
171
+ title: /*#__PURE__*/jsxs("span", {
172
+ children: [/*#__PURE__*/jsx(Link, {
173
+ href: "#",
173
174
  children: "ide-frontend"
174
- }), jsx("span", {
175
+ }), /*#__PURE__*/jsx("span", {
175
176
  children: ": as a member of ide-frontend Code Viewers"
176
177
  })]
177
178
  })
178
179
  }]
179
180
  }, {
180
181
  id: 4,
181
- title: jsxs("span", {
182
- children: [jsx("strong", {
182
+ title: /*#__PURE__*/jsxs("span", {
183
+ children: [/*#__PURE__*/jsx("strong", {
183
184
  children: "Commenter"
184
185
  }), " in 12 projects"]
185
186
  }),
@@ -187,22 +188,22 @@ const items = [{
187
188
  items: [{
188
189
  id: 41,
189
190
  collapsible: true,
190
- title: jsxs("span", {
191
- children: [jsx(Link, {
192
- href: '#',
191
+ title: /*#__PURE__*/jsxs("span", {
192
+ children: [/*#__PURE__*/jsx(Link, {
193
+ href: "#",
193
194
  children: "Intellij IDEA"
194
- }), jsx("span", {
195
+ }), /*#__PURE__*/jsx("span", {
195
196
  children: ": as a member of Registered Users"
196
197
  })]
197
198
  })
198
199
  }, {
199
200
  id: 42,
200
201
  collapsible: true,
201
- title: jsxs("span", {
202
- children: [jsx(Link, {
203
- href: '#',
202
+ title: /*#__PURE__*/jsxs("span", {
203
+ children: [/*#__PURE__*/jsx(Link, {
204
+ href: "#",
204
205
  children: "YouTrack Backlog"
205
- }), jsx("span", {
206
+ }), /*#__PURE__*/jsx("span", {
206
207
  children: ": as a member of jetbrains-team"
207
208
  })]
208
209
  })
@@ -210,12 +211,12 @@ const items = [{
210
211
  }, {
211
212
  id: 5,
212
213
  collapsible: true,
213
- title: jsxs("span", {
214
- children: [jsx("strong", {
214
+ title: /*#__PURE__*/jsxs("span", {
215
+ children: [/*#__PURE__*/jsx("strong", {
215
216
  children: "Developer"
216
- }), jsx("span", {
217
+ }), /*#__PURE__*/jsx("span", {
217
218
  children: " in 57 projects "
218
- }), jsx(Tag, {
219
+ }), /*#__PURE__*/jsx(Tag, {
219
220
  children: "team role"
220
221
  })]
221
222
  }),
@@ -223,30 +224,30 @@ const items = [{
223
224
  id: 51,
224
225
  selectable: true,
225
226
  collapsible: true,
226
- title: jsx(Link, {
227
- href: '#',
227
+ title: /*#__PURE__*/jsx(Link, {
228
+ href: "#",
228
229
  children: "Wasabi"
229
230
  })
230
231
  }]
231
232
  }, {
232
233
  id: 6,
233
234
  collapsible: true,
234
- title: jsxs("span", {
235
- children: [jsx("strong", {
235
+ title: /*#__PURE__*/jsxs("span", {
236
+ children: [/*#__PURE__*/jsx("strong", {
236
237
  children: "Git Hosting Admin"
237
- }), jsx("span", {
238
+ }), /*#__PURE__*/jsx("span", {
238
239
  children: " in project "
239
- }), jsx(Link, {
240
- href: '#',
240
+ }), /*#__PURE__*/jsx(Link, {
241
+ href: "#",
241
242
  children: "Hackathon 2016"
242
- }), jsx("span", {
243
+ }), /*#__PURE__*/jsx("span", {
243
244
  children: ": as a member of jetbrains-team"
244
245
  })]
245
246
  })
246
247
  }, {
247
248
  id: 7,
248
- title: jsxs("span", {
249
- children: [jsx("strong", {
249
+ title: /*#__PURE__*/jsxs("span", {
250
+ children: [/*#__PURE__*/jsx("strong", {
250
251
  children: "Git Hosting Checkout"
251
252
  }), " in 7 projects"]
252
253
  }),
@@ -257,13 +258,13 @@ const moreItems = [{
257
258
  id: 91,
258
259
  selectable: true,
259
260
  collapsible: true,
260
- title: jsxs("span", {
261
- children: [jsx(Link, {
262
- href: '#',
261
+ title: /*#__PURE__*/jsxs("span", {
262
+ children: [/*#__PURE__*/jsx(Link, {
263
+ href: "#",
263
264
  children: "More item 1"
264
- }), jsx("span", {
265
+ }), /*#__PURE__*/jsx("span", {
265
266
  children: " "
266
- }), jsx(Tag, {
267
+ }), /*#__PURE__*/jsx(Tag, {
267
268
  children: "duplicate"
268
269
  })]
269
270
  })
@@ -271,13 +272,13 @@ const moreItems = [{
271
272
  id: 92,
272
273
  selectable: true,
273
274
  collapsible: true,
274
- title: jsxs("span", {
275
- children: [jsx(Link, {
276
- href: '#',
275
+ title: /*#__PURE__*/jsxs("span", {
276
+ children: [/*#__PURE__*/jsx(Link, {
277
+ href: "#",
277
278
  children: "More item 2"
278
- }), jsx("span", {
279
+ }), /*#__PURE__*/jsx("span", {
279
280
  children: " "
280
- }), jsx(Tag, {
281
+ }), /*#__PURE__*/jsx(Tag, {
281
282
  children: "duplicate"
282
283
  })]
283
284
  })
@@ -47,6 +47,6 @@ export default class Item<T extends SelectionItem> extends PureComponent<ItemPro
47
47
  onShowLess: () => void;
48
48
  onFocus: () => void;
49
49
  onSelect: (selected: boolean) => void;
50
- renderItem: (model: T, parentShift: number) => import("react/jsx-runtime").JSX.Element;
51
- render(): import("react/jsx-runtime").JSX.Element;
50
+ renderItem: (model: T, parentShift: number) => import("react").JSX.Element;
51
+ render(): import("react").JSX.Element;
52
52
  }
@@ -1,4 +1,3 @@
1
- import { jsx, jsxs } from 'react/jsx-runtime';
2
1
  import { PureComponent } from 'react';
3
2
  import chevronRightIcon from '@jetbrains/icons/chevron-right';
4
3
  import chevronDownIcon from '@jetbrains/icons/chevron-down';
@@ -7,6 +6,7 @@ import Text from '../text/text.js';
7
6
  import LoaderInline from '../loader-inline/loader-inline.js';
8
7
  import { Button } from '../button/button.js';
9
8
  import { s as styles, T as Title } from '../_helpers/title.js';
9
+ import { jsx, jsxs } from 'react/jsx-runtime';
10
10
  import 'classnames';
11
11
  import '../global/data-tests.js';
12
12
  import '../link/clickable-link.js';
@@ -16,6 +16,7 @@ import 'util-deprecate';
16
16
  import '../icon/icon.js';
17
17
  import '../icon/icon.constants.js';
18
18
  import '../_helpers/icon-svg.js';
19
+ import 'react-compiler-runtime';
19
20
  import '../global/memoize.js';
20
21
  import '../global/controls-height.js';
21
22
  import '../global/configuration.js';
@@ -83,7 +84,7 @@ class Item extends PureComponent {
83
84
  itemFormatter
84
85
  } = this.props;
85
86
  const item = itemFormatter(model);
86
- return jsx(Item, {
87
+ return /*#__PURE__*/jsx(Item, {
87
88
  item: model,
88
89
  title: item.title,
89
90
  items: item.items,
@@ -121,23 +122,23 @@ class Item extends PureComponent {
121
122
  } = this.props;
122
123
  let moreLessButton;
123
124
  if (showMoreLessButton === moreLessButtonStates.MORE || showMoreLessButton === moreLessButtonStates.MORE_LOADING) {
124
- moreLessButton = jsxs(Text, {
125
+ moreLessButton = /*#__PURE__*/jsxs(Text, {
125
126
  info: true,
126
127
  size: Text.Size.S,
127
- children: [jsx(Link, {
128
+ children: [/*#__PURE__*/jsx(Link, {
128
129
  inherit: true,
129
130
  pseudo: true,
130
131
  onClick: this.onShowMore,
131
132
  children: 'Show more'
132
- }), showMoreLessButton === moreLessButtonStates.MORE_LOADING && jsx(LoaderInline, {
133
+ }), showMoreLessButton === moreLessButtonStates.MORE_LOADING && /*#__PURE__*/jsx(LoaderInline, {
133
134
  className: styles.showMoreLoader
134
135
  })]
135
136
  });
136
137
  } else if (showMoreLessButton === moreLessButtonStates.LESS) {
137
- moreLessButton = jsx(Text, {
138
+ moreLessButton = /*#__PURE__*/jsx(Text, {
138
139
  info: true,
139
140
  size: Text.Size.S,
140
- children: jsx(Link, {
141
+ children: /*#__PURE__*/jsx(Link, {
141
142
  inherit: true,
142
143
  pseudo: true,
143
144
  onClick: this.onShowLess,
@@ -148,29 +149,29 @@ class Item extends PureComponent {
148
149
  let collapserExpander = null;
149
150
  if (collapsible) {
150
151
  if (collapsed) {
151
- collapserExpander = jsx(Button, {
152
- title: 'Expand',
152
+ collapserExpander = /*#__PURE__*/jsx(Button, {
153
+ title: "Expand",
153
154
  onClick: onExpand,
154
155
  icon: chevronRightIcon,
155
156
  className: styles.collapseButton,
156
157
  iconClassName: styles.collapseIcon,
157
- "data-test": 'ring-data-list-expand'
158
+ "data-test": "ring-data-list-expand"
158
159
  });
159
160
  } else {
160
- collapserExpander = jsx(Button, {
161
- title: 'Collapse',
161
+ collapserExpander = /*#__PURE__*/jsx(Button, {
162
+ title: "Collapse",
162
163
  onClick: onCollapse,
163
164
  icon: chevronDownIcon,
164
165
  className: styles.collapseButton,
165
166
  iconClassName: styles.collapseIcon,
166
- "data-test": 'ring-data-list-collapse'
167
+ "data-test": "ring-data-list-collapse"
167
168
  });
168
169
  }
169
170
  }
170
171
  const itemIsEmpty = !items?.length || collapsible && collapsed;
171
172
  const offset = level * LIST_LEFT_OFFSET + ITEM_LEFT_OFFSET + parentShift;
172
- return jsxs("li", {
173
- children: [jsx(Title, {
173
+ return /*#__PURE__*/jsxs("li", {
174
+ children: [/*#__PURE__*/jsx(Title, {
174
175
  title: title,
175
176
  focused: showFocus,
176
177
  showFocus: showFocus,
@@ -181,9 +182,9 @@ class Item extends PureComponent {
181
182
  onFocus: this.onFocus,
182
183
  onSelect: this.onSelect,
183
184
  offset: offset
184
- }), !itemIsEmpty ? jsxs("ul", {
185
+ }), !itemIsEmpty ? /*#__PURE__*/jsxs("ul", {
185
186
  className: styles.itemContent,
186
- children: [items.map(model => this.renderItem(model, parentShift)), showMoreLessButton !== moreLessButtonStates.UNUSED ? jsx("li", {
187
+ children: [items.map(model => this.renderItem(model, parentShift)), showMoreLessButton !== moreLessButtonStates.UNUSED ? /*#__PURE__*/jsx("li", {
187
188
  className: styles.showMore,
188
189
  children: moreLessButton
189
190
  }) : null]
@@ -21,7 +21,7 @@ declare class Title extends PureComponent<TitleProps> {
21
21
  onCheckboxFocus: () => void;
22
22
  onCheckboxChange: () => void;
23
23
  toggleSelection(): void;
24
- render(): import("react/jsx-runtime").JSX.Element;
24
+ render(): import("react").JSX.Element;
25
25
  }
26
26
  declare const _default: import("react").ComponentClass<import("../global/focus-sensor-hoc").FocusSensorProps<TitleProps, HTMLDivElement, typeof Title>, any>;
27
27
  export default _default;
@@ -1,10 +1,10 @@
1
- import 'react/jsx-runtime';
2
1
  import 'react';
3
2
  import 'classnames';
4
3
  import '../global/focus-sensor-hoc.js';
5
4
  import '../checkbox/checkbox.js';
6
5
  import '../global/get-uid.js';
7
6
  export { T as default } from '../_helpers/title.js';
7
+ import 'react/jsx-runtime';
8
8
  import '../global/compose-refs.js';
9
9
  import 'memoize-one';
10
10
  import '@jetbrains/icons/checkmark-12px';
@@ -13,5 +13,6 @@ import '../icon/icon.js';
13
13
  import 'util-deprecate';
14
14
  import '../icon/icon.constants.js';
15
15
  import '../_helpers/icon-svg.js';
16
+ import 'react-compiler-runtime';
16
17
  import '../global/memoize.js';
17
18
  import '../control-help/control-help.js';
@@ -3,7 +3,7 @@ import { add } from 'date-fns/add';
3
3
  const unit = 8; // px;
4
4
  const units = {
5
5
  unit,
6
- /* eslint-disable @typescript-eslint/no-magic-numbers */
6
+ /* eslint-disable no-magic-numbers */
7
7
  cellSize: unit * 3,
8
8
  calHeight: unit * 36,
9
9
  yearHeight: unit * 4
@@ -24,5 +24,5 @@ export default class DateInput extends React.PureComponent<DateInputProps> {
24
24
  updateInput({ text, active }: UpdateInputConfig): void;
25
25
  handleChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
26
26
  handleKeyDown: (e: React.KeyboardEvent) => void;
27
- render(): import("react/jsx-runtime").JSX.Element;
27
+ render(): React.JSX.Element;
28
28
  }
@@ -1,10 +1,10 @@
1
- import { jsx } from 'react/jsx-runtime';
2
1
  import * as React from 'react';
3
2
  import classNames from 'classnames';
4
3
  import { I as Input } from '../_helpers/input.js';
5
4
  import '../global/controls-height.js';
6
5
  import { I18nContext } from '../i18n/i18n-context.js';
7
6
  import { s as styles } from '../_helpers/date-picker.js';
7
+ import { jsx } from 'react/jsx-runtime';
8
8
  import { ControlsHeight } from '../global/configuration.js';
9
9
  import '@jetbrains/icons/close-12px';
10
10
  import '../button/button.js';
@@ -14,6 +14,7 @@ import 'util-deprecate';
14
14
  import '../icon/icon.js';
15
15
  import '../icon/icon.constants.js';
16
16
  import '../_helpers/icon-svg.js';
17
+ import 'react-compiler-runtime';
17
18
  import '../global/memoize.js';
18
19
  import '../link/clickable-link.js';
19
20
  import '../_helpers/button.classes.js';
@@ -117,8 +118,8 @@ class DateInput extends React.PureComponent {
117
118
  }
118
119
  })();
119
120
  const classes = classNames(styles.filter, styles[`${name}Input`], divider && styles[`${name}InputWithDivider`], 'ring-js-shortcuts');
120
- return jsx(Input, {
121
- autoComplete: 'off',
121
+ return /*#__PURE__*/jsx(Input, {
122
+ autoComplete: "off",
122
123
  borderless: true,
123
124
  height: ControlsHeight.L,
124
125
  "data-name": name,
@@ -45,6 +45,6 @@ export default class DatePicker extends PureComponent<DatePickerProps> {
45
45
  parse: (arg: string | number | Date | null | undefined) => Date | null;
46
46
  formatTime(): string | null;
47
47
  getAnchorText: () => string;
48
- render(): import("react/jsx-runtime").JSX.Element;
48
+ render(): React.JSX.Element;
49
49
  }
50
50
  export type DatePickerAttrs = React.JSX.LibraryManagedAttributes<typeof DatePicker, DatePickerProps>;