@jetbrains/ring-ui-built 6.0.32 → 6.0.33

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 (224) hide show
  1. package/components/_helpers/_rollupPluginBabelHelpers.js +567 -1
  2. package/components/_helpers/anchor.js +6 -7
  3. package/components/_helpers/button__classes.js +14 -16
  4. package/components/_helpers/caption.js +20 -14
  5. package/components/_helpers/card.js +105 -95
  6. package/components/_helpers/dialog__body-scroll-preventer.js +19 -11
  7. package/components/_helpers/icon__svg.js +25 -22
  8. package/components/_helpers/input.js +177 -146
  9. package/components/_helpers/query-assist__suggestions.js +90 -74
  10. package/components/_helpers/select__filter.js +69 -48
  11. package/components/_helpers/services-link.js +37 -29
  12. package/components/_helpers/sidebar.js +107 -99
  13. package/components/_helpers/tab-link.js +7 -7
  14. package/components/_helpers/theme.js +40 -31
  15. package/components/_helpers/title.js +72 -57
  16. package/components/alert/alert.js +202 -150
  17. package/components/alert/container.js +41 -32
  18. package/components/alert-service/alert-service.js +170 -105
  19. package/components/analytics/analytics.js +22 -12
  20. package/components/analytics/analytics__custom-plugin.js +75 -54
  21. package/components/auth/auth.js +36 -4
  22. package/components/auth/auth__core.js +1471 -746
  23. package/components/auth/background-flow.js +127 -87
  24. package/components/auth/down-notification.js +73 -30
  25. package/components/auth/iframe-flow.js +133 -75
  26. package/components/auth/request-builder.js +82 -46
  27. package/components/auth/response-parser.js +116 -86
  28. package/components/auth/storage.js +334 -171
  29. package/components/auth/token-validator.js +242 -137
  30. package/components/auth/window-flow.js +134 -92
  31. package/components/auth-dialog/auth-dialog.js +172 -114
  32. package/components/auth-dialog-service/auth-dialog-service.js +31 -8
  33. package/components/avatar/avatar-example-datauri.js +1 -23
  34. package/components/avatar/avatar.js +152 -119
  35. package/components/avatar/fallback-avatar.js +38 -22
  36. package/components/badge/badge.js +45 -35
  37. package/components/button/button.js +107 -86
  38. package/components/button-group/button-group.js +33 -19
  39. package/components/button-set/button-set.js +32 -20
  40. package/components/button-toolbar/button-toolbar.js +31 -19
  41. package/components/caret/caret.js +220 -186
  42. package/components/checkbox/checkbox.js +101 -76
  43. package/components/clipboard/clipboard-fallback.js +10 -10
  44. package/components/clipboard/clipboard.js +132 -35
  45. package/components/code/code.js +166 -92
  46. package/components/collapse/collapse-content.js +64 -42
  47. package/components/collapse/collapse-context.js +2 -2
  48. package/components/collapse/collapse-control.js +14 -12
  49. package/components/collapse/collapse.js +17 -11
  50. package/components/collapse/consts.js +4 -4
  51. package/components/collapse/utils.js +3 -1
  52. package/components/confirm/confirm.js +104 -66
  53. package/components/confirm-service/confirm-service.js +59 -37
  54. package/components/content-layout/content-layout.js +64 -43
  55. package/components/content-layout/sidebar.js +1 -0
  56. package/components/contenteditable/contenteditable.js +59 -50
  57. package/components/control-label/control-label.js +9 -9
  58. package/components/data-list/data-list.js +182 -129
  59. package/components/data-list/data-list.mock.js +6 -2
  60. package/components/data-list/item.js +170 -143
  61. package/components/data-list/selection.js +136 -76
  62. package/components/data-list/title.js +12 -1
  63. package/components/date-picker/consts.js +26 -19
  64. package/components/date-picker/date-input.js +144 -113
  65. package/components/date-picker/date-picker.js +282 -227
  66. package/components/date-picker/date-popup.js +395 -350
  67. package/components/date-picker/day.js +116 -87
  68. package/components/date-picker/month-names.js +66 -43
  69. package/components/date-picker/month-slider.js +76 -51
  70. package/components/date-picker/month.js +25 -16
  71. package/components/date-picker/months.js +50 -43
  72. package/components/date-picker/weekdays.js +22 -12
  73. package/components/date-picker/years.js +110 -83
  74. package/components/dialog/dialog.js +190 -142
  75. package/components/dialog/dialog__body-scroll-preventer.js +4 -0
  76. package/components/dropdown/anchor.js +9 -0
  77. package/components/dropdown/dropdown.js +213 -182
  78. package/components/dropdown-menu/dropdown-menu.js +97 -71
  79. package/components/editable-heading/editable-heading.js +127 -75
  80. package/components/error-bubble/error-bubble.js +60 -31
  81. package/components/error-message/error-message.js +59 -39
  82. package/components/footer/footer.js +30 -27
  83. package/components/global/compose.js +10 -1
  84. package/components/global/composeRefs.js +12 -7
  85. package/components/global/controls-height.js +2 -2
  86. package/components/global/create-stateful-context.js +15 -15
  87. package/components/global/data-tests.js +14 -6
  88. package/components/global/dom.js +86 -47
  89. package/components/global/focus-sensor-hoc.js +132 -122
  90. package/components/global/fuzzy-highlight.js +36 -22
  91. package/components/global/get-event-key.js +8 -8
  92. package/components/global/get-uid.js +8 -4
  93. package/components/global/inject-styles.js +15 -10
  94. package/components/global/listeners.js +51 -27
  95. package/components/global/memoize.js +12 -6
  96. package/components/global/normalize-indent.js +50 -19
  97. package/components/global/promise-with-timeout.js +8 -6
  98. package/components/global/prop-types.js +5 -3
  99. package/components/global/react-dom-renderer.js +44 -28
  100. package/components/global/react-render-adapter.js +1 -1
  101. package/components/global/rerender-hoc.js +30 -12
  102. package/components/global/schedule-raf.js +6 -5
  103. package/components/global/sniffer.js +1 -1
  104. package/components/global/theme.js +22 -0
  105. package/components/global/trivial-template-tag.js +10 -3
  106. package/components/global/typescript-utils.js +6 -2
  107. package/components/global/url.js +26 -20
  108. package/components/global/use-event-callback.js +4 -6
  109. package/components/grid/col.js +52 -35
  110. package/components/grid/grid.js +31 -17
  111. package/components/grid/row.js +47 -35
  112. package/components/group/group.js +25 -17
  113. package/components/header/header.js +78 -33
  114. package/components/header/logo.js +36 -20
  115. package/components/header/profile.js +199 -166
  116. package/components/header/services-link.js +4 -0
  117. package/components/header/services.js +116 -73
  118. package/components/header/smart-profile.js +203 -111
  119. package/components/header/smart-services.js +113 -62
  120. package/components/header/tray-icon.js +37 -21
  121. package/components/header/tray.js +32 -21
  122. package/components/heading/heading.js +25 -24
  123. package/components/http/http.js +353 -203
  124. package/components/http/http.mock.js +101 -49
  125. package/components/hub-source/hub-source.js +190 -83
  126. package/components/hub-source/hub-source__user.js +44 -11
  127. package/components/hub-source/hub-source__users-groups.js +65 -37
  128. package/components/i18n/i18n-context.js +10 -7
  129. package/components/i18n/i18n.js +10 -7
  130. package/components/icon/icon.js +93 -76
  131. package/components/icon/icon__svg.js +8 -0
  132. package/components/icon/index.js +8 -0
  133. package/components/input/input.js +13 -0
  134. package/components/island/adaptive-island-hoc.js +43 -30
  135. package/components/island/content.js +132 -115
  136. package/components/island/header.js +70 -57
  137. package/components/island/island.js +40 -28
  138. package/components/island-legacy/content-legacy.js +25 -17
  139. package/components/island-legacy/header-legacy.js +27 -19
  140. package/components/island-legacy/island-legacy.js +25 -17
  141. package/components/link/clickableLink.js +59 -44
  142. package/components/link/link.js +68 -57
  143. package/components/list/consts.js +2 -2
  144. package/components/list/list.js +698 -611
  145. package/components/list/list__custom.js +62 -44
  146. package/components/list/list__hint.js +19 -10
  147. package/components/list/list__item.js +174 -133
  148. package/components/list/list__link.js +50 -37
  149. package/components/list/list__separator.js +24 -14
  150. package/components/list/list__title.js +32 -22
  151. package/components/list/list__users-groups-source.js +126 -54
  152. package/components/loader/loader.js +74 -43
  153. package/components/loader/loader__core.js +263 -198
  154. package/components/loader-inline/loader-inline.js +35 -23
  155. package/components/loader-screen/loader-screen.js +46 -25
  156. package/components/login-dialog/login-dialog.js +158 -111
  157. package/components/login-dialog/service.js +34 -8
  158. package/components/markdown/markdown.js +23 -15
  159. package/components/message/message.js +203 -161
  160. package/components/old-browsers-message/old-browsers-message.js +18 -11
  161. package/components/old-browsers-message/old-browsers-message__stop.js +7 -0
  162. package/components/old-browsers-message/white-list.js +16 -8
  163. package/components/pager/pager.js +271 -212
  164. package/components/panel/panel.js +25 -17
  165. package/components/permissions/permissions.js +172 -127
  166. package/components/permissions/permissions__cache.js +224 -194
  167. package/components/popup/popup.consts.js +1 -1
  168. package/components/popup/popup.js +343 -284
  169. package/components/popup/popup.target.js +8 -9
  170. package/components/popup/position.js +106 -96
  171. package/components/popup-menu/popup-menu.js +81 -44
  172. package/components/progress-bar/progress-bar.js +104 -87
  173. package/components/query-assist/query-assist.js +916 -838
  174. package/components/query-assist/query-assist__suggestions.js +30 -1
  175. package/components/radio/radio.js +34 -19
  176. package/components/radio/radio__item.js +69 -52
  177. package/components/select/select.js +957 -852
  178. package/components/select/select__filter.js +30 -0
  179. package/components/select/select__popup.js +487 -373
  180. package/components/shortcuts/core.js +217 -166
  181. package/components/shortcuts/shortcut-title.js +11 -6
  182. package/components/shortcuts/shortcuts-hoc.js +45 -19
  183. package/components/shortcuts/shortcuts.js +75 -50
  184. package/components/slider/slider.js +122 -99
  185. package/components/slider/slider.utils.js +24 -14
  186. package/components/storage/storage.js +33 -4
  187. package/components/storage/storage__fallback.js +224 -149
  188. package/components/storage/storage__local.js +153 -90
  189. package/components/tab-trap/tab-trap.js +153 -122
  190. package/components/table/cell.js +26 -14
  191. package/components/table/disable-hover-hoc.js +51 -33
  192. package/components/table/header-cell.js +89 -64
  193. package/components/table/header.js +132 -104
  194. package/components/table/multitable.js +125 -107
  195. package/components/table/row-with-focus-sensor.js +69 -25
  196. package/components/table/row.js +216 -175
  197. package/components/table/selection-adapter.js +3 -1
  198. package/components/table/selection-shortcuts-hoc.js +181 -180
  199. package/components/table/selection.js +226 -156
  200. package/components/table/smart-table.js +88 -50
  201. package/components/table/table.js +358 -289
  202. package/components/tabs/collapsible-more.js +79 -46
  203. package/components/tabs/collapsible-tab.js +38 -31
  204. package/components/tabs/collapsible-tabs.js +153 -88
  205. package/components/tabs/custom-item.js +2 -4
  206. package/components/tabs/dumb-tabs.js +117 -74
  207. package/components/tabs/smart-tabs.js +69 -29
  208. package/components/tabs/tab-link.js +5 -1
  209. package/components/tabs/tab.js +31 -19
  210. package/components/tabs/tabs.js +31 -0
  211. package/components/tag/tag.js +173 -133
  212. package/components/tags-input/tags-input.js +427 -329
  213. package/components/tags-list/tags-list.js +78 -57
  214. package/components/text/text.js +39 -28
  215. package/components/toggle/toggle.js +70 -56
  216. package/components/tooltip/tooltip.js +190 -146
  217. package/components/user-agreement/service.js +371 -228
  218. package/components/user-agreement/toolbox.eula.js +1 -160
  219. package/components/user-agreement/user-agreement.js +120 -85
  220. package/components/user-card/card.js +29 -0
  221. package/components/user-card/smart-user-card-tooltip.js +111 -51
  222. package/components/user-card/tooltip.js +84 -47
  223. package/components/user-card/user-card.js +29 -0
  224. package/package.json +1 -1
