@riverty/web-components 5.4.0 → 5.6.0

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 (214) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/README.md +3 -3
  3. package/custom-elements.json +27 -15
  4. package/dist/cjs/{index-BnETQtSf.js → index-DJ4H_bFj.js} +382 -5
  5. package/dist/cjs/loader.cjs.js +2 -2
  6. package/dist/cjs/r-accordion-item.cjs.entry.js +1 -1
  7. package/dist/cjs/r-accordion-panel.cjs.entry.js +1 -1
  8. package/dist/cjs/r-accordion-section.cjs.entry.js +1 -1
  9. package/dist/cjs/r-accordion-trigger.cjs.entry.js +1 -1
  10. package/dist/cjs/r-accordion.cjs.entry.js +2 -2
  11. package/dist/cjs/r-alert.cjs.entry.js +1 -1
  12. package/dist/cjs/r-badge.cjs.entry.js +1 -1
  13. package/dist/cjs/r-button.cjs.entry.js +2 -2
  14. package/dist/cjs/r-checkbox-group.cjs.entry.js +1 -1
  15. package/dist/cjs/r-checkbox.cjs.entry.js +5 -5
  16. package/dist/cjs/r-design-system-devtools.cjs.entry.js +1 -1
  17. package/dist/cjs/r-dialog.cjs.entry.js +8 -10
  18. package/dist/cjs/r-hint_3.cjs.entry.js +136 -38
  19. package/dist/cjs/r-icon-button.cjs.entry.js +4 -4
  20. package/dist/cjs/r-icon.cjs.entry.js +3 -3
  21. package/dist/cjs/r-input-code.cjs.entry.js +1 -1
  22. package/dist/cjs/r-input-date.cjs.entry.js +7 -7
  23. package/dist/cjs/r-input-password.cjs.entry.js +3 -3
  24. package/dist/cjs/r-input-phone-number.cjs.entry.js +5 -5
  25. package/dist/cjs/r-input.cjs.entry.js +19 -6
  26. package/dist/cjs/r-list-item.cjs.entry.js +5 -6
  27. package/dist/cjs/r-pagination.cjs.entry.js +1 -1
  28. package/dist/cjs/r-panel.cjs.entry.js +1 -1
  29. package/dist/cjs/r-popover-action.cjs.entry.js +1 -1
  30. package/dist/cjs/r-popover-content.cjs.entry.js +1 -1
  31. package/dist/cjs/r-popover-headline.cjs.entry.js +1 -1
  32. package/dist/cjs/r-popover-trigger.cjs.entry.js +1 -1
  33. package/dist/cjs/r-popover.cjs.entry.js +1 -1
  34. package/dist/cjs/r-progress-bar.cjs.entry.js +1 -1
  35. package/dist/cjs/r-radio-button-description.cjs.entry.js +1 -1
  36. package/dist/cjs/r-radio-button-leading.cjs.entry.js +1 -1
  37. package/dist/cjs/r-radio-button-title.cjs.entry.js +1 -1
  38. package/dist/cjs/r-radio-button-trailing.cjs.entry.js +1 -1
  39. package/dist/cjs/r-radio-button.cjs.entry.js +1 -1
  40. package/dist/cjs/r-radio-group.cjs.entry.js +7 -7
  41. package/dist/cjs/r-select-option.cjs.entry.js +1 -1
  42. package/dist/cjs/r-select.cjs.entry.js +3 -3
  43. package/dist/cjs/r-skip-link.cjs.entry.js +1 -1
  44. package/dist/cjs/r-stepper-item.cjs.entry.js +1 -1
  45. package/dist/cjs/r-stepper.cjs.entry.js +1 -1
  46. package/dist/cjs/r-tab-panel.cjs.entry.js +1 -1
  47. package/dist/cjs/r-tab.cjs.entry.js +1 -1
  48. package/dist/cjs/r-tabs-list.cjs.entry.js +1 -1
  49. package/dist/cjs/r-tabs.cjs.entry.js +1 -1
  50. package/dist/cjs/r-textarea.cjs.entry.js +1 -1
  51. package/dist/cjs/r-toast-group.cjs.entry.js +15 -5
  52. package/dist/cjs/r-toast.cjs.entry.js +10 -11
  53. package/dist/cjs/web-components.cjs.js +2 -2
  54. package/dist/collection/components/accordion/accordion.js +1 -2
  55. package/dist/collection/components/button/button.js +1 -2
  56. package/dist/collection/components/checkbox/checkbox.js +4 -5
  57. package/dist/collection/components/dialog/dialog.css +1 -1
  58. package/dist/collection/components/dialog/dialog.js +23 -8
  59. package/dist/collection/components/icon/bundled-icons/riverty-kit.json +1 -1
  60. package/dist/collection/components/icon/icon.js +2 -2
  61. package/dist/collection/components/icon/riverty-kit.js +1 -1
  62. package/dist/collection/components/icon-button/icon-button.js +3 -4
  63. package/dist/collection/components/input/input.js +37 -5
  64. package/dist/collection/components/input-date/input-date.js +7 -7
  65. package/dist/collection/components/input-password/input-password.js +3 -3
  66. package/dist/collection/components/input-phone-number/input-phone-number.js +5 -5
  67. package/dist/collection/components/label/label.js +4 -4
  68. package/dist/collection/components/list-item/list-item/list-item.css +19 -11
  69. package/dist/collection/components/list-item/list-item/list-item.js +41 -4
  70. package/dist/collection/components/radio-group/radio-group.js +7 -7
  71. package/dist/collection/components/select/select.js +3 -4
  72. package/dist/collection/components/textarea/textarea.js +1 -1
  73. package/dist/collection/components/toast/toast.css +8 -2
  74. package/dist/collection/components/toast/toast.js +10 -11
  75. package/dist/collection/components/toast-group/toast-group.css +14 -13
  76. package/dist/collection/components/toast-group/toast-group.js +14 -4
  77. package/dist/collection/components/tooltip/tooltip.css +6 -71
  78. package/dist/collection/components/tooltip/tooltip.js +135 -33
  79. package/dist/esm/{index-CTxpqopm.js → index-Da7qOBFr.js} +382 -5
  80. package/dist/esm/loader.js +3 -3
  81. package/dist/esm/r-accordion-item.entry.js +1 -1
  82. package/dist/esm/r-accordion-panel.entry.js +1 -1
  83. package/dist/esm/r-accordion-section.entry.js +1 -1
  84. package/dist/esm/r-accordion-trigger.entry.js +1 -1
  85. package/dist/esm/r-accordion.entry.js +2 -2
  86. package/dist/esm/r-alert.entry.js +1 -1
  87. package/dist/esm/r-badge.entry.js +1 -1
  88. package/dist/esm/r-button.entry.js +2 -2
  89. package/dist/esm/r-checkbox-group.entry.js +1 -1
  90. package/dist/esm/r-checkbox.entry.js +5 -5
  91. package/dist/esm/r-design-system-devtools.entry.js +1 -1
  92. package/dist/esm/r-dialog.entry.js +8 -10
  93. package/dist/esm/r-hint_3.entry.js +136 -38
  94. package/dist/esm/r-icon-button.entry.js +4 -4
  95. package/dist/esm/r-icon.entry.js +3 -3
  96. package/dist/esm/r-input-code.entry.js +1 -1
  97. package/dist/esm/r-input-date.entry.js +7 -7
  98. package/dist/esm/r-input-password.entry.js +3 -3
  99. package/dist/esm/r-input-phone-number.entry.js +5 -5
  100. package/dist/esm/r-input.entry.js +19 -6
  101. package/dist/esm/r-list-item.entry.js +5 -6
  102. package/dist/esm/r-pagination.entry.js +1 -1
  103. package/dist/esm/r-panel.entry.js +1 -1
  104. package/dist/esm/r-popover-action.entry.js +1 -1
  105. package/dist/esm/r-popover-content.entry.js +1 -1
  106. package/dist/esm/r-popover-headline.entry.js +1 -1
  107. package/dist/esm/r-popover-trigger.entry.js +1 -1
  108. package/dist/esm/r-popover.entry.js +1 -1
  109. package/dist/esm/r-progress-bar.entry.js +1 -1
  110. package/dist/esm/r-radio-button-description.entry.js +1 -1
  111. package/dist/esm/r-radio-button-leading.entry.js +1 -1
  112. package/dist/esm/r-radio-button-title.entry.js +1 -1
  113. package/dist/esm/r-radio-button-trailing.entry.js +1 -1
  114. package/dist/esm/r-radio-button.entry.js +1 -1
  115. package/dist/esm/r-radio-group.entry.js +7 -7
  116. package/dist/esm/r-select-option.entry.js +1 -1
  117. package/dist/esm/r-select.entry.js +3 -3
  118. package/dist/esm/r-skip-link.entry.js +1 -1
  119. package/dist/esm/r-stepper-item.entry.js +1 -1
  120. package/dist/esm/r-stepper.entry.js +1 -1
  121. package/dist/esm/r-tab-panel.entry.js +1 -1
  122. package/dist/esm/r-tab.entry.js +1 -1
  123. package/dist/esm/r-tabs-list.entry.js +1 -1
  124. package/dist/esm/r-tabs.entry.js +1 -1
  125. package/dist/esm/r-textarea.entry.js +1 -1
  126. package/dist/esm/r-toast-group.entry.js +15 -5
  127. package/dist/esm/r-toast.entry.js +10 -11
  128. package/dist/esm/web-components.js +3 -3
  129. package/dist/types/components/accordion/accordion.d.ts +0 -1
  130. package/dist/types/components/button/button.d.ts +0 -1
  131. package/dist/types/components/checkbox/checkbox.d.ts +0 -1
  132. package/dist/types/components/dialog/dialog.d.ts +6 -1
  133. package/dist/types/components/icon/exports.d.ts +1 -0
  134. package/dist/types/components/icon/icon-data.d.ts +1 -0
  135. package/dist/types/components/icon/icon.d.ts +1 -1
  136. package/dist/types/components/icon/riverty-kit.d.ts +1 -0
  137. package/dist/types/components/icon-button/icon-button.d.ts +0 -1
  138. package/dist/types/components/input/input.d.ts +6 -0
  139. package/dist/types/components/input-date/input-date.d.ts +1 -1
  140. package/dist/types/components/input-password/input-password.d.ts +1 -1
  141. package/dist/types/components/input-phone-number/input-phone-number.d.ts +1 -1
  142. package/dist/types/components/label/label.d.ts +1 -1
  143. package/dist/types/components/list-item/list-item/list-item.d.ts +6 -1
  144. package/dist/types/components/radio-group/radio-group.d.ts +1 -1
  145. package/dist/types/components/select/select.d.ts +1 -2
  146. package/dist/types/components/textarea/textarea.d.ts +3 -3
  147. package/dist/types/components/toast/toast.d.ts +1 -3
  148. package/dist/types/components/toast-group/toast-group.d.ts +2 -0
  149. package/dist/types/components/tooltip/tooltip.d.ts +12 -4
  150. package/dist/types/components.d.ts +63 -40
  151. package/dist/web-components/bundled-icons/riverty-kit.json +1 -1
  152. package/dist/web-components/{p-aecd025b.entry.js → p-00ca474f.entry.js} +1 -1
  153. package/dist/web-components/{p-9c40f9cd.entry.js → p-0bb04d79.entry.js} +1 -1
  154. package/dist/web-components/{p-48dfb286.entry.js → p-1ae69897.entry.js} +1 -1
  155. package/dist/web-components/{p-4cf01f30.entry.js → p-1c2497de.entry.js} +1 -1
  156. package/dist/web-components/{p-03ff9abf.entry.js → p-230e44ae.entry.js} +1 -1
  157. package/dist/web-components/p-29a1e75f.entry.js +1 -0
  158. package/dist/web-components/{p-1157b7f4.entry.js → p-2b2f581a.entry.js} +1 -1
  159. package/dist/web-components/{p-0a424361.entry.js → p-3b4e3faf.entry.js} +1 -1
  160. package/dist/web-components/p-3bc93d65.entry.js +1 -0
  161. package/dist/web-components/{p-dc93ed55.entry.js → p-429213ea.entry.js} +1 -1
  162. package/dist/web-components/{p-c7a9da98.entry.js → p-44ae9f33.entry.js} +1 -1
  163. package/dist/web-components/{p-c60294d4.entry.js → p-44be9992.entry.js} +1 -1
  164. package/dist/web-components/{p-66c454ce.entry.js → p-4652635a.entry.js} +1 -1
  165. package/dist/web-components/{p-e50503d0.entry.js → p-4bd3e077.entry.js} +1 -1
  166. package/dist/web-components/{p-89ff32dc.entry.js → p-4e3df002.entry.js} +1 -1
  167. package/dist/web-components/p-51a5804b.entry.js +1 -0
  168. package/dist/web-components/{p-2d85c0f3.entry.js → p-72c0c0d8.entry.js} +1 -1
  169. package/dist/web-components/{p-e273950c.entry.js → p-72fa1fd1.entry.js} +1 -1
  170. package/dist/web-components/{p-135be1d5.entry.js → p-755cc697.entry.js} +1 -1
  171. package/dist/web-components/{p-e74c363a.entry.js → p-77155630.entry.js} +1 -1
  172. package/dist/web-components/{p-3ea6a1be.entry.js → p-8028c2a9.entry.js} +1 -1
  173. package/dist/web-components/{p-3fc2b23b.entry.js → p-828cb164.entry.js} +1 -1
  174. package/dist/web-components/{p-988a7731.entry.js → p-85a9af42.entry.js} +1 -1
  175. package/dist/web-components/{p-24130cdb.entry.js → p-87f39749.entry.js} +1 -1
  176. package/dist/web-components/{p-c9b2389b.entry.js → p-89136369.entry.js} +1 -1
  177. package/dist/web-components/{p-77dc268e.entry.js → p-8c577cda.entry.js} +1 -1
  178. package/dist/web-components/{p-8d2f4097.entry.js → p-96ddeb7f.entry.js} +1 -1
  179. package/dist/web-components/{p-735da2bb.entry.js → p-9b08e9ee.entry.js} +1 -1
  180. package/dist/web-components/{p-6b7d5236.entry.js → p-9e50120b.entry.js} +1 -1
  181. package/dist/web-components/{p-900923ab.entry.js → p-9eb1f262.entry.js} +1 -1
  182. package/dist/web-components/p-Da7qOBFr.js +2 -0
  183. package/dist/web-components/{p-2394508f.entry.js → p-a022f356.entry.js} +1 -1
  184. package/dist/web-components/{p-df81177e.entry.js → p-a58124c4.entry.js} +1 -1
  185. package/dist/web-components/p-a5be3395.entry.js +1 -0
  186. package/dist/web-components/{p-9891afb8.entry.js → p-a7e7f8fa.entry.js} +1 -1
  187. package/dist/web-components/p-b2cec978.entry.js +1 -0
  188. package/dist/web-components/{p-71d6c4d7.entry.js → p-c7f8e59b.entry.js} +1 -1
  189. package/dist/web-components/{p-f625b739.entry.js → p-c937bd92.entry.js} +1 -1
  190. package/dist/web-components/p-cbcd7699.entry.js +1 -0
  191. package/dist/web-components/{p-fdf70aed.entry.js → p-d3ff65b0.entry.js} +1 -1
  192. package/dist/web-components/p-e0e2f2b2.entry.js +1 -0
  193. package/dist/web-components/{p-8d6a35e3.entry.js → p-e49b1ec3.entry.js} +1 -1
  194. package/dist/web-components/p-e4b66277.entry.js +1 -0
  195. package/dist/web-components/p-e6a31881.entry.js +1 -0
  196. package/dist/web-components/{p-05ba30ba.entry.js → p-f1e22caa.entry.js} +1 -1
  197. package/dist/web-components/p-f6a92287.entry.js +1 -0
  198. package/dist/web-components/p-f770e22b.entry.js +1 -0
  199. package/dist/web-components/p-f7adb875.entry.js +1 -0
  200. package/dist/web-components/web-components.esm.js +1 -1
  201. package/package.json +2 -1
  202. package/dist/web-components/p-0ac858b8.entry.js +0 -1
  203. package/dist/web-components/p-0bb0de18.entry.js +0 -1
  204. package/dist/web-components/p-10724c18.entry.js +0 -1
  205. package/dist/web-components/p-1ed3efd7.entry.js +0 -1
  206. package/dist/web-components/p-20f979ff.entry.js +0 -1
  207. package/dist/web-components/p-31c8388d.entry.js +0 -1
  208. package/dist/web-components/p-333707b2.entry.js +0 -1
  209. package/dist/web-components/p-61f78bf6.entry.js +0 -1
  210. package/dist/web-components/p-8f719321.entry.js +0 -1
  211. package/dist/web-components/p-9f583ed1.entry.js +0 -1
  212. package/dist/web-components/p-CTxpqopm.js +0 -2
  213. package/dist/web-components/p-caca2855.entry.js +0 -1
  214. package/dist/web-components/p-ef0f43e0.entry.js +0 -1
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-BnETQtSf.js');
3
+ var index = require('./index-DJ4H_bFj.js');
4
4
 
