@hexdspace/react 0.1.54 → 0.1.55
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.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4462,7 +4462,7 @@ function Tooltip({
|
|
|
4462
4462
|
const motionDuration = useMotionDuration("--motion-fast", 0.14);
|
|
4463
4463
|
return /* @__PURE__ */ jsx20(TooltipPrimitive.Provider, { delayDuration: delayMs, children: /* @__PURE__ */ jsxs9(TooltipPrimitive.Root, { onOpenChange: setOpen, children: [
|
|
4464
4464
|
/* @__PURE__ */ jsx20(TooltipPrimitive.Trigger, { asChild: true, children }),
|
|
4465
|
-
/* @__PURE__ */ jsx20(
|
|
4465
|
+
/* @__PURE__ */ jsx20(AnimatePresence2, { children: open2 ? /* @__PURE__ */ jsx20(TooltipPrimitive.Portal, { forceMount: true, children: /* @__PURE__ */ jsx20(TooltipPrimitive.Content, { asChild: true, forceMount: true, side, sideOffset, children: /* @__PURE__ */ jsxs9(
|
|
4466
4466
|
motion2.div,
|
|
4467
4467
|
{
|
|
4468
4468
|
className: tooltipContentBase,
|
|
@@ -4493,7 +4493,7 @@ function Tooltip({
|
|
|
4493
4493
|
/* @__PURE__ */ jsx20(TooltipPrimitive.Arrow, { style: { fill: "var(--surface-2)" } })
|
|
4494
4494
|
]
|
|
4495
4495
|
}
|
|
4496
|
-
) }) : null })
|
|
4496
|
+
) }) }) : null })
|
|
4497
4497
|
] }) });
|
|
4498
4498
|
}
|
|
4499
4499
|
|