@@ -1,162 +1,3 @@
1
- var toolbox_eula = `IMPORTANT! READ CAREFULLY:
2
- THIS IS A LEGAL AGREEMENT. BY CLICKING ON THE "I AGREE" (OR SIMILAR) BUTTON THAT IS PRESENTED TO CUSTOMER AT THE TIME OF CUSTOMER'S PURCHASE, OR BY DOWNLOADING, INSTALLING, COPYING, SAVING ON CUSTOMER'S COMPUTER, OR OTHERWISE USING JETBRAINS SOFTWARE, SUPPORT OR PRODUCTS CUSTOMER BECOMES A PARTY TO THIS AGREEMENT AND CUSTOMER CONSENTS TO BE BOUND BY ALL THE TERMS AND CONDITIONS SET FORTH BELOW.
3
-
4
- Note: In case the terms of this Agreement are in conflict with the terms of any agreement individually negotiated and agreed between JetBrains and Customer, the terms of the latter shall prevail.
5
-
6
- 1. PARTIES
7
- 1.1. "JetBrains" or "We" means JetBrains s.r.o., having its principal place of business at Na hrebenech II 1718/10, Prague, 14000, Czech Republic, registered in the Commercial Register maintained by the Municipal Court of Prague, Section C, File 86211, ID. No.: 265 02 275.
8
-
9
- 1.2. "Customer" or "You" means the sole proprietor or legal entity specified in the Subscription Confirmation. For legal entities, "Customer" includes any entity which controls, is controlled by, or is under common control with Customer. For the purposes of this definition, "control" means (i) the power, directly or indirectly, to direct or manage such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity.
10
-
11
- 2. DEFINITIONS
12
- 2.1. "Agreement" means this Toolbox Subscription Agreement.
13
-
14
- 2.2. "Product" means any generally available JetBrains software product identified by JetBrains as an individual developer tool. For the avoidance of doubt, the Product is not produced to the specifications of Customer nor customized through modification or personalization, and is intended for mass distribution.
15
-
16
- 2.3. "Client" means a computer device used by a User for running the Product.
17
-
18
- 2.4. "Product Version" means a release, update, or upgrade of a particular Product that is not identified by JetBrains as being made for the purpose of fixing software bugs.
19
-
20
- 2.5. "Bug Fix Update" for a particular Product Version means a software update or release that is specifically identified by JetBrains as a bug fix for that Product Version.
21
-
22
- 2.6. "Fallback Date" means the date that was 12 months prior to the date of expiration of the Toolbox Subscription.
23
-
24
- 2.7. "Fallback Version" means the most recent Product Version that JetBrains made available for public purchase prior to the Fallback Date, along with any Bug Fix Updates for that Product Version. For the purpose of clarity, Fallback Version does not include any Product updates or upgrades other than Bug Fix Updates that Customer may have used in the period between the Fallback Date and the date of expiration of the Toolbox Subscription.
25
-
26
- 2.8. "JetBrains Account" or "JBA" means an account at https://account.jetbrains.com created by Customer or a single User, having a unique name and password, and enabling User management and Toolbox Subscription administration and/or access to Products in accordance with a Toolbox Subscription.
27
-
28
- 2.9. "JetBrains Toolbox" means the set of Products which are subject to this Agreement. For the avoidance of doubt, JetBrains Toolbox does not include JetBrains team productivity software and services such as YouTrack, TeamCity, UpSource or Hub or any other software, services or products which do not fall within the definition of Section 2.2 and which are subject to different terms and conditions.
29
-
30
- 2.10. "Subscription Confirmation" means an email confirming Customer's rights to access and use Products, including Toolbox Subscription plans, and the number of authorized Users.
31
-
32
- 2.11. "Toolbox Subscription" specifies the subscription term, Products provided to Customer, subscription fees and payment schedules.
33
-
34
- 2.12. "User" means any employee, independent contractor or other personnel obtaining access to the Product(s) from Customer.
35
-
36
- 3. GRANT OF RIGHTS
37
- 3.1. The Product is provided on a per-seat basis. If Customer complies with the terms of this Agreement, Customer has the rights stipulated hereunder for each Toolbox Subscription that Customer acquires. Customer's rights acquired in relation to the Product are limited to those necessary to enable Customer and its Users to effectively operate the Product(s). All other rights remain reserved to JetBrains.
38
-
39
- 3.2. Unless the Toolbox Subscription has expired or this Agreement is terminated in accordance with Section 12, and subject to the terms and conditions specified herein, JetBrains grants Customer a non-exclusive and non-transferable right to use each Product covered by the Toolbox Subscription as stipulated below:
40
-
41
- (A) Customer may:
42
-
43
- (i) Install and use any version of the Product covered by the Toolbox Subscription on any number of Clients and on any operating system supported by the Product; and
44
-
45
- (ii) Make one backup copy of the Product solely for archival/security backup purposes.
46
-
47
- (B) Customer may not:
48
-
49
- (i) Allow the same Toolbox Subscription to be used concurrently by more than one (1) User;
50
-
51
- (ii) Rent, lease, reproduce, modify, adapt, create derivative works of, distribute, sell, or transfer the Product;
52
-
53
- (iii) Provide access to the Product, Customer's JetBrains Account or the right to use the Product to a third party;
54
-
55
- (iv) Reverse engineer, decompile, disassemble, modify, or translate, or make any attempt to discover the source code of, the Product; or
56
-
57
- (v) Remove or obscure any proprietary or other notices contained in the Product.
58
-
59
- 3.3. Following the expiration of this Agreement, the rights stipulated in Section 3.2(A) shall continue on a perpetual, royalty-free, non-exclusive, and non-transferable basis for the continued use of a Fallback Version of each Product covered by the Toolbox Subscription. The limitations set forth in Sections 3.1 and 3.2(B) of this Agreement apply to the usage of the Fallback Version, as shall Section 12.5. The rights granted in this Section 3.3 are expressly contingent upon Customer not being in breach of this Agreement, including having paid in full the applicable Toolbox Subscription fees for the preceding 12 months or longer without interruption.
60
-
61
- 3.4. Customer acknowledges that no ownership right is conveyed to Customer under this Agreement, irrespective of the use of terms such as "purchase" or "sale". JetBrains has and retains all rights, title and interest, including all intellectual property rights, in and to the Products and any and all related or underlying technology, and any modifications or derivative works thereof, including without limitation as they may incorporate Feedback (as defined below).
62
-
63
- 4. PURCHASING THROUGH RESELLERS
64
- This Agreement applies whether Customer purchases a Toolbox Subscription directly from JetBrains or through resellers. If Customer purchases through a reseller, the Toolbox Subscription details shall be as stated in the Subscription Confirmation issued by the reseller to Customer, and the reseller is responsible for the accuracy of any such Subscription Confirmation. Resellers are not authorized to make any promises or commitments on JetBrains' behalf, and Customer understands and agrees that JetBrains is not bound by any obligations to Customer other than as specified in this Agreement.
65
-
66
- 5. ACCESS TO PRODUCTS
67
- 5.1. All deliveries under this Agreement will be electronic. Customer and its Users must have an Internet connection in order to access JBA and receive any deliveries. For the avoidance of doubt, Customer is responsible for downloading and installing the Products, which are made available for download on JetBrains' website at www.jetbrains.com.
68
-
69
- 5.2. Customer and its Users may use the JBA in accordance with its documentation. Customer and its Users are solely responsible for the accuracy of any information provided via and any action taken through the JBA.
70
-
71
- 5.3. Customer may enable Users to access Products in one of the following ways:
72
-
73
- (A) By sending an invitation from Customer's JBA to a User JBA. Customer acknowledges and agrees that the Product will periodically connect from a User Client to JetBrains' servers via the Internet to confirm that User's right to use the Product;
74
-
75
- (B) By generating an offline activation code in Customer's JBA and providing it to the User for offline Product activation. It is Customer's responsibility to generate a new activation code and apply it to the Product registration screen every time changes are made to the right of use assignment or Toolbox Subscription plan, as well as whenever a subscription is renewed;
76
-
77
- (C) Via a server application located on Customer's premises that enables access to the Product from Clients that are within Customer's local area network ("Product Server"). The Product Server option may be provided to Customer at the sole discretion of JetBrains.
78
-
79
- 6. FEES
80
- Customer shall pay its Toolbox Subscription fees in accordance with JetBrains Terms of Purchase or the reseller's terms of purchase, whichever are applicable. The Toolbox Subscription fees shall be paid in full, and any levies, duties and/or taxes imposed by Customer's jurisdiction (including, but not limited to, value added tax, sales tax and withholding tax), shall be borne solely by Customer. Customer may not deduct any amounts from fees payable to JetBrains or the reseller, unless otherwise specified in the applicable terms of purchase.
81
-
82
- 7. FEEDBACK
83
- Customer has no obligation to provide Us with ideas, suggestions, or proposals ("Feedback"). However, if Customer or Users submit Feedback to us, then Customer grants us a non-exclusive, worldwide, royalty-free license that is sub-licensable and transferable, to make, use, sell, have made, offer to sell, import, reproduce, publicly display, distribute, modify, or publicly perform the Feedback in any manner without any obligation, royalty or restriction based on intellectual property rights or otherwise.
84
-
85
- 8. THIRD-PARTY SOFTWARE
86
- The Products include code and libraries licensed to Us by third parties, including open source software ("Third-Party Software"). The list of Third-Party Software included in each Product is available in the Product documentation. All Third-Party Software is provided to Customer under the respective terms stipulated in the Product documentation.
87
-
88
- 9. TOOLBOX SUBSCRIPTION TRIAL
89
- 9.1. Subject to the terms of this Agreement, Customer is granted a one-time right to install and use the Product for evaluation purposes without charge for a period of thirty (30) days from the date of the Product installation ("Evaluation Period"). Customer's use of the Product during the Evaluation Period shall be limited to the internal evaluation of the Product for the sole purpose of determining whether the Product meets Customer's requirements and whether Customer desires to continue using the Product.
90
-
91
- 9.2. Customer may withdraw from using the Product at Customer's sole discretion anytime before expiration of the Evaluation Period. Upon expiration of the Evaluation Period, Customer's right to continue to use the Product will terminate, unless Customer purchases a Toolbox Subscription to the Product. The Product contains a feature that will automatically disable the Product upon the expiration of the Evaluation Period.
92
-
93
- 10. LIMITED WARRANTY
94
- ALL PRODUCTS ARE PROVIDED TO CUSTOMER ON AN "AS IS" AND "AS AVAILABLE" BASIS WITHOUT WARRANTIES. USE OF THE PRODUCTS IS AT YOUR OWN RISK. JETBRAINS MAKES NO WARRANTY AS TO THEIR USE OR PERFORMANCE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, JETBRAINS, AND ITS SUPPLIERS (WHICH SHALL INCLUDE THE PROVIDERS OF THE THIRD PARTY SOFTWARE) AND RESELLERS, DISCLAIM ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT, WITH REGARD TO THE PRODUCTS, AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES. THIS LIMITED WARRANTY GIVES CUSTOMER SPECIFIC LEGAL RIGHTS. CUSTOMER MAY HAVE OTHER RIGHTS, WHICH VARY FROM STATE/JURISDICTION TO STATE/JURISDICTION. JETBRAINS (AND ITS AFFILIATES, AGENTS, DIRECTORS AND EMPLOYEES) DOES NOT WARRANT THAT THE PRODUCTS ARE ACCURATE, RELIABLE OR CORRECT; THAT THE PRODUCTS WILL MEET YOUR REQUIREMENTS; THAT THE PRODUCTS WILL BE AVAILABLE AT ANY PARTICULAR TIME OR LOCATION, UNINTERRUPTED OR SECURE; THAT ANY DEFECTS OR ERRORS WILL BE CORRECTED; OR THAT THE PRODUCTS ARE FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS. ANY CONTENT OR DATA DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE PRODUCTS ARE DOWNLOADED AT YOUR OWN RISK AND YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR LOSS OF DATA THAT RESULTS FROM SUCH DOWNLOAD.
95
-
96
- 11. DISCLAIMER OF DAMAGES
97
- 11.1. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL JETBRAINS (OR ITS AFFILIATES, AGENTS, DIRECTORS, OR EMPLOYEES), OR JETBRAINS' LICENSORS, SUPPLIERS OR RESELLERS BE LIABLE TO CUSTOMER OR ANYONE ELSE FOR: (A) ANY LOSS OF USE, DATA, GOODWILL, OR PROFITS, WHETHER OR NOT FORESEEABLE; (B) ANY LOSS OR DAMAGES IN CONNECTION WITH TERMINATION OR SUSPENSION OF CUSTOMER'S ACCESS TO OUR PRODUCTS IN ACCORDANCE WITH THIS AGREEMENT, OR (C) ANY SPECIAL, INCIDENTAL, INDIRECT, CONSEQUENTIAL, EXEMPLARY OR PUNITIVE DAMAGES WHATSOEVER (EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF THESE DAMAGES), INCLUDING THOSE (X) RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT FORESEEABLE, (Y) BASED ON ANY THEORY OF LIABILITY, INCLUDING BREACH OF CONTRACT OR WARRANTY, STRICT LIABILITY, NEGLIGENCE OR OTHER TORTIOUS ACTION, OR (Z) ARISING FROM ANY OTHER CLAIM ARISING OUT OF OR IN CONNECTION WITH CUSTOMER'S USE OF OR ACCESS TO THE PRODUCTS OR SUPPORT. THE FOREGOING LIMITATION OF LIABILITY SHALL APPLY TO THE FULLEST EXTENT PERMITTED BY LAW IN THE APPLICABLE JURISDICTION.
98
-
99
- 11.2. OUR TOTAL LIABILITY IN ANY MATTER ARISING OUT OF OR IN RELATION TO THIS AGREEMENT IS LIMITED TO ONE HUNDRED (100) US DOLLARS OR THE AGGREGATE AMOUNT PAID OR PAYABLE BY THE CUSTOMER FOR PRODUCTS DURING THE THREE-MONTH PERIOD PRECEDING THE EVENT GIVING RISE TO THE LIABILITY, WHICHEVER IS GREATER. THIS LIMITATION WILL APPLY EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF LIABILITY EXCEEDING SUCH AMOUNT AND NOTWITHSTANDING ANY FAILURE OF THE ESSENTIAL PURPOSE OF ANY LIMITED REMEDY.
100
-
101
- 12. TERM AND TERMINATION
102
- 12.1. The term of this Agreement will commence upon acceptance of this Agreement by Customer as set forth in the preamble above, and will continue for each Product through the end of the applicable subscription period specified in the respective Subscription Confirmation. This Agreement will automatically renew with respect to each Product for a successive Toolbox Subscription term, unless terminated as set forth herein.
103
-
104
- 12.2. Customer may terminate this Agreement at any time by cancelling its Product subscription via Customer's JetBrains Account. If such termination occurs during a then-current subscription period, this Agreement will continue to be effective until the end of that subscription period. Such termination does not relieve Customer of the obligation to pay any outstanding subscription fees owed to JetBrains, and no credits or refunds will be issued to Customer for prepaid subscription fees (except as specified in the JetBrains Terms of Purchase, if applicable).
105
-
106
- 12.3. JetBrains may terminate this agreement if:
107
-
108
- (A) Customer has materially breached this Agreement and fails to cure such breach within thirty (30) days of written notice thereof;
109
-
110
- (B) Customer fails to make the timely payment of subscription fees in accordance with Section 6 of this Agreement;
111
-
112
- (C) JetBrains is required to do so by law (for example, where the provision of the JetBrains Toolbox to Customer is, or becomes, unlawful); or
113
-
114
- (D) JetBrains elects to discontinue providing the JetBrains Toolbox, in whole or in part.
115
-
116
- 12.4. JetBrains will make reasonable efforts to notify Customer via email as follows:
117
-
118
- (A) Thirty (30) days prior to termination of the Agreement in the events specified in Sections 12.3(C) and 12.3(D) above, and in such events Customer will be entitled to a refund of the unused portion of prepaid subscription fees, if applicable;
119
-
120
- (B) Three (3) days prior to termination of the Agreement in the event specified in Section 12.3(B), and in such event Customer will not be entitled to any refund of the unused portion of prepaid subscription fees.
121
-
122
- 12.5. Survival. Upon the expiration or termination of this Agreement by Customer under Section 12.2, and if Customer elects to use the Fallback Version of the Product subject to Section 3.3 of this Agreement, Sections 3.3, 7, 8, 10 and 11 of this Agreement will also survive with respect to said Fallback Version.
123
-
124
- 13. TEMPORARY SUSPENSION FOR NON-PAYMENT
125
- 13.1. JetBrains reserves the right to suspend Customer's access to JetBrains' Products if Customer fails to pay subscription fees on time in accordance with Section 6 of this Agreement.
126
-
127
- 13.2. If JetBrains suspends Customer's access to JetBrains' Products for non-payment according to Section 13.1., Customer must pay all past due amounts in order to restore its access to JetBrains' Products.
128
-
129
- 13.3. Customer hereby agrees that JetBrains is entitled to charge Customer for the time period during which Customer has access to JetBrains Products until Customer or JetBrains terminates or suspends Customer's subscription in accordance with this Agreement.
130
-
131
- 14. EXPORT REGULATIONS
132
- Customer shall comply with all applicable laws and regulations with regards to economic sanctions, export controls, import regulations, and trade embargoes (all herein referred to as "Sanctions"), including those of the European Union and United States (specifically the Export Administration Regulations (EAR)). Customer declares that it is not a person targeted by Sanctions nor is it otherwise owned or controlled by or acting on behalf of any person targeted by Sanctions. Further, Customer warrants that it will not download or otherwise export or re-export the JetBrains Toolbox or any related technical data directly or indirectly to any person targeted by Sanctions or download or otherwise use the JetBrains Toolbox for any end-use prohibited or restricted by Sanctions.
133
-
134
- 15. MARKETING
135
- Customer agrees that JetBrains may identify it as a customer of JetBrains and may refer to it by name, trade name and trademark, if applicable. JetBrains may also briefly describe Customer's business in JetBrains marketing materials, on the JetBrains website and/or in public or legal documents. Customer hereby grants JetBrains a worldwide, non-exclusive and royalty-free license to use Customer's name and any of Customer's trade names and trademarks solely pursuant to this marketing section.
136
-
137
- 16. GENERAL
138
- 16.1. Entire Agreement. This Agreement, including the Third-Party Software license terms, constitutes the entire agreement between the parties concerning its subject matter and supersedes any prior agreements between Customer and JetBrains regarding Customer's use of any Products in the JetBrains Toolbox. No purchase order, other ordering document or any handwritten or typewritten text which purports to modify or supplement the printed text of this Agreement or any schedule will add to or vary the terms of this Agreement unless signed by both Customer and JetBrains.
139
-
140
- 16.2. Reservation of Rights. JetBrains reserves the right at any time to cease the support of the JetBrains Toolbox and to alter prices, features, specifications, capabilities, functions, terms of use, release dates, general availability or other characteristics of the JetBrains Toolbox.
141
-
142
- 16.3. Changes to this Agreement. We may update or modify this Agreement from time to time, including any referenced policies and other documents. If a revision meaningfully reduces Customer's rights, we will use reasonable efforts to notify Customer (by, for example, sending an email to the billing or technical contact provided by Customer to us, posting on our blog, through Customer's JetBrains Account, or via the Product itself). If we modify this Agreement, the modified version of the Agreement will be effective from the start of the next Toolbox Subscription term. In this case, if Customer objects to the updated Agreement terms, as Customer's exclusive remedy, Customer may cancel the Toolbox Subscription. Customer may be required to click through the updated Agreement to show its acceptance. For the avoidance of doubt, each Subscription Confirmation is subject to the version of the Agreement in effect on the Subscription Confirmation date.
143
-
144
- 16.4. Opportunity to Review. Customer hereby declares that Customer has had sufficient opportunity to review this Agreement, understand the content of all of its clauses, negotiate its terms, and seek independent professional legal advice in that respect before entering into it. Consequently, any statutory "form contract" ("adhesion contract") regulations shall not be applicable to this Agreement.
145
-
146
- 16.5. Severability. If a particular term of this Agreement is not enforceable, the unenforceability of that term will not affect any other terms of this Agreement.
147
-
148
- 16.6. Headings. Headings and titles are for convenience only and do not affect the interpretation of this Agreement.
149
-
150
- 16.7. No Waiver. Our failure to enforce or exercise any part of this Agreement is not a waiver of that section.
151
-
152
- 16.8. Notice. JetBrains may deliver any notice to Customer via electronic mail to an email address provided by Customer, its JetBrains Account, registered mail, personal delivery or renowned express courier (such as DHL, FedEx or UPS). Any such notice will be deemed to be effective (i) on the day the notice is sent to Customer via email, (ii) upon being uploaded to Customer's JetBrains Account (irrespective of when Customer actually receives it), (iii) upon personal delivery, (iv) one (1) day after deposit with an express courier, (v) or five (5) days after deposit in the mail, whichever occurs first.
153
-
154
- 16.9. Governing Law. This Agreement will be governed by the laws of the Czech Republic, without reference to conflict of laws principles. Customer agrees that any litigation relating to this Agreement may only be brought in, and will be subject to the jurisdiction of, any competent court of the Czech Republic. The parties agree that the United Nations Convention on Contracts for the International Sale of Goods does not apply to this Agreement.
155
-
156
- For exceptions or modifications to this Agreement, please contact JetBrains at:
157
- Address: Na hrebenech II 1718/10, Prague, 14000, Czech Republic
158
- Fax: +420 241 722 540
159
- E-mail: sales@jetbrains.com
160
- `;
1
+ var toolbox_eula = "IMPORTANT! READ CAREFULLY:\nTHIS IS A LEGAL AGREEMENT. BY CLICKING ON THE \"I AGREE\" (OR SIMILAR) BUTTON THAT IS PRESENTED TO CUSTOMER AT THE TIME OF CUSTOMER'S PURCHASE, OR BY DOWNLOADING, INSTALLING, COPYING, SAVING ON CUSTOMER'S COMPUTER, OR OTHERWISE USING JETBRAINS SOFTWARE, SUPPORT OR PRODUCTS CUSTOMER BECOMES A PARTY TO THIS AGREEMENT AND CUSTOMER CONSENTS TO BE BOUND BY ALL THE TERMS AND CONDITIONS SET FORTH BELOW.\n\nNote: In case the terms of this Agreement are in conflict with the terms of any agreement individually negotiated and agreed between JetBrains and Customer, the terms of the latter shall prevail.\n\n1. PARTIES\n1.1. \"JetBrains\" or \"We\" means JetBrains s.r.o., having its principal place of business at Na hrebenech II 1718/10, Prague, 14000, Czech Republic, registered in the Commercial Register maintained by the Municipal Court of Prague, Section C, File 86211, ID. No.: 265 02 275.\n\n1.2. \"Customer\" or \"You\" means the sole proprietor or legal entity specified in the Subscription Confirmation. For legal entities, \"Customer\" includes any entity which controls, is controlled by, or is under common control with Customer. For the purposes of this definition, \"control\" means (i) the power, directly or indirectly, to direct or manage such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity.\n\n2. DEFINITIONS\n2.1. \"Agreement\" means this Toolbox Subscription Agreement.\n\n2.2. \"Product\" means any generally available JetBrains software product identified by JetBrains as an individual developer tool. For the avoidance of doubt, the Product is not produced to the specifications of Customer nor customized through modification or personalization, and is intended for mass distribution.\n\n2.3. \"Client\" means a computer device used by a User for running the Product.\n\n2.4. \"Product Version\" means a release, update, or upgrade of a particular Product that is not identified by JetBrains as being made for the purpose of fixing software bugs.\n\n2.5. \"Bug Fix Update\" for a particular Product Version means a software update or release that is specifically identified by JetBrains as a bug fix for that Product Version.\n\n2.6. \"Fallback Date\" means the date that was 12 months prior to the date of expiration of the Toolbox Subscription.\n\n2.7. \"Fallback Version\" means the most recent Product Version that JetBrains made available for public purchase prior to the Fallback Date, along with any Bug Fix Updates for that Product Version. For the purpose of clarity, Fallback Version does not include any Product updates or upgrades other than Bug Fix Updates that Customer may have used in the period between the Fallback Date and the date of expiration of the Toolbox Subscription.\n\n2.8. \"JetBrains Account\" or \"JBA\" means an account at https://account.jetbrains.com created by Customer or a single User, having a unique name and password, and enabling User management and Toolbox Subscription administration and/or access to Products in accordance with a Toolbox Subscription.\n\n2.9. \"JetBrains Toolbox\" means the set of Products which are subject to this Agreement. For the avoidance of doubt, JetBrains Toolbox does not include JetBrains team productivity software and services such as YouTrack, TeamCity, UpSource or Hub or any other software, services or products which do not fall within the definition of Section 2.2 and which are subject to different terms and conditions.\n\n2.10. \"Subscription Confirmation\" means an email confirming Customer's rights to access and use Products, including Toolbox Subscription plans, and the number of authorized Users.\n\n2.11. \"Toolbox Subscription\" specifies the subscription term, Products provided to Customer, subscription fees and payment schedules.\n\n2.12. \"User\" means any employee, independent contractor or other personnel obtaining access to the Product(s) from Customer.\n\n3. GRANT OF RIGHTS\n3.1. The Product is provided on a per-seat basis. If Customer complies with the terms of this Agreement, Customer has the rights stipulated hereunder for each Toolbox Subscription that Customer acquires. Customer's rights acquired in relation to the Product are limited to those necessary to enable Customer and its Users to effectively operate the Product(s). All other rights remain reserved to JetBrains.\n\n3.2. Unless the Toolbox Subscription has expired or this Agreement is terminated in accordance with Section 12, and subject to the terms and conditions specified herein, JetBrains grants Customer a non-exclusive and non-transferable right to use each Product covered by the Toolbox Subscription as stipulated below:\n\n(A) Customer may:\n\n(i) Install and use any version of the Product covered by the Toolbox Subscription on any number of Clients and on any operating system supported by the Product; and\n\n(ii) Make one backup copy of the Product solely for archival/security backup purposes.\n\n(B) Customer may not:\n\n(i) Allow the same Toolbox Subscription to be used concurrently by more than one (1) User;\n\n(ii) Rent, lease, reproduce, modify, adapt, create derivative works of, distribute, sell, or transfer the Product;\n\n(iii) Provide access to the Product, Customer's JetBrains Account or the right to use the Product to a third party;\n\n(iv) Reverse engineer, decompile, disassemble, modify, or translate, or make any attempt to discover the source code of, the Product; or\n\n(v) Remove or obscure any proprietary or other notices contained in the Product.\n\n3.3. Following the expiration of this Agreement, the rights stipulated in Section 3.2(A) shall continue on a perpetual, royalty-free, non-exclusive, and non-transferable basis for the continued use of a Fallback Version of each Product covered by the Toolbox Subscription. The limitations set forth in Sections 3.1 and 3.2(B) of this Agreement apply to the usage of the Fallback Version, as shall Section 12.5. The rights granted in this Section 3.3 are expressly contingent upon Customer not being in breach of this Agreement, including having paid in full the applicable Toolbox Subscription fees for the preceding 12 months or longer without interruption.\n\n3.4. Customer acknowledges that no ownership right is conveyed to Customer under this Agreement, irrespective of the use of terms such as \"purchase\" or \"sale\". JetBrains has and retains all rights, title and interest, including all intellectual property rights, in and to the Products and any and all related or underlying technology, and any modifications or derivative works thereof, including without limitation as they may incorporate Feedback (as defined below).\n\n4. PURCHASING THROUGH RESELLERS\nThis Agreement applies whether Customer purchases a Toolbox Subscription directly from JetBrains or through resellers. If Customer purchases through a reseller, the Toolbox Subscription details shall be as stated in the Subscription Confirmation issued by the reseller to Customer, and the reseller is responsible for the accuracy of any such Subscription Confirmation. Resellers are not authorized to make any promises or commitments on JetBrains' behalf, and Customer understands and agrees that JetBrains is not bound by any obligations to Customer other than as specified in this Agreement.\n\n5. ACCESS TO PRODUCTS\n5.1. All deliveries under this Agreement will be electronic. Customer and its Users must have an Internet connection in order to access JBA and receive any deliveries. For the avoidance of doubt, Customer is responsible for downloading and installing the Products, which are made available for download on JetBrains' website at www.jetbrains.com.\n\n5.2. Customer and its Users may use the JBA in accordance with its documentation. Customer and its Users are solely responsible for the accuracy of any information provided via and any action taken through the JBA.\n\n5.3. Customer may enable Users to access Products in one of the following ways:\n\n(A) By sending an invitation from Customer's JBA to a User JBA. Customer acknowledges and agrees that the Product will periodically connect from a User Client to JetBrains' servers via the Internet to confirm that User's right to use the Product;\n\n(B) By generating an offline activation code in Customer's JBA and providing it to the User for offline Product activation. It is Customer's responsibility to generate a new activation code and apply it to the Product registration screen every time changes are made to the right of use assignment or Toolbox Subscription plan, as well as whenever a subscription is renewed;\n\n(C) Via a server application located on Customer's premises that enables access to the Product from Clients that are within Customer's local area network (\"Product Server\"). The Product Server option may be provided to Customer at the sole discretion of JetBrains.\n\n6. FEES\nCustomer shall pay its Toolbox Subscription fees in accordance with JetBrains Terms of Purchase or the reseller's terms of purchase, whichever are applicable. The Toolbox Subscription fees shall be paid in full, and any levies, duties and/or taxes imposed by Customer's jurisdiction (including, but not limited to, value added tax, sales tax and withholding tax), shall be borne solely by Customer. Customer may not deduct any amounts from fees payable to JetBrains or the reseller, unless otherwise specified in the applicable terms of purchase.\n\n7. FEEDBACK\nCustomer has no obligation to provide Us with ideas, suggestions, or proposals (\"Feedback\"). However, if Customer or Users submit Feedback to us, then Customer grants us a non-exclusive, worldwide, royalty-free license that is sub-licensable and transferable, to make, use, sell, have made, offer to sell, import, reproduce, publicly display, distribute, modify, or publicly perform the Feedback in any manner without any obligation, royalty or restriction based on intellectual property rights or otherwise.\n\n8. THIRD-PARTY SOFTWARE\nThe Products include code and libraries licensed to Us by third parties, including open source software (\"Third-Party Software\"). The list of Third-Party Software included in each Product is available in the Product documentation. All Third-Party Software is provided to Customer under the respective terms stipulated in the Product documentation.\n\n9. TOOLBOX SUBSCRIPTION TRIAL\n9.1. Subject to the terms of this Agreement, Customer is granted a one-time right to install and use the Product for evaluation purposes without charge for a period of thirty (30) days from the date of the Product installation (\"Evaluation Period\"). Customer's use of the Product during the Evaluation Period shall be limited to the internal evaluation of the Product for the sole purpose of determining whether the Product meets Customer's requirements and whether Customer desires to continue using the Product.\n\n9.2. Customer may withdraw from using the Product at Customer's sole discretion anytime before expiration of the Evaluation Period. Upon expiration of the Evaluation Period, Customer's right to continue to use the Product will terminate, unless Customer purchases a Toolbox Subscription to the Product. The Product contains a feature that will automatically disable the Product upon the expiration of the Evaluation Period.\n\n10. LIMITED WARRANTY\nALL PRODUCTS ARE PROVIDED TO CUSTOMER ON AN \"AS IS\" AND \"AS AVAILABLE\" BASIS WITHOUT WARRANTIES. USE OF THE PRODUCTS IS AT YOUR OWN RISK. JETBRAINS MAKES NO WARRANTY AS TO THEIR USE OR PERFORMANCE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, JETBRAINS, AND ITS SUPPLIERS (WHICH SHALL INCLUDE THE PROVIDERS OF THE THIRD PARTY SOFTWARE) AND RESELLERS, DISCLAIM ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT, WITH REGARD TO THE PRODUCTS, AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES. THIS LIMITED WARRANTY GIVES CUSTOMER SPECIFIC LEGAL RIGHTS. CUSTOMER MAY HAVE OTHER RIGHTS, WHICH VARY FROM STATE/JURISDICTION TO STATE/JURISDICTION. JETBRAINS (AND ITS AFFILIATES, AGENTS, DIRECTORS AND EMPLOYEES) DOES NOT WARRANT THAT THE PRODUCTS ARE ACCURATE, RELIABLE OR CORRECT; THAT THE PRODUCTS WILL MEET YOUR REQUIREMENTS; THAT THE PRODUCTS WILL BE AVAILABLE AT ANY PARTICULAR TIME OR LOCATION, UNINTERRUPTED OR SECURE; THAT ANY DEFECTS OR ERRORS WILL BE CORRECTED; OR THAT THE PRODUCTS ARE FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS. ANY CONTENT OR DATA DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE PRODUCTS ARE DOWNLOADED AT YOUR OWN RISK AND YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR LOSS OF DATA THAT RESULTS FROM SUCH DOWNLOAD.\n\n11. DISCLAIMER OF DAMAGES\n11.1. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL JETBRAINS (OR ITS AFFILIATES, AGENTS, DIRECTORS, OR EMPLOYEES), OR JETBRAINS' LICENSORS, SUPPLIERS OR RESELLERS BE LIABLE TO CUSTOMER OR ANYONE ELSE FOR: (A) ANY LOSS OF USE, DATA, GOODWILL, OR PROFITS, WHETHER OR NOT FORESEEABLE; (B) ANY LOSS OR DAMAGES IN CONNECTION WITH TERMINATION OR SUSPENSION OF CUSTOMER'S ACCESS TO OUR PRODUCTS IN ACCORDANCE WITH THIS AGREEMENT, OR (C) ANY SPECIAL, INCIDENTAL, INDIRECT, CONSEQUENTIAL, EXEMPLARY OR PUNITIVE DAMAGES WHATSOEVER (EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF THESE DAMAGES), INCLUDING THOSE (X) RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT FORESEEABLE, (Y) BASED ON ANY THEORY OF LIABILITY, INCLUDING BREACH OF CONTRACT OR WARRANTY, STRICT LIABILITY, NEGLIGENCE OR OTHER TORTIOUS ACTION, OR (Z) ARISING FROM ANY OTHER CLAIM ARISING OUT OF OR IN CONNECTION WITH CUSTOMER'S USE OF OR ACCESS TO THE PRODUCTS OR SUPPORT. THE FOREGOING LIMITATION OF LIABILITY SHALL APPLY TO THE FULLEST EXTENT PERMITTED BY LAW IN THE APPLICABLE JURISDICTION.\n\n11.2. OUR TOTAL LIABILITY IN ANY MATTER ARISING OUT OF OR IN RELATION TO THIS AGREEMENT IS LIMITED TO ONE HUNDRED (100) US DOLLARS OR THE AGGREGATE AMOUNT PAID OR PAYABLE BY THE CUSTOMER FOR PRODUCTS DURING THE THREE-MONTH PERIOD PRECEDING THE EVENT GIVING RISE TO THE LIABILITY, WHICHEVER IS GREATER. THIS LIMITATION WILL APPLY EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF LIABILITY EXCEEDING SUCH AMOUNT AND NOTWITHSTANDING ANY FAILURE OF THE ESSENTIAL PURPOSE OF ANY LIMITED REMEDY.\n\n12. TERM AND TERMINATION\n12.1. The term of this Agreement will commence upon acceptance of this Agreement by Customer as set forth in the preamble above, and will continue for each Product through the end of the applicable subscription period specified in the respective Subscription Confirmation. This Agreement will automatically renew with respect to each Product for a successive Toolbox Subscription term, unless terminated as set forth herein.\n\n12.2. Customer may terminate this Agreement at any time by cancelling its Product subscription via Customer's JetBrains Account. If such termination occurs during a then-current subscription period, this Agreement will continue to be effective until the end of that subscription period. Such termination does not relieve Customer of the obligation to pay any outstanding subscription fees owed to JetBrains, and no credits or refunds will be issued to Customer for prepaid subscription fees (except as specified in the JetBrains Terms of Purchase, if applicable).\n\n12.3. JetBrains may terminate this agreement if:\n\n(A) Customer has materially breached this Agreement and fails to cure such breach within thirty (30) days of written notice thereof;\n\n(B) Customer fails to make the timely payment of subscription fees in accordance with Section 6 of this Agreement;\n\n(C) JetBrains is required to do so by law (for example, where the provision of the JetBrains Toolbox to Customer is, or becomes, unlawful); or\n\n(D) JetBrains elects to discontinue providing the JetBrains Toolbox, in whole or in part.\n\n12.4. JetBrains will make reasonable efforts to notify Customer via email as follows:\n\n(A) Thirty (30) days prior to termination of the Agreement in the events specified in Sections 12.3(C) and 12.3(D) above, and in such events Customer will be entitled to a refund of the unused portion of prepaid subscription fees, if applicable;\n\n(B) Three (3) days prior to termination of the Agreement in the event specified in Section 12.3(B), and in such event Customer will not be entitled to any refund of the unused portion of prepaid subscription fees.\n\n12.5. Survival. Upon the expiration or termination of this Agreement by Customer under Section 12.2, and if Customer elects to use the Fallback Version of the Product subject to Section 3.3 of this Agreement, Sections 3.3, 7, 8, 10 and 11 of this Agreement will also survive with respect to said Fallback Version.\n\n13. TEMPORARY SUSPENSION FOR NON-PAYMENT\n13.1. JetBrains reserves the right to suspend Customer's access to JetBrains' Products if Customer fails to pay subscription fees on time in accordance with Section 6 of this Agreement.\n\n13.2. If JetBrains suspends Customer's access to JetBrains' Products for non-payment according to Section 13.1., Customer must pay all past due amounts in order to restore its access to JetBrains' Products.\n\n13.3. Customer hereby agrees that JetBrains is entitled to charge Customer for the time period during which Customer has access to JetBrains Products until Customer or JetBrains terminates or suspends Customer's subscription in accordance with this Agreement.\n\n14. EXPORT REGULATIONS\nCustomer shall comply with all applicable laws and regulations with regards to economic sanctions, export controls, import regulations, and trade embargoes (all herein referred to as \"Sanctions\"), including those of the European Union and United States (specifically the Export Administration Regulations (EAR)). Customer declares that it is not a person targeted by Sanctions nor is it otherwise owned or controlled by or acting on behalf of any person targeted by Sanctions. Further, Customer warrants that it will not download or otherwise export or re-export the JetBrains Toolbox or any related technical data directly or indirectly to any person targeted by Sanctions or download or otherwise use the JetBrains Toolbox for any end-use prohibited or restricted by Sanctions.\n\n15. MARKETING\nCustomer agrees that JetBrains may identify it as a customer of JetBrains and may refer to it by name, trade name and trademark, if applicable. JetBrains may also briefly describe Customer's business in JetBrains marketing materials, on the JetBrains website and/or in public or legal documents. Customer hereby grants JetBrains a worldwide, non-exclusive and royalty-free license to use Customer's name and any of Customer's trade names and trademarks solely pursuant to this marketing section.\n\n16. GENERAL\n16.1. Entire Agreement. This Agreement, including the Third-Party Software license terms, constitutes the entire agreement between the parties concerning its subject matter and supersedes any prior agreements between Customer and JetBrains regarding Customer's use of any Products in the JetBrains Toolbox. No purchase order, other ordering document or any handwritten or typewritten text which purports to modify or supplement the printed text of this Agreement or any schedule will add to or vary the terms of this Agreement unless signed by both Customer and JetBrains.\n\n16.2. Reservation of Rights. JetBrains reserves the right at any time to cease the support of the JetBrains Toolbox and to alter prices, features, specifications, capabilities, functions, terms of use, release dates, general availability or other characteristics of the JetBrains Toolbox.\n\n16.3. Changes to this Agreement. We may update or modify this Agreement from time to time, including any referenced policies and other documents. If a revision meaningfully reduces Customer's rights, we will use reasonable efforts to notify Customer (by, for example, sending an email to the billing or technical contact provided by Customer to us, posting on our blog, through Customer's JetBrains Account, or via the Product itself). If we modify this Agreement, the modified version of the Agreement will be effective from the start of the next Toolbox Subscription term. In this case, if Customer objects to the updated Agreement terms, as Customer's exclusive remedy, Customer may cancel the Toolbox Subscription. Customer may be required to click through the updated Agreement to show its acceptance. For the avoidance of doubt, each Subscription Confirmation is subject to the version of the Agreement in effect on the Subscription Confirmation date.\n\n16.4. Opportunity to Review. Customer hereby declares that Customer has had sufficient opportunity to review this Agreement, understand the content of all of its clauses, negotiate its terms, and seek independent professional legal advice in that respect before entering into it. Consequently, any statutory \"form contract\" (\"adhesion contract\") regulations shall not be applicable to this Agreement.\n\n16.5. Severability. If a particular term of this Agreement is not enforceable, the unenforceability of that term will not affect any other terms of this Agreement.\n\n16.6. Headings. Headings and titles are for convenience only and do not affect the interpretation of this Agreement.\n\n16.7. No Waiver. Our failure to enforce or exercise any part of this Agreement is not a waiver of that section.\n\n16.8. Notice. JetBrains may deliver any notice to Customer via electronic mail to an email address provided by Customer, its JetBrains Account, registered mail, personal delivery or renowned express courier (such as DHL, FedEx or UPS). Any such notice will be deemed to be effective (i) on the day the notice is sent to Customer via email, (ii) upon being uploaded to Customer's JetBrains Account (irrespective of when Customer actually receives it), (iii) upon personal delivery, (iv) one (1) day after deposit with an express courier, (v) or five (5) days after deposit in the mail, whichever occurs first.\n\n16.9. Governing Law. This Agreement will be governed by the laws of the Czech Republic, without reference to conflict of laws principles. Customer agrees that any litigation relating to this Agreement may only be brought in, and will be subject to the jurisdiction of, any competent court of the Czech Republic. The parties agree that the United Nations Convention on Contracts for the International Sale of Goods does not apply to this Agreement.\n\nFor exceptions or modifications to this Agreement, please contact JetBrains at:\nAddress: Na hrebenech II 1718/10, Prague, 14000, Czech Republic\nFax: +420 241 722 540\nE-mail: sales@jetbrains.com\n";
161
2
 