5
5
  const hintCss = ":host{--r-hint--text--flex:1}:host([variant=information]){--r-hint--color:var(--r-text-soft, #686868)}:host([variant=success]),:host([success]){--r-hint--color:var(--r-status-success-regular, #298535)}:host([variant=warning]),:host([warning]){--r-hint--color:var(--r-status-warning-strong, #89411a)}:host([variant=error]),:host([invalid]){--r-hint--color:var(--r-status-error-regular, #da1e28)}:host([icon-position=end]){--r-hint--flex-direction:row-reverse}:host{display:block}.r-hint{display:var(--r-hint--display, flex);flex-direction:var(--r-hint--flex-direction, row);gap:var(--r-hint--gap, var(--r-spacing-050, 0.5rem));font-family:var(--r-hint--font-family, var(--r-font-family-text, system-ui));font-size:var(--r-hint--font-size, var(--r-font-size-300, 0.875rem));line-height:var(--r-hint--line-height, var(--r-line-height-m, 1.5));color:var(--r-hint--color, var(--r-text-soft, #686868));font-weight:var(--r-hint--font-weight, var(--r-font-weight-regular, 400));margin-top:var(--r-hint--margin-top, 0);margin-bottom:var(--r-hint--margin-bottom, 0)}.r-hint--icon{display:var(--r-hint--icon--display, flex);align-items:var(--r-hint--icon--align-items, start);min-width:var(--r-hint--icon--min-width, 1rem);margin-top:var(--r-hint--icon--margin-top, 0.15rem)}.r-hint--text{flex:var(--r-hint--text--flex, 1)}.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}";
