@idds/react 1.1.88 → 1.1.89

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.
package/dist/index.es.js CHANGED
@@ -5520,10 +5520,19 @@ function Tooltip({
5520
5520
  onBlur: hide,
5521
5521
  children: [
5522
5522
  children,
5523
- visible && /* @__PURE__ */ jsxs("div", { ref: tooltipRef, className: tooltipContentClasses, children: [
5524
- renderContent(),
5525
- showArrow && /* @__PURE__ */ jsx("div", { className: arrowClasses })
5526
- ] })
5523
+ visible && /* @__PURE__ */ jsxs(
5524
+ "div",
5525
+ {
5526
+ ref: tooltipRef,
5527
+ className: tooltipContentClasses,
5528
+ onMouseEnter: show,
5529
+ onMouseLeave: hide,
5530
+ children: [
5531
+ renderContent(),
5532
+ showArrow && /* @__PURE__ */ jsx("div", { className: arrowClasses })
5533
+ ]
5534
+ }
5535
+ )
5527
5536
  ]
5528
5537
  }
5529
5538
  );