next-helios-fe 1.8.61 → 1.8.62
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/package.json
CHANGED
@@ -185,12 +185,11 @@ export const Tooltip: React.FC<TooltipProps> = ({
|
|
185
185
|
>
|
186
186
|
{children}
|
187
187
|
{typeof document !== "undefined" &&
|
188
|
-
visible &&
|
189
188
|
createPortal(
|
190
189
|
<div
|
191
190
|
ref={tooltipRef}
|
192
191
|
className={`absolute z-50 duration-200 transition-opacity ${
|
193
|
-
visible ? "
|
192
|
+
visible ? "" : "hidden pointer-events-none"
|
194
193
|
} ${options?.enableHover ? "" : "pointer-events-none"}`}
|
195
194
|
style={getTooltipPosition()}
|
196
195
|
>
|