@idds/react 1.1.87 → 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
  );
@@ -5650,6 +5659,7 @@ const ToastProvider = ({ children }) => {
5650
5659
  onClose: () => handleClose(t.id),
5651
5660
  title: t.title,
5652
5661
  description: t.description,
5662
+ style: t.style,
5653
5663
  actionNode: t.actionNode,
5654
5664
  state: t.state,
5655
5665
  duration: t.duration,