6
6
 
@@ -57,14 +57,14 @@ const RLabel = class {
57
57
  size: 's',
58
58
  color: tooltipIconColor
59
59
  };
60
- return (index.h(index.Host, { key: '06097c8d9963d79b783b245a934832e3f8e7596b' }, index.h("div", { key: '2a3a8ddd22fddedb8e7a7472f81c05201ea26a77', class: "r-label" }, index.h("span", { key: '9d1814759bb2b3f8784a73aa75b215a19985f482', class: "r-label--slot" }, index.h("slot", { key: 'd472e83f02841c979bbfcc36c54068141de0d380' }), fieldIndicator &&
61
- index.h("span", { key: 'f275ed855ebd8a684a35ce9b074b0e04471dcfe2', class: "r-label--marker" }, fieldIndicator)), tooltip &&
62
- index.h("span", { key: 'aa336cbb979d0866e8f586c1596b9d9f38925023', class: "r-label--tooltip-icon" }, index.h("r-tooltip", Object.assign({ key: '245cd576fadb1b31ca2041a9b3d9b5a9a63e381d' }, tooltipAttrs), index.h("r-icon", Object.assign({ key: 'f83ce1d9d0ab51b3c5394866b01b1998559ddc68' }, tooltipIconAttrs)))))));
60
+ return (index.h(index.Host, { key: '2d7da94197a774e5b3399ff59dba01f946f0d8df' }, index.h("div", { key: '56baaf39a736e1f504502c9f49b4cf5fbff2f911', class: "r-label" }, index.h("span", { key: '5b0032c31e83b628d73a207eeaa915368edc7237', class: "r-label--slot" }, index.h("slot", { key: 'fbcd30c185b9eef55ea43c8ca8b082a0308953e2' }), fieldIndicator &&
61
+ index.h("span", { key: '0d355d5857e515e735dc543d3416540e0a0ffdba', class: "r-label--marker" }, fieldIndicator)), tooltip &&
62
+ index.h("span", { key: 'b450b3e7ee2b33dbdc02d9fce04bd2ef6a97713d', class: "r-label--tooltip-icon" }, index.h("r-tooltip", Object.assign({ key: 'a1b2a24a312b7eabd5acd43273658bce3199ef1b' }, tooltipAttrs), index.h("r-icon", Object.assign({ key: 'c22f6349b9c67a82b29f4a5758a77fb1b2910b75' }, tooltipIconAttrs)))))));
63
63
  }
64
64
  };
65
65
  RLabel.style = labelCss;
66
66
 