162
3
  export { toolbox_eula as default };
@@ -1,3 +1,5 @@
1
+ import { _ as _defineProperty, a as _inherits, b as _createClass, f as _classCallCheck, g as _callSuper } from '../_helpers/_rollupPluginBabelHelpers.js';
2
+ import 'core-js/modules/es.array.concat.js';
1
3
  import React, { PureComponent } from 'react';
2
4
  import PropTypes from 'prop-types';
3
5
  import classNames from 'classnames';
@@ -8,18 +10,36 @@ import { Button } from '../button/button.js';
8
10
  import { I18nContext } from '../i18n/i18n-context.js';
9
11
  import HeaderWrapper from '../island/header.js';
10
12
  import ContentWrapper from '../island/content.js';
11
- import '../_helpers/_rollupPluginBabelHelpers.js';
12
13
  import 'react-dom';
13
14
  import '@jetbrains/icons/close';
14
15
  import '../global/get-uid.js';
16
+ import 'core-js/modules/es.object.to-string.js';
17
+ import 'core-js/modules/es.regexp.to-string.js';
15
18
  import '../global/data-tests.js';
19
+ import 'core-js/modules/es.array.reduce.js';
20
+ import 'core-js/modules/es.object.entries.js';
16
21
  import '../shortcuts/shortcuts.js';
