feat: use floating ui for node link tooltips
Compare changes
- Dennis Collaris authored
@@ -5,6 +5,8 @@ import {
@@ -12,6 +14,7 @@ import {
@@ -21,6 +24,8 @@ interface TooltipOptions {
@@ -28,6 +33,8 @@ export function useTooltip({
@@ -38,8 +45,9 @@ export function useTooltip({
@@ -49,11 +57,25 @@ export function useTooltip({
@@ -98,17 +120,48 @@ export function Tooltip({ children, ...options }: { children: React.ReactNode }
@@ -149,13 +202,21 @@ export const TooltipContent = React.forwardRef<
className={`z-50 max-w-64 overflow-hidden rounded bg-light px-2 py-1 shadow text-xs border border-secondary-200 text-dark animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2${className ? ` ${className}` : ''}`}
className={`z-50 max-w-64 rounded bg-light px-2 py-1 shadow text-xs border border-secondary-200 text-dark animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2${className ? ` ${className}` : ''}`}