67
- const tooltipCss = ":host{display:inline-block;--r-tooltip--position:relative;--r-tooltip--content--position:absolute;--r-tooltip--content--top:auto;--r-tooltip--content--right:auto;--r-tooltip--content--bottom:auto;--r-tooltip--content--left:auto;--r-tooltip--content--display:none;--r-tooltip--content--content:attr(tooltip-data);--r-tooltip--content--color:var(--r-text-inverse);--r-tooltip--content--background-color:var(--r-background-inverse);--r-tooltip--content--font-family:var(--r-font-family-text);--r-tooltip--content--font-weight:var(--r-font-weight-regular);--r-tooltip--content--font-size:var(--r-font-size-200);--r-tooltip--content--line-height:var(--r-line-height-s);--r-tooltip--content--min-width:32px;--r-tooltip--content--max-width:300px;--r-tooltip--content--min-height:32px;--r-tooltip--content--padding:var(--r-spacing-050) var(--r-spacing-100);--r-tooltip--content--width:max-content;--r-tooltip--content--word-break:break-word;--r-tooltip--content--box-sizing:border-box;--r-tooltip--content--justify-content:center;--r-tooltip--content--align-items:center;--r-tooltip--content--z-index:0;--r-tooltip--content--transform:none;--r-tooltip--arrow--display:none;--r-tooltip--arrow--position:absolute;--r-tooltip--arrow--top:auto;--r-tooltip--arrow--right:auto;--r-tooltip--arrow--bottom:auto;--r-tooltip--arrow--left:50%;--r-tooltip--arrow--width:12px;--r-tooltip--arrow--height:6px;--r-tooltip--arrow--transform:translateX(-50%) rotate(180deg);--r-tooltip--arrow--inner-content:\"\";--r-tooltip--arrow--inner--width:12px;--r-tooltip--arrow--inner--height:6px;--r-tooltip--arrow--inner--background-color:var(--r-tooltip--content--background-color);--r-tooltip--arrow--inner--clip-path:polygon(50% 0%, 0% 100%, 100% 100%);--r-tooltip--arrow--inner--border-radius:0;--r-tooltip--arrow--inner--align-self:flex-end}:host slot{display:contents}:host([data-arrow-position=left]){--r-tooltip--content--left:- var(--r-spacing-100)}:host([data-arrow-position=right]){--r-tooltip--content--right:- var(--r-spacing-100)}:host([data-arrow-position=center]){--r-tooltip--content--left:50%;--r-tooltip--content--transform:translate(-50%)}:host([data-position=top]){--r-tooltip--content--bottom:calc(100% + var(--r-spacing-075));--r-tooltip--arrow--bottom:100%;--r-tooltip--arrow--height:calc(var(--r-tooltip--arrow--inner--height) + 1.5 * var(--r-spacing-025))}:host([data-position=top][data-arrow-position=right]){--r-tooltip--content--right:0;--r-tooltip--content--left:unset}:host([data-position=bottom]){--r-tooltip--content--top:calc(100% + var(--r-spacing-075));--r-tooltip--arrow--top:100%;--r-tooltip--arrow--height:calc(var(--r-tooltip--arrow--inner--height) + 1.6 * var(--r-spacing-025));--r-tooltip--arrow--transform:translateX(-50%) rotate(0)}:host([data-position=bottom][data-arrow-position=right]){--r-tooltip--content--right:0;--r-tooltip--content--left:unset}:host([data-position=right]){--r-tooltip--content--left:calc(100% + var(--r-tooltip--arrow--height) + 0.1875rem);--r-tooltip--arrow--left:100%;--r-tooltip--arrow--transform:rotate(270deg)}:host([data-position=left]){--r-tooltip--content--right:calc(100% + var(--r-tooltip--arrow--height) + 0.1875rem);--r-tooltip--content--left:unset;--r-tooltip--arrow--right:100%;--r-tooltip--arrow--left:unset;--r-tooltip--arrow--transform:rotate(90deg)}:host([data-position=right]),:host([data-position=left]){--r-tooltip--content--top:50%;--r-tooltip--content--transform:translateY(-50%);--r-tooltip--arrow--top:calc(50% - calc(var(--r-tooltip--arrow--height)/2))}.r-tooltip{position:var(--r-tooltip--position)}.r-tooltip:has(.r-tooltip--content--visible){--r-tooltip--content--width:max-content;--r-tooltip--content--display:flex;--r-tooltip--content--z-index:1060;--r-tooltip--arrow--display:flex;--r-tooltip--arrow--inner--display:block}.r-tooltip--trigger{color:var(--r-tooltip--trigger--color, inherit);box-shadow:var(--r-tooltip--trigger--box-shadow, none);outline:var(--r-tooltip--trigger--outline, none);outline-offset:var(--r-tooltip--trigger--outline-offset, 0)}.r-tooltip--trigger:focus{--r-tooltip--trigger--box-shadow:0 0 0 6px var(--r-border-focused-outlined);--r-tooltip--trigger--outline:2px solid var(--r-border-focused);--r-tooltip--trigger--outline-offset:2px}.r-tooltip--content{position:var(--r-tooltip--content--position);top:var(--r-tooltip--content--top);right:var(--r-tooltip--content--right);bottom:var(--r-tooltip--content--bottom);left:var(--r-tooltip--content--left);display:var(--r-tooltip--content--display);content:var(--r-tooltip--content--content);color:var(--r-tooltip--content--color);background-color:var(--r-tooltip--content--background-color);font-family:var(--r-tooltip--content--font-family);font-weight:var(--r-tooltip--content--font-weight);font-size:var(--r-tooltip--content--font-size);line-height:var(--r-tooltip--content--line-height);min-width:var(--r-tooltip--content--min-width);max-width:var(--r-tooltip--content--max-width);min-height:var(--r-tooltip--content--min-height);padding:var(--r-tooltip--content--padding);width:var(--r-tooltip--content--width);word-break:var(--r-tooltip--content--word-break);box-sizing:var(--r-tooltip--content--box-sizing);z-index:var(--r-tooltip--content--z-index);transform:var(--r-tooltip--content--transform)}.r-tooltip--arrow{display:var(--r-tooltip--arrow--display);position:var(--r-tooltip--arrow--position);width:var(--r-tooltip--arrow--width);height:var(--r-tooltip--arrow--height);top:var(--r-tooltip--arrow--top);right:var(--r-tooltip--arrow--right);bottom:var(--r-tooltip--arrow--bottom);left:var(--r-tooltip--arrow--left);transform:var(--r-tooltip--arrow--transform)}.r-tooltip--arrow:after{content:var(--r-tooltip--arrow--inner-content);display:var(--r-tooltip--arrow--inner--display);width:var(--r-tooltip--arrow--inner--width);height:var(--r-tooltip--arrow--inner--height);background-color:var(--r-tooltip--arrow--inner--background-color);clip-path:var(--r-tooltip--arrow--inner--clip-path);border-radius:var(--r-tooltip--arrow--inner--border-radius);align-self:var(--r-tooltip--arrow--inner--align-self)}";
67
+ const tooltipCss = ":host{display:inline-block;--r-tooltip--position:relative;--r-tooltip--content--position:fixed;--r-tooltip--content--display:none;--r-tooltip--content--color:var(--r-text-inverse);--r-tooltip--content--background-color:var(--r-background-inverse);--r-tooltip--content--font-family:var(--r-font-family-text);--r-tooltip--content--font-weight:var(--r-font-weight-regular);--r-tooltip--content--font-size:var(--r-font-size-200);--r-tooltip--content--line-height:var(--r-line-height-s);--r-tooltip--content--min-width:32px;--r-tooltip--content--max-width:300px;--r-tooltip--content--min-height:32px;--r-tooltip--content--padding:var(--r-spacing-050) var(--r-spacing-100);--r-tooltip--content--width:max-width;--r-tooltip--content--word-break:break-word;--r-tooltip--content--box-sizing:border-box;--r-tooltip--content--justify-content:center;--r-tooltip--content--align-items:center;--r-tooltip--content--z-index:0;--r-tooltip--arrow--display:none;--r-tooltip--arrow--position:fixed;--r-tooltip--arrow--width:12px;--r-tooltip--arrow--height:12px;--r-tooltip--arrow--transform:rotate(180deg);--r-tooltip--arrow--inner-content:\"\";--r-tooltip--arrow--inner--width:12px;--r-tooltip--arrow--inner--height:6px;--r-tooltip--arrow--inner--background-color:var(--r-tooltip--content--background-color);--r-tooltip--arrow--inner--clip-path:polygon(50% 0%, 0% 100%, 100% 100%);--r-tooltip--arrow--inner--border-radius:0;--r-tooltip--arrow--inner--align-self:flex-end}:host slot{display:contents}:host([data-position=bottom]){--r-tooltip--arrow--transform:rotate(0)}:host([data-position=right]){--r-tooltip--arrow--transform:rotate(270deg)}:host([data-position=left]){--r-tooltip--arrow--transform:rotate(90deg)}.r-tooltip{position:var(--r-tooltip--position)}.r-tooltip:has(.r-tooltip--content--visible){--r-tooltip--content--width:max-content;--r-tooltip--content--display:flex;--r-tooltip--content--z-index:1060;--r-tooltip--arrow--display:flex;--r-tooltip--arrow--inner--display:block}.r-tooltip--trigger{color:var(--r-tooltip--trigger--color, inherit);box-shadow:var(--r-tooltip--trigger--box-shadow, none);outline:var(--r-tooltip--trigger--outline, none);outline-offset:var(--r-tooltip--trigger--outline-offset, 0)}.r-tooltip--trigger:focus{--r-tooltip--trigger--box-shadow:0 0 0 6px var(--r-border-focused-outlined);--r-tooltip--trigger--outline:2px solid var(--r-border-focused);--r-tooltip--trigger--outline-offset:2px}.r-tooltip--content{position:var(--r-tooltip--content--position);display:var(--r-tooltip--content--display);color:var(--r-tooltip--content--color);background-color:var(--r-tooltip--content--background-color);font-family:var(--r-tooltip--content--font-family);font-weight:var(--r-tooltip--content--font-weight);font-size:var(--r-tooltip--content--font-size);line-height:var(--r-tooltip--content--line-height);min-width:var(--r-tooltip--content--min-width);max-width:var(--r-tooltip--content--max-width);min-height:var(--r-tooltip--content--min-height);padding:var(--r-tooltip--content--padding);width:var(--r-tooltip--content--width);word-break:var(--r-tooltip--content--word-break);box-sizing:var(--r-tooltip--content--box-sizing);z-index:var(--r-tooltip--content--z-index)}.r-tooltip--arrow{display:var(--r-tooltip--arrow--display);position:var(--r-tooltip--arrow--position);width:var(--r-tooltip--arrow--width);height:var(--r-tooltip--arrow--height);transform:var(--r-tooltip--arrow--transform)}.r-tooltip--arrow:after{content:var(--r-tooltip--arrow--inner-content);display:var(--r-tooltip--arrow--inner--display);width:var(--r-tooltip--arrow--inner--width);height:var(--r-tooltip--arrow--inner--height);background-color:var(--r-tooltip--arrow--inner--background-color);clip-path:var(--r-tooltip--arrow--inner--clip-path);border-radius:var(--r-tooltip--arrow--inner--border-radius);align-self:var(--r-tooltip--arrow--inner--align-self)}";
68
68
 