22
+ import 'core-js/modules/es.array.map.js';
17
23
  import '../shortcuts/core.js';
24
+ import 'core-js/modules/es.array.find-index.js';
25
+ import 'core-js/modules/es.array.includes.js';
26
+ import 'core-js/modules/es.array.slice.js';
27
+ import 'core-js/modules/es.array.splice.js';
28
+ import 'core-js/modules/es.object.assign.js';
29
+ import 'core-js/modules/es.regexp.exec.js';
30
+ import 'core-js/modules/es.string.includes.js';
31
+ import 'core-js/modules/es.string.match.js';
18
32
  import 'combokeys';
19
33
  import '../global/sniffer.js';
20
34
  import 'sniffr';
21
35
  import '../tab-trap/tab-trap.js';
36
+ import 'core-js/modules/es.array.filter.js';
22
37
  import '../global/dom.js';
38
+ import 'core-js/modules/es.array.iterator.js';
39
+ import 'core-js/modules/es.set.js';
40
+ import 'core-js/modules/es.string.split.js';
41
+ import 'core-js/modules/web.dom-collections.for-each.js';
42
+ import 'core-js/modules/web.dom-collections.iterator.js';
23
43
  import '../popup/popup.target.js';
24
44
  import '../_helpers/dialog__body-scroll-preventer.js';