69
69
  const OFFSET = 20;
70
70
  const Tooltip = class {
@@ -78,6 +78,71 @@ const Tooltip = class {
78
78
  this.arrowPositionState = 'left';
79
79
  this.isShown = false;
80
80
  this.uniqueId = `r-tooltip-${Date.now().toString(32)}${Math.random().toString(32)}`.replace(/\./g, '');
81
+ this.getOffsetLeft = (arrowPosition) => {
82
+ var _a, _b, _c;
83
+ const offsetLeft = Math.abs(((_a = this.element) === null || _a === void 0 ? void 0 : _a.getBoundingClientRect().width) - ((_c = (_b = this.tooltip) === null || _b === void 0 ? void 0 : _b.getBoundingClientRect()) === null || _c === void 0 ? void 0 : _c.width));
84
+ switch (arrowPosition) {
85
+ case 'center':
86
+ return offsetLeft / 2;
87
+ case 'right':
88
+ return offsetLeft;
89
+ default:
90
+ return 0;
91
+ }
92
+ };
93
+ this.alignTooltipPosition = () => {
94
+ var _a, _b, _c, _d, _e, _f, _g;
95
+ const offsetHeight = Math.abs(((_a = this.element) === null || _a === void 0 ? void 0 : _a.getBoundingClientRect().height) - ((_c = (_b = this.tooltip) === null || _b === void 0 ? void 0 : _b.getBoundingClientRect()) === null || _c === void 0 ? void 0 : _c.height)) / 2;
96
+ const offsetLeft = this.getOffsetLeft(this.arrowPositionState);
97
+ const hostHeight = ((_e = (_d = this.element) === null || _d === void 0 ? void 0 : _d.getBoundingClientRect()) === null || _e === void 0 ? void 0 : _e.height) + this.arrowHeight || 0;
98
+ const hostWidth = ((_g = (_f = this.element) === null || _f === void 0 ? void 0 : _f.getBoundingClientRect()) === null || _g === void 0 ? void 0 : _g.width) + this.arrowWidth || 0;
99
+ switch (this.positionState) {
100
+ case 'top':
101
+ this.alignPosition(this.tooltip, -offsetLeft, -this.tooltipContainerHeight);
102
+ break;
103
+ case 'bottom':
104
+ this.alignPosition(this.tooltip, -offsetLeft, hostHeight);
105
+ break;
106
+ case 'left':
107
+ this.alignPosition(this.tooltip, -this.tooltipContainerWidth, -offsetHeight);
108
+ break;
109
+ case 'right':
110
+ this.alignPosition(this.tooltip, hostWidth, -offsetHeight);
111
+ break;
112
+ }
113
+ };
114
+ this.alignArrowPosition = () => {
115
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
116
+ const offsetHeight = Math.abs(((_a = this.element) === null || _a === void 0 ? void 0 : _a.getBoundingClientRect().height) - ((_c = (_b = this.arrow) === null || _b === void 0 ? void 0 : _b.getBoundingClientRect()) === null || _c === void 0 ? void 0 : _c.height)) / 2;
117
+ const offsetLeft = Math.abs(((_d = this.element) === null || _d === void 0 ? void 0 : _d.getBoundingClientRect().width) - ((_f = (_e = this.arrow) === null || _e === void 0 ? void 0 : _e.getBoundingClientRect()) === null || _f === void 0 ? void 0 : _f.width)) / 2;
118
+ const hostHeight = ((_h = (_g = this.element) === null || _g === void 0 ? void 0 : _g.getBoundingClientRect()) === null || _h === void 0 ? void 0 : _h.height) || 0;
119
+ const hostWidth = ((_k = (_j = this.element) === null || _j === void 0 ? void 0 : _j.getBoundingClientRect()) === null || _k === void 0 ? void 0 : _k.width) || 0;
120
+ switch (this.positionState) {
121
+ case 'top':
122
+ this.alignPosition(this.arrow, offsetLeft, -this.arrowHeight);
123
+ break;
124
+ case 'bottom':
125
+ this.alignPosition(this.arrow, offsetLeft, hostHeight);
126
+ break;
127
+ case 'left':
128
+ this.alignPosition(this.arrow, -this.arrowWidth, offsetHeight);
129
+ break;
130
+ case 'right':
131
+ this.alignPosition(this.arrow, hostWidth, offsetHeight);
132
+ break;
133
+ }
134
+ };
135
+ this.alignPosition = (element, offsetLeft, offsetTop) => {
136
+ var _a;
137
+ if (!element) {
138
+ return;
139
+ }
140
+ let elementOffset = (_a = this.element) === null || _a === void 0 ? void 0 : _a.getBoundingClientRect();
141
+ let left = elementOffset.left + offsetLeft;
142
+ let top = elementOffset.top + offsetTop;
143
+ element.style.left = `${left > 0 ? left : 0}px`;
144
+ element.style.top = `${top}px`;
145
+ };
81
146
  /**
82
147
  * Listen on hovering tooltip element and update tooltip position if needed
83
148
  */
@@ -95,11 +160,22 @@ const Tooltip = class {
95
160
  };
96
161
  this.showTooltip = () => {
97
162
  this.isShown = true;
98
- this.tooltipValue.classList.add('r-tooltip--content--visible');
163
+ this.tooltip.classList.add('r-tooltip--content--visible');
99
164
  };
100
165
  this.removeTooltip = () => {
101
166
  this.isShown = false;
102
- this.tooltipValue.classList.remove('r-tooltip--content--visible');
167
+ this.tooltip.style.width = 'max-content';
168
+ this.tooltip.classList.remove('r-tooltip--content--visible');
169
+ };
170
+ this.handleScroll = () => {
171
+ if (!this.isShown) {
172
+ return;
173
+ }
174
+ if (!this.isOnScreen) {
175
+ this.removeTooltip();
176
+ return;
177
+ }
178
+ this.setCorrectPosition();
103
179
  };
104
180
  }
105
181
  /**
@@ -128,30 +204,47 @@ const Tooltip = class {
128
204
  this.removeTooltip();
129
205
  }
130
206
  }
131
- /**
132
- * Tooltip element value
133
- */
134
- get tooltipValue() {
135
- var _a, _b;
136
- return (_b = (_a = this.element) === null || _a === void 0 ? void 0 : _a.shadowRoot) === null || _b === void 0 ? void 0 : _b.getElementById(this.uniqueId);
137
- }
138
207
  /**
139
208
  * Parent with non visible overflow
140
209
  */
141
210
  get overflowedParent() {
142
211
  return this.findOverflowParent(this.element.parentElement);
143
212
  }
213
+ get arrowWidth() {
214
+ var _a;
215
+ return ((_a = this.arrow) === null || _a === void 0 ? void 0 : _a.getBoundingClientRect().width) || 0;
216
+ }
217
+ get arrowHeight() {
218
+ var _a;
219
+ return ((_a = this.arrow) === null || _a === void 0 ? void 0 : _a.getBoundingClientRect().height) || 0;
220
+ }
221
+ get tooltipContainerWidth() {
222
+ var _a, _b;
223
+ return ((_b = (_a = this.tooltip) === null || _a === void 0 ? void 0 : _a.getBoundingClientRect()) === null || _b === void 0 ? void 0 : _b.width) + this.arrowWidth || 0;
224
+ }
225
+ get tooltipContainerHeight() {
226
+ var _a, _b;
227
+ return ((_b = (_a = this.tooltip) === null || _a === void 0 ? void 0 : _a.getBoundingClientRect()) === null || _b === void 0 ? void 0 : _b.height) + this.arrowHeight || 0;
228
+ }
144
229
  /**
145
230
  * Available space at the top
146
231
  */
147
232
  get top() {
148
- return !this.overflowedParent ? this.element.getBoundingClientRect().top : Math.abs(this.overflowedParent.getBoundingClientRect().top - this.element.getBoundingClientRect().top);
233
+ return this.element.getBoundingClientRect().top;
149
234
  }
150
235
  /**
151
236
  * Available space on the left
152
237
  */
153
238
  get left() {
154
- return !this.overflowedParent ? this.element.getBoundingClientRect().left : Math.abs(this.overflowedParent.getBoundingClientRect().left - this.element.getBoundingClientRect().left);
239
+ return this.element.getBoundingClientRect().left;
240
+ }
241
+ get isOnScreen() {
242
+ const parent = this.overflowedParent || document.documentElement;
243
+ const parentRect = parent.getBoundingClientRect();
244
+ const elementRect = this.element.getBoundingClientRect();
245
+ const isVerticallyVisible = elementRect.top >= parentRect.top && elementRect.bottom <= parentRect.bottom;
246
+ const isHorizontallyVisible = elementRect.left >= parentRect.left && elementRect.right <= parentRect.right;
247
+ return isVerticallyVisible && isHorizontallyVisible;
155
248
  }
156
249
  /**
157
250
  * Available space at the bottom
@@ -160,7 +253,7 @@ const Tooltip = class {
160
253
  function calculateBottomSpace(element) {
161
254
  return window.innerHeight - element.getBoundingClientRect().top - element.getBoundingClientRect().height;
162
255
  }
163
- return !this.overflowedParent ? calculateBottomSpace(this.element) : Math.abs(calculateBottomSpace(this.overflowedParent) - calculateBottomSpace(this.element));
256
+ return calculateBottomSpace(this.element);
164
257
  }
165
258
  /**
166
259
  * Available space on the right
@@ -169,35 +262,31 @@ const Tooltip = class {
169
262
  function calculateRightSpace(element) {
170
263
  return window.innerWidth - element.getBoundingClientRect().left - element.getBoundingClientRect().width;
171
264
  }
172
- return !this.overflowedParent ? calculateRightSpace(this.element) : Math.abs(calculateRightSpace(this.overflowedParent) - calculateRightSpace(this.element));
265
+ return calculateRightSpace(this.element);
173
266
  }
174
267
  /**
175
268
  * Defines which horizontal placement is available
176
269
  */
177
270
  get horizontalPlacement() {
178
- var _a;
179
- return ((_a = this.tooltipValue) === null || _a === void 0 ? void 0 : _a.offsetWidth) + OFFSET < this.left ? 'left' : 'right';
271
+ return this.tooltipContainerWidth + OFFSET < this.left ? 'left' : 'right';
180
272
  }
181
273
  /**
182
274
  * Defines which vertical placement is available
183
275
  */
184
276
  get verticalPlacement() {
185
- var _a;
186
- return ((_a = this.tooltipValue) === null || _a === void 0 ? void 0 : _a.offsetHeight) + OFFSET < this.top ? 'top' : 'bottom';
277
+ return this.tooltipContainerHeight + OFFSET < this.top ? 'top' : 'bottom';
187
278
  }
188
279
  /**
189
280
  * Checks if there is enough space for placing tooltip vertically
190
281
  */
191
282
  get isEnoughSpaceVertically() {
192
- var _a, _b;
193
- return ((_a = this.tooltipValue) === null || _a === void 0 ? void 0 : _a.offsetHeight) + OFFSET < this.top || ((_b = this.tooltipValue) === null || _b === void 0 ? void 0 : _b.offsetHeight) + OFFSET < this.bottom;
283
+ return this.tooltipContainerHeight + OFFSET < this.top || this.tooltipContainerHeight + OFFSET < this.bottom;
194
284
  }
195
285
  /**
196
286
  * Checks if there is enough space for placing tooltip horizontally
197
287
  */
198
288
  get isEnoughSpaceHorizontally() {
199
- var _a, _b;
200
- return ((_a = this.tooltipValue) === null || _a === void 0 ? void 0 : _a.offsetWidth) + OFFSET < this.left || ((_b = this.tooltipValue) === null || _b === void 0 ? void 0 : _b.offsetWidth) + OFFSET < this.right;
289
+ return this.tooltipContainerWidth + OFFSET < this.left || this.tooltipContainerWidth + OFFSET < this.right;
201
290
  }
202
291
  get activeElement() {
203
292
  return this.element.querySelector('r-button, r-icon-button, a, button, [tabindex]:not([tabindex="-1"])');
@@ -212,13 +301,16 @@ const Tooltip = class {
212
301
  * Listen to active child element
213
302
  */
214
303
  componentDidLoad() {
215
- var _a, _b;
304
+ var _a, _b, _c;
216
305
  (_a = this.activeElement) === null || _a === void 0 ? void 0 : _a.addEventListener('focus', () => {
217
306
  this.handleFocus();
218
307
  });
219
308
  (_b = this.activeElement) === null || _b === void 0 ? void 0 : _b.addEventListener('blur', () => {
220
309
  this.removeTooltip();
221
310
  });
311
+ (_c = this.overflowedParent) === null || _c === void 0 ? void 0 : _c.addEventListener('scroll', () => {
312
+ this.handleScroll();
313
+ });
222
314
  }
223
315
  /**
224
316
  * Finds first element's parent with not visible overflow.
@@ -267,25 +359,32 @@ const Tooltip = class {
267
359
  * First it checks the available space for a defined position and then sets the new one based on the available space.
268
360
  */
269
361
  setCorrectPosition() {
270
- var _a, _b, _c, _d;
271
- if (!this.tooltipValue || !this.isShown) {
362
+ if (!this.tooltip || !this.isShown) {
272
363
  return;
273
364
  }
274
365
  switch (this.position) {
275
366
  case 'top':
276
- this.positionState = ((_a = this.tooltipValue) === null || _a === void 0 ? void 0 : _a.offsetHeight) + OFFSET < this.top ? this.position : this.getAlternativePosition();
367
+ this.positionState = this.tooltipContainerHeight + OFFSET < this.top ? this.position : this.getAlternativePosition();
277
368
  break;
278
369
  case 'bottom':
279
- this.positionState = ((_b = this.tooltipValue) === null || _b === void 0 ? void 0 : _b.offsetHeight) + OFFSET < this.bottom ? this.position : this.getAlternativePosition();
370
+ this.positionState = this.tooltipContainerHeight + OFFSET < this.bottom ? this.position : this.getAlternativePosition();
280
371
  break;
281
372
  case 'left':
282
- this.positionState = ((_c = this.tooltipValue) === null || _c === void 0 ? void 0 : _c.offsetWidth) + OFFSET < this.left ? this.position : this.getAlternativePosition();
373
+ this.positionState = this.tooltipContainerWidth + OFFSET < this.left ? this.position : this.getAlternativePosition();
283
374
  break;
284
375
  case 'right':
285
- this.positionState = ((_d = this.tooltipValue) === null || _d === void 0 ? void 0 : _d.offsetWidth) + OFFSET < this.right ? this.position : this.getAlternativePosition();
376
+ this.positionState = this.tooltipContainerWidth + OFFSET < this.right ? this.position : this.getAlternativePosition();
286
377
  break;
287
378
  }
288
379
  this.adjustArrowPosition();
380
+ this.alignTooltipPosition();
381
+ this.alignArrowPosition();
382
+ // allow tooltip content wrap and recalculate position
383
+ if (this.tooltip.style.width === 'fit-content') {
384
+ return;
385
+ }
386
+ this.tooltip.style.width = 'fit-content';
387
+ this.alignTooltipPosition();
289
388
  }
290
389
  /**
291
390
  * Adjusts arrow correct position.
@@ -293,10 +392,9 @@ const Tooltip = class {
293
392
  * For right & left tooltip positions there is only one position = "center".
294
393
  */
295
394
  adjustArrowPosition() {
296
- var _a, _b;
297
- const isEnoughTooltipSpaceLeft = ((_a = this.tooltipValue) === null || _a === void 0 ? void 0 : _a.offsetWidth) / 2 + OFFSET < this.left;
298
- const isEnoughTooltipSpaceRight = ((_b = this.tooltipValue) === null || _b === void 0 ? void 0 : _b.offsetWidth) / 2 + OFFSET < this.right;
299
- if (isEnoughTooltipSpaceLeft && isEnoughTooltipSpaceRight || this.positionState === 'left' || this.positionState === 'right') {
395
+ const isEnoughTooltipSpaceLeft = this.tooltipContainerWidth / 2 + OFFSET < this.left;
396
+ const isEnoughTooltipSpaceRight = this.tooltipContainerWidth / 2 + OFFSET < this.right;
397
+ if (isEnoughTooltipSpaceLeft && isEnoughTooltipSpaceRight || !isEnoughTooltipSpaceLeft && !isEnoughTooltipSpaceRight || this.positionState === 'left' || this.positionState === 'right') {
300
398
  this.arrowPositionState = 'center';
301
399
  }
302
400
  else if (!isEnoughTooltipSpaceLeft) {
@@ -322,7 +420,7 @@ const Tooltip = class {
322
420
  role: 'tooltip',
323
421
  'aria-hidden': `${!isShown}`
324
422
  };
325
- return (index.h(index.Host, Object.assign({ key: 'e168f9f1212433eb17769c11260f546e441ca274' }, hostAttrs, { onMouseenter: this.handleHover, onMouseleave: this.removeTooltip }), index.h("div", { key: 'b8ea713c2b09b6053af73ac7d26a30f210c90e94', class: "r-tooltip" }, index.h("div", Object.assign({ key: '19cc679ec640dc98f167077e0bab16423e186258', class: "r-tooltip--trigger", onFocus: this.handleFocus, onBlur: this.removeTooltip }, triggerAttrs), index.h("slot", { key: '17266fefef386f3b417d8e7d112e0345aa98e878' })), index.h("div", Object.assign({ key: 'e53283c02be43833362277fc8fe78e99c4a9adba', class: "r-tooltip--content" }, contentAttrs), text), index.h("div", { key: '98f1caf44ec7bd286cb8126022692d825f4ab617', class: "r-tooltip--arrow" }))));
423
+ return (index.h(index.Host, Object.assign({ key: 'f0b2e0117f0604d325becbcc05686433fbd3d506' }, hostAttrs, { onMouseenter: this.handleHover, onMouseleave: this.removeTooltip }), index.h("div", { key: '2f5ff7638dedddd04dac78a2131438457211354b', class: "r-tooltip" }, index.h("div", Object.assign({ key: 'cb562089f6e7ac27b99ba09953c2f28f29e3e649', class: "r-tooltip--trigger", onFocus: this.handleFocus, onBlur: this.removeTooltip }, triggerAttrs), index.h("slot", { key: '2e09b16563b9aa325ff64f10af1ad5f4728a2417' })), index.h("div", Object.assign({ key: 'ffe53881e5ec5335073a7adf2ed5479f3a56f00f', class: "r-tooltip--content", ref: (el) => this.tooltip = el }, contentAttrs), text), index.h("div", { key: '3f85fb76e934b18d5963d125699d00776c6abbac', ref: (el) => this.arrow = el, class: "r-tooltip--arrow" }))));
326
424
  }
327
425
  get element() { return index.getElement(this); }
328
426
  static get watchers() { return {
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-BnETQtSf.js');
3
+ var index = require('./index-DJ4H_bFj.js');
4
4
 
5
5
  const iconButtonCss = ":host{display:inline-flex;vertical-align:top;--r-icon-button--color:inherit}:host(:hover:not([disabled]:not([disabled=false])):not(:active)){--r-icon-button--background-color:var(--r-background-interactive-hovered, rgba(40, 40, 40, 0.04));--r-icon-button--border-color:var(--r-border-soft, #686868)}:host(:active:not([disabled]:not([disabled=false]))){--r-icon-button--background-color:var(--r-background-interactive-pressed, rgba(40, 40, 40, 0.12));--r-icon-button--border-color:var(--r-border-soft, #686868)}:host(:focus-within:not(:active):not([disabled]:not([disabled=false]))){box-shadow:0 0 0 6px var(--r-border-focused-outlined, #fff);outline:2px solid var(--r-border-focused, #0071e3);outline-offset:2px}:host([disabled]:not([disabled=false])){opacity:0.4;--r-icon-button--cursor:not-allowed;--r-icon-button--box-shadow:none;--r-icon-button--background-color:transparent;--r-icon-button--border-color:transparent}:host([variant=contained]){--r-icon-button--color:var(--r-icon-inverse, #fff);--r-icon-button--background-color:var(--r-background-interactive-regular, #282828);--r-icon-button--border-color:var(--r-border-transparent, transparent);--r-icon-button--box-shadow:none}:host([variant=contained]:hover:not([disabled]:not([disabled=false]))){--r-icon-button--color:var(--r-icon-regular, #282828);--r-icon-button--background-color:var(--r-background-interactive-hovered, rgba(40, 40, 40, 0.04));--r-icon-button--border-color:var(--r-border-soft, #686868)}:host([variant=contained]:active:not([disabled]:not([disabled=false]))){--r-icon-button--color:var(--r-icon-regular, #282828);--r-icon-button--background-color:var(--r-background-interactive-pressed, rgba(40, 40, 40, 0.12));--r-icon-button--border-color:var(--r-border-soft, #686868)}:host([variant=contained][disabled]:not([disabled=false])){--r-icon-button--color:var(--r-icon-inverse, #fff);--r-icon-button--background-color:var(--r-background-interactive-regular, #282828);--r-icon-button--border-color:transparent}:host([size=s]){--r-icon-button--height:1.5rem;--r-icon-button--width:1.5rem}:host([size=m]){--r-icon-button--height:2.25rem;--r-icon-button--width:2.25rem}:host([size=l]){--r-icon-button--height:2.75rem;--r-icon-button--width:2.75rem}.r-icon-button{display:var(--r-icon-button--display, inline-flex);align-items:var(--r-icon-button--align-items, center);justify-content:var(--r-icon-button--justify-content, center);outline:var(--r-icon-button--outline, none);cursor:var(--r-icon-button--cursor, pointer);pointer-events:var(--r-icon-button--pointer-events, initial);padding:var(--r-icon-button--padding, 0);border:var(--r-icon-button--border, none);color:var(--r-icon-button--color, inherit);background-color:var(--r-icon-button--background-color, transparent);box-sizing:var(--r-icon-button--box-sizing, border-box);border-width:var(--r-icon-button--border-width, 1px);border-style:var(--r-icon-button--border-style, solid);border-color:var(--r-icon-button--border-color, transparent);border-radius:var(--r-icon-button--border-radius, 50%);z-index:var(--r-icon-button--z-index, initial);width:var(--r-icon-button--width, 2.25rem);height:var(--r-icon-button--height, 2.25rem)}.r-icon-button--target-area{position:var(--r-icon-button--target-area--position, absolute);background:var(--r-icon-button--target-area--background, rgba(0, 0, 0, 0));width:var(--r-icon-button--target-area--width, 2.75rem);height:var(--r-icon-button--target-area--height, 2.75rem);z-index:var(--r-icon-button--target-area--z-index, 1)}.r-icon-button--icon{display:flex;align-items:center;justify-content:center}.visually-hidden{position:absolute;width:1px;height:1px;clip:rect(0 0 0 0);clip-path:inset(50%);overflow:hidden;white-space:nowrap}";
6
6
 
@@ -65,11 +65,11 @@ const IconButton = class {
65
65
  name,
66
66
  size
67
67
  };
68
- const buttonTemplate = () => (index.h("button", Object.assign({ key: '9edaaa1a459ffc088ec0b5817a06636634a8a700', type: "button", class: "r-icon-button", "aria-label": this.host.getAttribute('aria-label') || null }, buttonAttrs, { onClick: this._handleClick, onFocus: this.onFocus, onBlur: this.onBlur, ref: (el) => (this.nativeElement = el) }), name ?
68
+ const buttonTemplate = () => (index.h("button", Object.assign({ key: 'ce7c3beb7c5fdbff3b47011289fe730dddf844f5', type: "button", class: "r-icon-button", "aria-label": this.host.getAttribute('aria-label') || null }, buttonAttrs, { onClick: this._handleClick, onFocus: this.onFocus, onBlur: this.onBlur, ref: (el) => (this.nativeElement = el) }), name ?
69
69
  index.h("r-icon", Object.assign({}, iconAttrs))
70
70
  :
71
- index.h("r-icon", { size: size, class: "r-icon-button--icon" }, index.h("slot", null)), index.h("span", { key: 'f1a386a189634b597a1744520aba2b862e206278', class: "r-icon-button--label visually-hidden" }, this.label), index.h("span", { key: 'c66d4aaabec9fc5ef871d520c7037b94bb1a6f2b', class: "r-icon-button--target-area" })));
72
- return (index.h(index.Host, { key: '8de48d1041bb285a3bff1b831eb24619f61e8d00' }, !disabled && tooltipText ?
71
+ index.h("r-icon", { size: size, class: "r-icon-button--icon" }, index.h("slot", null)), index.h("span", { key: '914c52bcfa15416981670f65cc4c009dd887003a', class: "r-icon-button--label visually-hidden" }, this.label), index.h("span", { key: 'e30a94256908de2c81f42d294e68a5e5524055c0', class: "r-icon-button--target-area" })));
72
+ return (index.h(index.Host, { key: 'b894237ccf791815719dc96ab85b7717141afdaf' }, !disabled && tooltipText ?
73
73
  index.h("r-tooltip", { text: tooltipText, position: tooltipPosition }, buttonTemplate())
74
74
  :
75
75
  buttonTemplate()));