25
45
  import 'scrollbar-width';
@@ -33,7 +53,11 @@ import '../icon/icon.js';
33
53
  import 'util-deprecate';
34
54
  import '../icon/icon__constants.js';
35
55
  import '../_helpers/icon__svg.js';
56
+ import 'core-js/modules/es.string.replace.js';
57
+ import 'core-js/modules/es.string.starts-with.js';
36
58
  import '../global/memoize.js';
59
+ import 'core-js/modules/es.map.js';
60
+ import 'core-js/modules/es.weak-map.js';
37
61
  import '../link/clickableLink.js';
38
62
  import '../global/controls-height.js';
39
63
  import '../_helpers/button__classes.js';
@@ -45,91 +69,102 @@ function noop() {}
45
69
  /**
46
70
  * A component that displays a user agreement dialog.
47
71
  */
48
- class UserAgreement extends PureComponent {
49
- static propTypes = {
50
- show: PropTypes.bool,
51
- preview: PropTypes.bool,
52
- onAccept: PropTypes.func,
53
- onDecline: PropTypes.func,
54
- onClose: PropTypes.func,
55
- onRemindLater: PropTypes.func,
56
- translations: PropTypes.shape({
57
- userAgreement: PropTypes.string.isRequired,
58
- accept: PropTypes.string.isRequired,
59
- decline: PropTypes.string.isRequired,
60
- close: PropTypes.string.isRequired,
61
- scrollToAccept: PropTypes.string.isRequired,
62
- remindLater: PropTypes.string.isRequired
63
- }),
64
- className: PropTypes.string
65
- };
66
- static defaultProps = {
67
- show: false,
68
- onAccept: noop,
69
- onDecline: noop,
70
- onClose: noop
71
- };
72
- state = {
73
- scrolledDown: false
74
- };
75
- onScrollToBottom = () => this.setState({
76
- scrolledDown: true
77
- });
78
- render() {
79
- const {
80
- scrolledDown
81
- } = this.state;
82
- const {
83
- translations,
84
- onAccept,
85
- onDecline,
86
- onClose,
87
- onRemindLater,
88
- children,
89
- show,
90
- preview,
91
- className
92
- } = this.props;
93
- return /*#__PURE__*/React.createElement(I18nContext.Consumer, null, _ref => {
94
- var _translations$userAgr, _translations$userAgr2, _translations$scrollT, _translations$accept, _translations$decline, _translations$scrollT2, _translations$remindL, _translations$close;
95
- let {
96
- translate
97
- } = _ref;
98
- return /*#__PURE__*/React.createElement(Dialog, {
99
- label: (_translations$userAgr = translations?.userAgreement) !== null && _translations$userAgr !== void 0 ? _translations$userAgr : translate('userAgreement'),
100
- show: show,
101
- className: classNames(modules_f5ed85cf.agreementDialog, className),
102
- contentClassName: modules_f5ed85cf.dialogContent,
103
- trapFocus: true,
104
- autoFocusFirst: false,
105
- "data-test": "user-agreement"
106
- }, /*#__PURE__*/React.createElement(HeaderWrapper, null, (_translations$userAgr2 = translations?.userAgreement) !== null && _translations$userAgr2 !== void 0 ? _translations$userAgr2 : translate('userAgreement')), /*#__PURE__*/React.createElement(ContentWrapper, {
107
- fade: true,
108
- onScrollToBottom: this.onScrollToBottom
109
- }, children), !preview && /*#__PURE__*/React.createElement(Panel, null, onRemindLater && !scrolledDown && /*#__PURE__*/React.createElement("div", {
110
- className: modules_f5ed85cf.suggestion
111
- }, (_translations$scrollT = translations?.scrollToAccept) !== null && _translations$scrollT !== void 0 ? _translations$scrollT : translate('scrollToAccept')), /*#__PURE__*/React.createElement(Button, {
112
- primary: true,
113
- disabled: !scrolledDown,
114
- onClick: onAccept,
115
- "data-test": "accept"
116
- }, (_translations$accept = translations?.accept) !== null && _translations$accept !== void 0 ? _translations$accept : translate('accept')), /*#__PURE__*/React.createElement(Button, {
117
- onClick: onDecline,
118
- autoFocus: true,
119
- "data-test": "decline"
120
- }, (_translations$decline = translations?.decline) !== null && _translations$decline !== void 0 ? _translations$decline : translate('decline')), !onRemindLater && !scrolledDown && /*#__PURE__*/React.createElement("span", {
121
- className: modules_f5ed85cf.suggestion
122
- }, (_translations$scrollT2 = translations?.scrollToAccept) !== null && _translations$scrollT2 !== void 0 ? _translations$scrollT2 : translate('scrollToAccept')), onRemindLater && /*#__PURE__*/React.createElement(Button, {
123
- className: modules_f5ed85cf.remindLaterButton,
124
- onClick: onRemindLater,
125
- "data-test": "later"
126
- }, (_translations$remindL = translations?.remindLater) !== null && _translations$remindL !== void 0 ? _translations$remindL : translate('remindLater'))), preview && /*#__PURE__*/React.createElement(Panel, null, /*#__PURE__*/React.createElement(Button, {
127
- onClick: onClose,
128
- autoFocus: true,
129
- "data-test": "close"
130
- }, (_translations$close = translations?.close) !== null && _translations$close !== void 0 ? _translations$close : translate('close'))));
72
+ var UserAgreement = /*#__PURE__*/function (_PureComponent) {
73
+ function UserAgreement() {
74
+ var _this;
75
+ _classCallCheck(this, UserAgreement);
76
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
77
+ args[_key] = arguments[_key];
78
+ }
79
+ _this = _callSuper(this, UserAgreement, [].concat(args));
80
+ _defineProperty(_this, "state", {
81
+ scrolledDown: false
131
82
  });
83
+ _defineProperty(_this, "onScrollToBottom", function () {
84
+ return _this.setState({
85
+ scrolledDown: true
86
+ });
87
+ });
88
+ return _this;
132
89
  }
133
- }
90
+ _inherits(UserAgreement, _PureComponent);
91
+ return _createClass(UserAgreement, [{
92
+ key: "render",
93
+ value: function render() {
94
+ var _this2 = this;
95
+ var scrolledDown = this.state.scrolledDown;
96
+ var _this$props = this.props,
97
+ translations = _this$props.translations,
98
+ onAccept = _this$props.onAccept,
99
+ onDecline = _this$props.onDecline,
100
+ onClose = _this$props.onClose,
101
+ onRemindLater = _this$props.onRemindLater,
102
+ children = _this$props.children,
103
+ show = _this$props.show,
104
+ preview = _this$props.preview,
105
+ className = _this$props.className;
106
+ return /*#__PURE__*/React.createElement(I18nContext.Consumer, null, function (_ref) {
107
+ var _translations$userAgr, _translations$userAgr2, _translations$scrollT, _translations$accept, _translations$decline, _translations$scrollT2, _translations$remindL, _translations$close;
108
+ var translate = _ref.translate;
109
+ return /*#__PURE__*/React.createElement(Dialog, {
110
+ label: (_translations$userAgr = translations === null || translations === void 0 ? void 0 : translations.userAgreement) !== null && _translations$userAgr !== void 0 ? _translations$userAgr : translate('userAgreement'),
111
+ show: show,
112
+ className: classNames(modules_f5ed85cf.agreementDialog, className),
113
+ contentClassName: modules_f5ed85cf.dialogContent,
114
+ trapFocus: true,
115
+ autoFocusFirst: false,
116
+ "data-test": "user-agreement"
117
+ }, /*#__PURE__*/React.createElement(HeaderWrapper, null, (_translations$userAgr2 = translations === null || translations === void 0 ? void 0 : translations.userAgreement) !== null && _translations$userAgr2 !== void 0 ? _translations$userAgr2 : translate('userAgreement')), /*#__PURE__*/React.createElement(ContentWrapper, {
118
+ fade: true,
119
+ onScrollToBottom: _this2.onScrollToBottom
120
+ }, children), !preview && /*#__PURE__*/React.createElement(Panel, null, onRemindLater && !scrolledDown && /*#__PURE__*/React.createElement("div", {
121
+ className: modules_f5ed85cf.suggestion
122
+ }, (_translations$scrollT = translations === null || translations === void 0 ? void 0 : translations.scrollToAccept) !== null && _translations$scrollT !== void 0 ? _translations$scrollT : translate('scrollToAccept')), /*#__PURE__*/React.createElement(Button, {
123
+ primary: true,
124
+ disabled: !scrolledDown,
125
+ onClick: onAccept,
126
+ "data-test": "accept"
127
+ }, (_translations$accept = translations === null || translations === void 0 ? void 0 : translations.accept) !== null && _translations$accept !== void 0 ? _translations$accept : translate('accept')), /*#__PURE__*/React.createElement(Button, {
128
+ onClick: onDecline,
129
+ autoFocus: true,
130
+ "data-test": "decline"
131
+ }, (_translations$decline = translations === null || translations === void 0 ? void 0 : translations.decline) !== null && _translations$decline !== void 0 ? _translations$decline : translate('decline')), !onRemindLater && !scrolledDown && /*#__PURE__*/React.createElement("span", {
132
+ className: modules_f5ed85cf.suggestion
133
+ }, (_translations$scrollT2 = translations === null || translations === void 0 ? void 0 : translations.scrollToAccept) !== null && _translations$scrollT2 !== void 0 ? _translations$scrollT2 : translate('scrollToAccept')), onRemindLater && /*#__PURE__*/React.createElement(Button, {
134
+ className: modules_f5ed85cf.remindLaterButton,
135
+ onClick: onRemindLater,
136
+ "data-test": "later"
137
+ }, (_translations$remindL = translations === null || translations === void 0 ? void 0 : translations.remindLater) !== null && _translations$remindL !== void 0 ? _translations$remindL : translate('remindLater'))), preview && /*#__PURE__*/React.createElement(Panel, null, /*#__PURE__*/React.createElement(Button, {
138
+ onClick: onClose,
139
+ autoFocus: true,
140
+ "data-test": "close"
141
+ }, (_translations$close = translations === null || translations === void 0 ? void 0 : translations.close) !== null && _translations$close !== void 0 ? _translations$close : translate('close'))));
142
+ });
143
+ }
144
+ }]);
145
+ }(PureComponent);
146
+ _defineProperty(UserAgreement, "propTypes", {
147
+ show: PropTypes.bool,
148
+ preview: PropTypes.bool,
149
+ onAccept: PropTypes.func,
150
+ onDecline: PropTypes.func,
151
+ onClose: PropTypes.func,
152
+ onRemindLater: PropTypes.func,
153
+ translations: PropTypes.shape({
154
+ userAgreement: PropTypes.string.isRequired,
155
+ accept: PropTypes.string.isRequired,
156
+ decline: PropTypes.string.isRequired,
157
+ close: PropTypes.string.isRequired,
158
+ scrollToAccept: PropTypes.string.isRequired,
159
+ remindLater: PropTypes.string.isRequired
160
+ }),
161
+ className: PropTypes.string
162
+ });
163
+ _defineProperty(UserAgreement, "defaultProps", {
164
+ show: false,
165
+ onAccept: noop,
166
+ onDecline: noop,
167
+ onClose: noop
168
+ });
134
169
 
135
170
  export { UserAgreement as default };
@@ -1,4 +1,5 @@
1
1
  import '../_helpers/_rollupPluginBabelHelpers.js';
2
+ import 'core-js/modules/es.array.concat.js';
2
3
  import 'react';
3
4
  import 'prop-types';
4
5
  import 'classnames';
@@ -12,15 +13,35 @@ import '../i18n/i18n-context.js';
12
13
  export { U as default } from '../_helpers/card.js';
13
14
  import '../icon/icon__constants.js';
14
15
  import '../global/url.js';
16
+ import 'core-js/modules/es.array.index-of.js';
17
+ import 'core-js/modules/es.regexp.exec.js';
18
+ import 'core-js/modules/es.string.match.js';
19
+ import 'core-js/modules/es.string.replace.js';
15
20
  import '../global/dom.js';
21
+ import 'core-js/modules/es.array.filter.js';
22
+ import 'core-js/modules/es.array.iterator.js';
23
+ import 'core-js/modules/es.object.assign.js';
24
+ import 'core-js/modules/es.object.entries.js';
25
+ import 'core-js/modules/es.object.to-string.js';
26
+ import 'core-js/modules/es.set.js';
27
+ import 'core-js/modules/es.string.split.js';
28
+ import 'core-js/modules/web.dom-collections.for-each.js';
29
+ import 'core-js/modules/web.dom-collections.iterator.js';
16
30
  import '../avatar/fallback-avatar.js';
31
+ import 'core-js/modules/es.array.from.js';
32
+ import 'core-js/modules/es.array.map.js';
33
+ import 'core-js/modules/es.array.slice.js';
17
34
  import '../global/get-uid.js';
35
+ import 'core-js/modules/es.regexp.to-string.js';
18
36
  import '../global/data-tests.js';
37
+ import 'core-js/modules/es.array.reduce.js';
19
38
  import '../link/clickableLink.js';
20
39
  import '../_helpers/link.js';
40
+ import 'core-js/modules/es.promise.js';
21
41
  import '../alert-service/alert-service.js';
22
42
  import 'react-dom/client';
23
43
  import '../alert/alert.js';
44
+ import 'core-js/modules/es.object.values.js';
24
45
  import '@jetbrains/icons/exception';
25
46
  import '@jetbrains/icons/checkmark';
26
47
  import '@jetbrains/icons/warning';
@@ -32,7 +53,10 @@ import '../global/controls-height.js';
32
53
  import '../_helpers/button__classes.js';
33
54
  import 'util-deprecate';
34
55
  import '../_helpers/icon__svg.js';
56
+ import 'core-js/modules/es.string.starts-with.js';
35
57
  import '../global/memoize.js';
58
+ import 'core-js/modules/es.map.js';
59
+ import 'core-js/modules/es.weak-map.js';
36
60
  import '../_helpers/theme.js';
37
61
  import 'react-dom';
38
62
  import '../popup/popup.target.js';
@@ -40,11 +64,16 @@ import '../popup/popup.js';
40
64
  import '../global/schedule-raf.js';
41
65
  import '../shortcuts/shortcuts.js';
42
66
  import '../shortcuts/core.js';
67
+ import 'core-js/modules/es.array.find-index.js';
68
+ import 'core-js/modules/es.array.includes.js';
69
+ import 'core-js/modules/es.array.splice.js';
70
+ import 'core-js/modules/es.string.includes.js';
43
71
  import 'combokeys';
44
72
  import '../global/sniffer.js';
45
73
  import 'sniffr';
46
74
  import '../tab-trap/tab-trap.js';
47
75
  import '../popup/position.js';
76
+ import 'core-js/modules/es.array.sort.js';
48
77
  import '../popup/popup.consts.js';
49
78
  import '../alert/container.js';
50
79
  import '../clipboard/clipboard-fallback.js';