{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"composition-chart","type":"registry:component","title":"Composition Chart","description":"Stacked bar and area shares with period tooltips and a compact interactive legend.","author":"Saurabh <saurabh10102@gmail.com>","dependencies":["@floating-ui/dom","clsx","motion","tailwind-merge"],"registryDependencies":[],"files":[{"path":"components/charts/composition-chart.tsx","type":"registry:component","target":"@components/charts/composition-chart.tsx","content":"\"use client\";\n// beui.dev/charts/composition-chart\n\nimport { cn } from \"@/lib/utils\";\nimport {\n  CompositionContext,\n  useCompositionModel,\n  type CompositionChartProps,\n} from \"./composition-chart/context\";\nimport { CompositionChartPlot } from \"./composition-chart/plot\";\nimport { CompositionChartLegend } from \"./composition-chart/legend\";\n\n/** Normalized stacked shares. Zero-total or incomplete periods are shown as gaps. */\nexport function CompositionChart({ className, children, ...props }: CompositionChartProps) {\n  const model = useCompositionModel(props);\n  return (\n    <CompositionContext.Provider value={model}>\n      <section aria-label={model.label} className={cn(\"@container w-full space-y-4\", className)}>\n        {children === undefined ? (\n          <div className=\"grid gap-4\">\n            <CompositionChartPlot />\n            <CompositionChartLegend />\n          </div>\n        ) : (\n          children\n        )}\n      </section>\n    </CompositionContext.Provider>\n  );\n}\n\nexport { CompositionChartPlot } from \"./composition-chart/plot\";\nexport { CompositionChartLegend } from \"./composition-chart/legend\";\nexport { useCompositionChart } from \"./composition-chart/context\";\nexport type { CompositionChartProps } from \"./composition-chart/context\";\nexport type { CompositionSeries as CompositionChartSeries } from \"./composition-chart/model\";\n"},{"path":"components/charts/composition-chart/context.tsx","type":"registry:component","target":"@components/charts/composition-chart/context.tsx","content":"\"use client\";\n\nimport { createContext, useContext, useMemo, useState, type ReactNode } from \"react\";\nimport { useReducedMotion } from \"motion/react\";\nimport { useHoverCapable } from \"@/lib/hooks/use-hover-capable\";\nimport { buildComposition, type CompositionSeries } from \"./model\";\n\nexport interface CompositionChartProps {\n  series: readonly CompositionSeries[];\n  /** Unique labels in chronological order. */\n  periods: readonly string[];\n  view?: \"bar\" | \"area\";\n  period?: string;\n  defaultPeriod?: string;\n  onPeriodChange?: (period: string) => void;\n  formatValue?: (value: number) => string;\n  label?: string;\n  className?: string;\n  children?: ReactNode;\n}\n\nconst number = new Intl.NumberFormat(\"en\", { maximumFractionDigits: 2 });\nexport function useCompositionModel({\n  series,\n  periods,\n  view = \"bar\",\n  period,\n  defaultPeriod,\n  onPeriodChange,\n  formatValue = (value) => number.format(value),\n  label = \"Composition over time\",\n}: CompositionChartProps) {\n  const model = useMemo(() => buildComposition(series, periods), [series, periods]);\n  const [internal, setInternal] = useState(defaultPeriod);\n  const [pinned, setPinned] = useState<string | null>(null);\n  const [hovered, setHovered] = useState<string | null>(null);\n  const [focused, setFocused] = useState<string | null>(null);\n  const validSeries = (id: string | null) => model.rows.some((row) => row.id === id);\n  if (internal !== undefined && !model.columns.some((column) => column.id === internal))\n    setInternal(undefined);\n  if (pinned !== null && !validSeries(pinned)) setPinned(null);\n  if (hovered !== null && !validSeries(hovered)) setHovered(null);\n  if (focused !== null && !validSeries(focused)) setFocused(null);\n  const selected = period === undefined ? internal : period;\n  const found = model.columns.findIndex((column) => column.id === selected);\n  const index = found >= 0 ? found : model.columns.length - 1;\n  const select = (next: string) => {\n    if (period === undefined) setInternal(next);\n    if (next !== model.columns[index]?.id) onPeriodChange?.(next);\n  };\n  const highlight = [hovered, focused, pinned].find((id) => id !== null && validSeries(id)) ?? null;\n  return {\n    ...model,\n    index,\n    column: model.columns[index],\n    select,\n    view,\n    label,\n    formatValue,\n    pinned,\n    setPinned,\n    highlight,\n    setHovered,\n    setFocused,\n    reduce: useReducedMotion(),\n    canHover: useHoverCapable(),\n  };\n}\n\nexport const CompositionContext = createContext<ReturnType<typeof useCompositionModel> | null>(\n  null,\n);\nexport function useCompositionChart() {\n  const context = useContext(CompositionContext);\n  if (!context)\n    throw new Error(\"Composition chart parts must be rendered inside CompositionChart.\");\n  return context;\n}\n"},{"path":"components/charts/composition-chart/legend.tsx","type":"registry:component","target":"@components/charts/composition-chart/legend.tsx","content":"\"use client\";\n\nimport { cn } from \"@/lib/utils\";\nimport { useCompositionChart } from \"./context\";\n\nexport function CompositionChartLegend({ className }: { className?: string }) {\n  const { column, highlight, pinned, setPinned, setHovered, setFocused, canHover, formatValue } =\n    useCompositionChart();\n  if (!column) return null;\n  return (\n    <div\n      className={cn(\n        \"grid min-w-0 grid-cols-2 gap-x-4 gap-y-1 @min-[480px]:grid-cols-3 @min-[900px]:grid-cols-6\",\n        className,\n      )}\n    >\n      {column.segments.map((row) => (\n        <button\n          key={row.id}\n          type=\"button\"\n          aria-label={`Highlight ${row.name}`}\n          aria-pressed={pinned === row.id}\n          onClick={() => setPinned(pinned === row.id ? null : row.id)}\n          onPointerEnter={() => {\n            if (canHover) setHovered(row.id);\n          }}\n          onPointerLeave={() => setHovered(null)}\n          onFocus={() => setFocused(row.id)}\n          onBlur={() => setFocused(null)}\n          onKeyDown={(event) => {\n            if (event.key === \"Escape\") {\n              setPinned(null);\n              setHovered(null);\n              setFocused(null);\n            }\n          }}\n          className={cn(\n            \"flex min-h-12 min-w-0 items-center gap-2.5 rounded-md px-2 py-1.5 text-left text-xs transition-opacity duration-150 focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring\",\n            pinned === row.id && \"bg-muted/60\",\n            highlight && highlight !== row.id && \"opacity-40\",\n          )}\n        >\n          <span\n            aria-hidden=\"true\"\n            className=\"h-6 w-1 shrink-0 rounded-full\"\n            style={{ backgroundColor: row.color }}\n          />\n          <span className=\"grid min-w-0 gap-0.5\">\n            <span className=\"truncate text-muted-foreground\">{row.name}</span>\n            <span\n              title={row.value === null ? \"Missing value\" : formatValue(row.value)}\n              className=\"shrink-0 font-mono tabular-nums\"\n            >\n              {column.valid ? `${row.share.toFixed(1)}%` : \"—\"}\n            </span>\n          </span>\n        </button>\n      ))}\n    </div>\n  );\n}\n"},{"path":"components/charts/composition-chart/model.ts","type":"registry:component","target":"@components/charts/composition-chart/model.ts","content":"export interface CompositionSeries {\n  id: string;\n  name: string;\n  color: string;\n  /** Nonnegative values aligned with periods. Missing/invalid values leave a gap. */\n  values: readonly (number | null)[];\n}\n\nexport function buildComposition(series: readonly CompositionSeries[], periods: readonly string[]) {\n  const seen = new Set<string>();\n  const rows = series.filter((row) => {\n    if (seen.has(row.id)) return false;\n    seen.add(row.id);\n    return true;\n  });\n  const periodIds = new Set<string>();\n  const columns = periods.flatMap((id, index) => {\n    if (periodIds.has(id)) return [];\n    periodIds.add(id);\n    const values = rows.map((row) => row.values[index]);\n    const valid =\n      values.length > 0 &&\n      values.every((v) => typeof v === \"number\" && Number.isFinite(v) && v >= 0);\n    // Scale before summing so large finite input values cannot overflow shares.\n    const max = valid ? Math.max(0, ...values.map((v) => v ?? 0)) : 0;\n    const scaledTotal = max > 0 ? values.reduce<number>((sum, v) => sum + (v ?? 0) / max, 0) : 0;\n    let offset = 0;\n    const segments = rows.map((row, i) => {\n      const value = values[i] ?? null;\n      const share = scaledTotal > 0 ? ((value ?? 0) / max / scaledTotal) * 100 : 0;\n      const segment = { ...row, value, share, offset };\n      offset += share;\n      return segment;\n    });\n    return [{ id, valid: valid && scaledTotal > 0, segments }];\n  });\n  return { rows, columns };\n}\n\n/** Separate polygons for contiguous runs; unknown periods never become interpolated data. */\nexport function compositionArea(\n  columns: ReturnType<typeof buildComposition>[\"columns\"],\n  row: number,\n) {\n  const paths: string[] = [];\n  let run: number[] = [];\n  const flush = () => {\n    if (!run.length) return;\n    const top = run.map((index) => {\n      const segment = columns[index].segments[row];\n      return `${((index + 0.5) / columns.length) * 100},${100 - segment.offset - segment.share}`;\n    });\n    const bottom = [...run]\n      .reverse()\n      .map(\n        (index) =>\n          `${((index + 0.5) / columns.length) * 100},${100 - columns[index].segments[row].offset}`,\n      );\n    // A single sample gets a column-width footprint instead of an invisible polygon.\n    if (run.length === 1) {\n      const index = run[0];\n      const segment = columns[index].segments[row];\n      const left = (index / columns.length) * 100;\n      const right = ((index + 1) / columns.length) * 100;\n      paths.push(\n        `M${left},${100 - segment.offset} L${left},${100 - segment.offset - segment.share} L${right},${100 - segment.offset - segment.share} L${right},${100 - segment.offset} Z`,\n      );\n    } else paths.push(`M${top.join(\" L\")} L${bottom.join(\" L\")} Z`);\n    run = [];\n  };\n  columns.forEach((column, index) => {\n    if (column.valid) run.push(index);\n    else flush();\n  });\n  flush();\n  return paths.join(\" \");\n}\n"},{"path":"components/charts/composition-chart/plot.tsx","type":"registry:component","target":"@components/charts/composition-chart/plot.tsx","content":"\"use client\";\n\nimport { useId, useRef, useState, type PointerEvent } from \"react\";\nimport { Tooltip } from \"@/components/motion/tooltip\";\nimport { CompositionTooltipContent } from \"./tooltip-content\";\nimport { motion } from \"motion/react\";\nimport { cn } from \"@/lib/utils\";\nimport { SPRING_LAYOUT } from \"@/lib/ease\";\nimport { useCompositionChart } from \"./context\";\nimport { compositionArea } from \"./model\";\n\nexport function CompositionChartPlot({ className }: { className?: string }) {\n  const { columns, rows, column, index, select, view, highlight, reduce, canHover } =\n    useCompositionChart();\n  const anchorRef = useRef<HTMLDivElement>(null);\n  const tooltipId = useId();\n  const pointerDriven = useRef(false);\n  const [tooltipOpen, setTooltipOpen] = useState(false);\n  const inspectPointer = (event: PointerEvent<HTMLDivElement>) => {\n    const bounds = event.currentTarget.getBoundingClientRect();\n    if (!bounds.width || !bounds.height || !columns.length) return;\n    const x = Math.min(1, Math.max(0, (event.clientX - bounds.left) / bounds.width));\n    select(columns[Math.min(columns.length - 1, Math.floor(x * columns.length))].id);\n  };\n  if (!columns.length || !rows.length)\n    return (\n      <p\n        className={cn(\n          \"flex min-h-64 items-center justify-center text-sm text-muted-foreground\",\n          className,\n        )}\n      >\n        No composition data\n      </p>\n    );\n  return (\n    <div className={cn(\"min-w-0 space-y-3\", className)}>\n      <div className=\"flex justify-between text-[11px] text-muted-foreground\">\n        <span>\n          {column?.id}\n          {column?.valid ? \"\" : \" · No data\"}\n        </span>\n        <span className=\"font-mono\">100%</span>\n      </div>\n      <div\n        ref={anchorRef}\n        onPointerLeave={() => setTooltipOpen(false)}\n        className=\"relative h-64 has-focus-visible:outline-2 has-focus-visible:outline-offset-4 has-focus-visible:outline-ring sm:h-80\"\n        onPointerEnter={(event) => {\n          if (event.pointerType !== \"touch\" && !event.buttons) {\n            inspectPointer(event);\n            setTooltipOpen(true);\n          }\n        }}\n        onPointerDown={(event) => {\n          pointerDriven.current = true;\n          inspectPointer(event);\n          setTooltipOpen(true);\n        }}\n        onPointerUp={() => {\n          pointerDriven.current = false;\n        }}\n        onPointerCancel={() => {\n          pointerDriven.current = false;\n          setTooltipOpen(false);\n        }}\n        onPointerMove={(event) => {\n          if (event.pointerType === \"touch\" ? event.buttons === 1 : canHover) {\n            inspectPointer(event);\n          }\n        }}\n      >\n        <svg\n          aria-hidden=\"true\"\n          viewBox=\"0 0 100 100\"\n          preserveAspectRatio=\"none\"\n          className=\"size-full overflow-visible\"\n        >\n          {[0, 25, 50, 75, 100].map((y) => (\n            <line\n              key={y}\n              x1=\"0\"\n              x2=\"100\"\n              y1={y}\n              y2={y}\n              stroke=\"currentColor\"\n              strokeWidth=\"1\"\n              vectorEffect=\"non-scaling-stroke\"\n              className=\"text-border\"\n            />\n          ))}\n          {view === \"area\"\n            ? rows.map((row, r) => (\n                <motion.path\n                  key={row.id}\n                  d={compositionArea(columns, r)}\n                  fill={row.color}\n                  initial={{ opacity: 0 }}\n                  animate={{ opacity: highlight && highlight !== row.id ? 0.18 : 0.9 }}\n                  transition={{ duration: 0.18 }}\n                />\n              ))\n            : columns.map(\n                (col, i) =>\n                  col.valid &&\n                  col.segments.map((segment) => (\n                    <motion.rect\n                      key={`${col.id}/${segment.id}`}\n                      x={(i / columns.length) * 100 + 10 / columns.length}\n                      y=\"0\"\n                      width={80 / columns.length}\n                      height=\"1\"\n                      fill={segment.color}\n                      initial={false}\n                      animate={{\n                        y: 100 - segment.offset - segment.share,\n                        scaleY: segment.share,\n                        opacity: highlight && highlight !== segment.id ? 0.18 : 0.9,\n                      }}\n                      style={{ originY: \"0px\", originX: \"0px\" }}\n                      transition={reduce ? { duration: 0 } : SPRING_LAYOUT}\n                    />\n                  )),\n              )}\n          <motion.line\n            initial={false}\n            animate={{ x: ((index + 0.5) / columns.length) * 100 }}\n            transition={reduce ? { duration: 0 } : SPRING_LAYOUT}\n            x1=\"0\"\n            x2=\"0\"\n            y1=\"0\"\n            y2=\"100\"\n            stroke=\"currentColor\"\n            strokeWidth=\"1\"\n            vectorEffect=\"non-scaling-stroke\"\n            strokeDasharray=\"3 3\"\n            className=\"text-foreground/70\"\n          />\n        </svg>\n        <input\n          type=\"range\"\n          aria-label=\"Inspect period\"\n          min={0}\n          max={columns.length - 1}\n          step={1}\n          value={index}\n          aria-valuetext={column?.id}\n          aria-describedby={tooltipOpen ? tooltipId : undefined}\n          onFocus={() => setTooltipOpen(true)}\n          onBlur={() => {\n            pointerDriven.current = false;\n            setTooltipOpen(false);\n          }}\n          onPointerDown={() => setTooltipOpen(true)}\n          onKeyDown={(event) => {\n            pointerDriven.current = false;\n            if (event.key === \"Escape\") setTooltipOpen(false);\n          }}\n          onChange={(event) => {\n            // The range thumb and equal-width chart columns round differently.\n            // Pointer selection has one source; native changes are for keyboard/AT.\n            if (pointerDriven.current) return;\n            select(columns[Number(event.target.value)].id);\n            setTooltipOpen(true);\n          }}\n          className=\"absolute inset-0 h-full w-full cursor-crosshair opacity-0\"\n        />\n      </div>\n      <Tooltip\n        id={tooltipId}\n        anchorRef={anchorRef}\n        followCursor\n        anchorPoint={{ x: (index + 0.5) / columns.length, y: 0.3 }}\n        side=\"top\"\n        open={tooltipOpen}\n        onOpenChange={setTooltipOpen}\n        className=\"max-w-[calc(100vw-1rem)]\"\n        content={<CompositionTooltipContent />}\n      />\n      <div className=\"flex justify-between gap-4 text-[11px] text-muted-foreground\">\n        <span>{columns[0].id}</span>\n        <span>{columns.at(-1)?.id}</span>\n      </div>\n    </div>\n  );\n}\n"},{"path":"lib/utils.ts","type":"registry:lib","target":"@lib/utils.ts","content":"import { clsx, type ClassValue } from \"clsx\"\nimport { twMerge } from \"tailwind-merge\"\n\nexport function cn(...inputs: ClassValue[]) {\n  return twMerge(clsx(inputs))\n}\n"},{"path":"lib/hooks/use-hover-capable.ts","type":"registry:hook","target":"@lib/hooks/use-hover-capable.ts","content":"\"use client\";\n\nimport { useEffect, useState } from \"react\";\n\n/**\n * Returns true only on devices that have a true hover (mouse / trackpad).\n * Touch devices fire phantom `:hover` on tap that sticks until tap-elsewhere\n * — gate hover-only effects (scale lifts, magnetic pulls) behind this.\n */\nexport function useHoverCapable() {\n  const [canHover, setCanHover] = useState(false);\n\n  useEffect(() => {\n    if (typeof window === \"undefined\" || !window.matchMedia) return;\n    const mq = window.matchMedia(\"(hover: hover) and (pointer: fine)\");\n    const update = () => setCanHover(mq.matches);\n    update();\n    mq.addEventListener?.(\"change\", update);\n    return () => mq.removeEventListener?.(\"change\", update);\n  }, []);\n\n  return canHover;\n}\n"},{"path":"components/charts/composition-chart/tooltip-content.tsx","type":"registry:component","target":"@components/charts/composition-chart/tooltip-content.tsx","content":"\"use client\";\n\nimport { NumberTicker } from \"@/components/motion/number-ticker\";\nimport { cn } from \"@/lib/utils\";\nimport { useCompositionChart } from \"./context\";\n\nexport function CompositionTooltipContent({ className }: { className?: string }) {\n  const { column, formatValue } = useCompositionChart();\n  if (!column) return null;\n  return (\n    <span className={cn(\"block w-72 max-w-full min-w-0\", className)}>\n      <span className=\"mb-2 block text-xs font-medium\">{column.id}</span>\n      {column.valid ? (\n        <span className=\"grid gap-2\">\n          {column.segments.map((row) => (\n            <span key={row.id} className=\"flex items-center gap-2 text-[11px]\">\n              <span\n                aria-hidden=\"true\"\n                className=\"size-1.5 shrink-0 rounded-full\"\n                style={{ backgroundColor: row.color }}\n              />\n              <span className=\"min-w-0 flex-1 truncate\">{row.name}</span>\n              <span className=\"max-w-28 shrink-0 truncate text-muted-foreground tabular-nums\"\n                title={formatValue(row.value ?? 0)}>\n                <NumberTicker\n                  value={row.value ?? 0}\n                  // Keep the consumer's exact formatting, including fractional values and units.\n                  format={() => formatValue(row.value ?? 0)}\n                  startOnView={false}\n                  duration={0.2}\n                  stagger={0}\n                  className=\"whitespace-pre\"\n                />\n              </span>\n              <span className=\"w-12 shrink-0 text-right font-mono tabular-nums\">\n                <NumberTicker\n                  value={row.share}\n                  format={() => row.share.toFixed(1)}\n                  suffix=\"%\"\n                  startOnView={false}\n                  duration={0.2}\n                  stagger={0}\n                />\n              </span>\n            </span>\n          ))}\n        </span>\n      ) : (\n        <span className=\"block text-xs text-muted-foreground\">\n          No complete data for this period.\n        </span>\n      )}\n    </span>\n  );\n}\n"},{"path":"components/motion/tooltip.tsx","type":"registry:component","target":"@components/motion/tooltip.tsx","content":"\"use client\";\n\nimport { AnimatePresence } from \"motion/react\";\nimport { TooltipPositioner } from \"./tooltip/positioner\";\nimport { useTooltipPointer } from \"./tooltip/use-position\";\nimport {\n  cloneElement,\n  isValidElement,\n  type PointerEvent,\n  type ReactElement,\n  type ReactNode,\n  type RefObject,\n  useCallback,\n  useEffect,\n  useId,\n  useRef,\n  useState,\n} from \"react\";\nimport { createPortal } from \"react-dom\";\nimport { TooltipSurface } from \"@/components/motion/tooltip-surface\";\nimport { useDismiss } from \"@/lib/hooks/use-dismiss\";\nimport { useHoverGesture } from \"@/lib/hooks/use-hover-gesture\";\nimport { useTapGesture } from \"@/lib/hooks/use-tap-gesture\";\nimport { cn } from \"@/lib/utils\";\n\ntype Side = \"top\" | \"right\" | \"bottom\" | \"left\";\n\nexport interface TooltipProps {\n  content: ReactNode;\n  children?: ReactElement;\n  /** Existing trigger for controlled integrations such as chart cells. */\n  anchorRef?: RefObject<HTMLElement | SVGElement | null>;\n  /** Point within the anchor, as fractions of its rendered width and height. */\n  anchorPoint?: { x: number; y: number };\n  /** Follow real pointer coordinates; keyboard focus still uses the anchor. */\n  followCursor?: boolean;\n  open?: boolean;\n  onOpenChange?: (open: boolean) => void;\n  id?: string;\n  side?: Side;\n  /** Delay before showing (ms). Default 120. */\n  delay?: number;\n  className?: string;\n  /** Classes for the outer wrapper span. Use to fix baseline / fill parent. */\n  wrapperClassName?: string;\n}\n\n// Once any tooltip has just closed, neighbouring tooltips open without the\n// initial delay — moving along a toolbar feels instant after the first one.\nconst WARM_WINDOW_MS = 300;\nlet lastHiddenAt = 0;\n\nexport function Tooltip({\n  content,\n  children,\n  side = \"top\",\n  delay = 120,\n  className,\n  wrapperClassName,\n  anchorRef: externalAnchorRef,\n  anchorPoint,\n  followCursor = false,\n  open: controlledOpen,\n  onOpenChange,\n  id: providedId,\n}: TooltipProps) {\n  const [internalOpen, setInternalOpen] = useState(false);\n  const open = controlledOpen ?? internalOpen;\n  const setOpen = useCallback(\n    (next: boolean) => {\n      if (controlledOpen === undefined) setInternalOpen(next);\n      onOpenChange?.(next);\n    },\n    [controlledOpen, onOpenChange],\n  );\n  const generatedId = useId();\n  const id = providedId ?? generatedId;\n  const timer = useRef<ReturnType<typeof setTimeout> | null>(null);\n  const wrapperRef = useRef<HTMLSpanElement>(null);\n  const anchorRef = externalAnchorRef ?? wrapperRef;\n  const hover = useHoverGesture();\n  const floatingRef = useRef<HTMLSpanElement | null>(null);\n  const pointer = useTooltipPointer(anchorRef, followCursor);\n  const focused = useRef(false);\n\n  const show = useCallback(() => {\n    if (timer.current) clearTimeout(timer.current);\n    if (open) return;\n    const warm = Date.now() - lastHiddenAt < WARM_WINDOW_MS;\n    if (warm) {\n      setOpen(true);\n      return;\n    }\n    timer.current = setTimeout(() => {\n      setOpen(true);\n    }, delay);\n  }, [delay, setOpen, open]);\n\n  const hide = useCallback(() => {\n    if (timer.current) {\n      clearTimeout(timer.current);\n      timer.current = null;\n    }\n    if (open) lastHiddenAt = Date.now();\n    setOpen(false);\n  }, [open, setOpen]);\n\n  const leave = useCallback(() => {\n    if (focused.current) return;\n    if (timer.current) clearTimeout(timer.current);\n    // Bridge the small physical gap to a stationary, readable tooltip.\n    if (followCursor) hide();\n    else timer.current = setTimeout(hide, 100);\n  }, [followCursor, hide]);\n  const insideTooltip = useCallback(\n    (target: Element) => Boolean(floatingRef.current?.contains(target)),\n    [],\n  );\n\n  // A finger never hovers, and Safari does not focus a button on tap either, so\n  // the label is only reachable if the tap itself opens the tooltip. A click\n  // carries no pointerType, so the pointerdown that preceded it is what says\n  // whether this was a tap; keyboard activation arrives with no pointerdown at\n  // all, and focus has already shown the label there.\n  const tap = useTapGesture<boolean>();\n\n  const toggleOnTap = useCallback(() => {\n    const gesture = tap.take();\n    if (!gesture || gesture.pointerType === \"mouse\") return;\n    if (gesture.state) {\n      hide();\n      return;\n    }\n    if (timer.current) clearTimeout(timer.current);\n    setOpen(true);\n  }, [hide, tap, setOpen]);\n\n  // ...and closed again by the next tap that lands somewhere else. The label\n  // covers nothing interactive, so that tap passes through to what it hit.\n  useDismiss(open, hide, anchorRef, { ignore: insideTooltip });\n\n  useEffect(\n    () => () => {\n      if (timer.current) clearTimeout(timer.current);\n    },\n    [],\n  );\n\n  if (!externalAnchorRef && !isValidElement(children)) return children;\n\n  // The label describes the trigger, so it has to name the trigger itself.\n  // Everything else the tooltip needs is read off the anchor below instead of\n  // cloned on: a handler written onto the child is the child's handler as far\n  // as that child can tell, and a component that owns its activation —\n  // hard-wiring onClick and spreading the rest of its props over it, as\n  // ThemeToggle does — then runs the tooltip's instead of its own. Composing\n  // with `props.onClick` cannot save it either, because a component element's\n  // props hold nothing the component does internally.\n  const trigger = isValidElement(children)\n    ? cloneElement(children as ReactElement<Record<string, unknown>>, {\n        \"aria-describedby\":\n          [(children.props as Record<string, unknown>)[\"aria-describedby\"], open ? id : undefined]\n            .filter(Boolean)\n            .join(\" \") || undefined,\n      })\n    : null;\n\n  return (\n    <>\n      {!externalAnchorRef ? (\n        // biome-ignore lint/a11y/noStaticElementInteractions: This wrapper observes bubbling trigger events without replacing the control's handlers.\n        <span\n          ref={wrapperRef}\n          className={cn(\"relative inline-flex align-middle\", wrapperClassName)}\n          // Pointer events, not the mouse pair: a tap fires compatibility\n          // mouseenter/mouseleave that carry no pointerType, which raced the tap\n          // path into opening and closing the same label.\n          onPointerEnter={(event: PointerEvent) => {\n            if (hover.enter(event)) show();\n          }}\n          onPointerLeave={(event: PointerEvent) => {\n            if (hover.leave(event)) leave();\n          }}\n          onFocus={() => {\n            focused.current = true;\n            show();\n          }}\n          onBlur={() => {\n            focused.current = false;\n            hide();\n          }}\n          onPointerDown={(event: PointerEvent) => tap.start(event, open)}\n          // A gesture the platform took away sends no click, and a key press\n          // starts an activation that never had a pointer behind it. Either way\n          // the record has to go, or the next click reads a finger that has long\n          // since lifted.\n          onPointerCancel={tap.drop}\n          onKeyDown={(event) => {\n            tap.drop();\n            if (event.key === \"Escape\") hide();\n          }}\n          onClick={toggleOnTap}\n        >\n          {trigger}\n        </span>\n      ) : null}\n      {typeof document !== \"undefined\"\n        ? createPortal(\n            <AnimatePresence>\n              {open ? (\n                <TooltipPositioner\n                  key=\"tooltip\"\n                  anchorRef={anchorRef}\n                  floatingRef={floatingRef}\n                  anchorPoint={anchorPoint}\n                  followCursor={followCursor}\n                  side={side}\n                  onDismiss={hide}\n                  pointer={pointer}\n                >\n                  {(positioned, isPresent) => (\n                    <TooltipSurface\n                      id={id}\n                      ready={positioned}\n                      side={side}\n                      onPointerEnter={() => {\n                        if (timer.current) clearTimeout(timer.current);\n                      }}\n                      onPointerLeave={leave}\n                      style={{\n                        maxWidth: \"calc(100vw - 16px)\",\n                        whiteSpace: \"normal\",\n                        pointerEvents: isPresent && !followCursor ? \"auto\" : \"none\",\n                      }}\n                      className={cn(\"overflow-hidden\", className)}\n                    >\n                      {content}\n                    </TooltipSurface>\n                  )}\n                </TooltipPositioner>\n              ) : null}\n            </AnimatePresence>,\n            document.body,\n          )\n        : null}\n    </>\n  );\n}\n"},{"path":"lib/ease.ts","type":"registry:lib","target":"@lib/ease.ts","content":"// Shared motion tokens. Easing curves mirror the CSS custom properties in\n// globals.css; springs are the canonical physics used across components.\n// Strong custom variants — defaults like `ease-in`/`ease-out` feel weak.\n\nexport const EASE_OUT = [0.16, 1, 0.3, 1] as const;\nexport const EASE_IN_OUT = [0.77, 0, 0.175, 1] as const;\nexport const EASE_DRAWER = [0.32, 0.72, 0, 1] as const;\n\n/** CSS string form of EASE_OUT for inline style transitions. */\nexport const EASE_OUT_CSS = \"cubic-bezier(0.16, 1, 0.3, 1)\";\n\n/** Press feedback on buttons and other tappable surfaces. */\nexport const SPRING_PRESS = {\n  type: \"spring\",\n  stiffness: 500,\n  damping: 30,\n  mass: 0.6,\n} as const;\n\n/** Content swaps — label/icon slots trading places inside a control. */\nexport const SPRING_SWAP = {\n  type: \"spring\",\n  stiffness: 460,\n  damping: 30,\n  mass: 0.55,\n} as const;\n\n/** Overlay panel entrances — modals and sheets summoned by pointer. */\nexport const SPRING_PANEL = {\n  type: \"spring\",\n  stiffness: 420,\n  damping: 40,\n  mass: 0.5,\n} as const;\n\n/** Shared-layout glides — pills, indicators and panels morphing between positions. */\nexport const SPRING_LAYOUT = {\n  type: \"spring\",\n  stiffness: 360,\n  damping: 32,\n  mass: 0.6,\n} as const;\n\n/** Cursor-follow physics for decorative mouse tracking (magnetic, tilt, dock). */\nexport const SPRING_MOUSE = {\n  stiffness: 200,\n  damping: 15,\n  mass: 0.3,\n} as const;\n\n/** Dragged handles and fills (sliders) — critically damped `useSpring` config,\n * so the value follows the pointer butterily and never rebounds off an end. */\nexport const SPRING_GLIDE = {\n  stiffness: 700,\n  damping: 50,\n  mass: 0.5,\n} as const;\n"},{"path":"components/motion/number-ticker.tsx","type":"registry:component","target":"@components/motion/number-ticker.tsx","content":"\"use client\";\n\nimport { animate, motion, useInView, useReducedMotion } from \"motion/react\";\nimport { useEffect, useMemo, useRef, useState } from \"react\";\nimport { EASE_OUT } from \"@/lib/ease\";\nimport { cn } from \"@/lib/utils\";\n\nexport interface NumberTickerProps {\n  value: number;\n  /** Digits to pad to (left). */\n  pad?: number;\n  /** Per-digit roll duration in seconds. */\n  duration?: number;\n  /** Stagger between digits. */\n  stagger?: number;\n  /** Render only after the element enters the viewport. */\n  startOnView?: boolean;\n  prefix?: string;\n  suffix?: string;\n  /** Add a small blur during digit rolls. */\n  blur?: boolean;\n  className?: string;\n  digitClassName?: string;\n  /** Insert locale group separators (commas). Server-component safe. */\n  locale?: boolean;\n  /** Custom formatter. Client-only — server components must use `locale` instead. */\n  format?: (value: number) => string;\n}\n\nconst DIGIT_HEIGHT_EM = 1.1;\nconst DIGITS = Array.from({ length: 10 }, (_, n) => n);\n\nexport function NumberTicker({\n  value,\n  pad,\n  duration = 0.9,\n  stagger = 0.04,\n  startOnView = true,\n  prefix,\n  suffix,\n  blur = false,\n  className,\n  digitClassName,\n  locale,\n  format,\n}: NumberTickerProps) {\n  const containerRef = useRef<HTMLSpanElement>(null);\n  const inView = useInView(containerRef, { once: true, amount: 0.6 });\n  const [armed, setArmed] = useState(!startOnView);\n\n  useEffect(() => {\n    if (startOnView && inView) setArmed(true);\n  }, [startOnView, inView]);\n\n  const text = useMemo(() => {\n    const rounded = Math.round(value);\n    const formatted = format\n      ? format(rounded)\n      : locale\n        ? rounded.toLocaleString()\n        : rounded.toString();\n    return pad ? formatted.padStart(pad, \"0\") : formatted;\n  }, [value, pad, format, locale]);\n  const glyphs = useMemo(() => {\n    const chars = text.split(\"\");\n    // Key by place value (position from the right): a changing digit keeps its\n    // identity and rolls to the new value instead of remounting and replaying\n    // from 0. Growing numbers add glyphs on the left without re-keying the\n    // ones, tens, hundreds already on screen.\n    return chars.map((char, i) => ({ char, id: `g-${chars.length - 1 - i}` }));\n  }, [text]);\n  const readableText = `${prefix ?? \"\"}${text}${suffix ?? \"\"}`;\n\n  // Stagger is an entrance flourish. Once the reveal has played, value\n  // changes roll every digit immediately — a per-digit delay on live updates\n  // reads as lag.\n  const [entered, setEntered] = useState(false);\n  useEffect(() => {\n    if (!armed || entered) return;\n    const total = (duration + glyphs.length * stagger) * 1000;\n    const t = window.setTimeout(() => setEntered(true), total);\n    return () => window.clearTimeout(t);\n  }, [armed, entered, duration, stagger, glyphs.length]);\n\n  return (\n    <span\n      ref={containerRef}\n      className={cn(\"inline-flex items-center tabular-nums\", className)}\n    >\n      <span className=\"sr-only\">{readableText}</span>\n      <span aria-hidden=\"true\" className=\"inline-flex items-center\">\n        {prefix ? <span>{prefix}</span> : null}\n        {glyphs.map(({ char, id }, i) => {\n          const isDigit = /\\d/.test(char);\n          if (!isDigit) {\n            return (\n              <span key={id} className=\"inline-block\">\n                {char}\n              </span>\n            );\n          }\n          const digit = Number(char);\n          return (\n            <Digit\n              key={id}\n              digit={armed ? digit : 0}\n              delay={entered ? 0 : i * stagger}\n              duration={duration}\n              blur={blur}\n              className={digitClassName}\n            />\n          );\n        })}\n        {suffix ? <span>{suffix}</span> : null}\n      </span>\n    </span>\n  );\n}\n\nfunction Digit({\n  digit,\n  delay,\n  duration,\n  blur,\n  className,\n}: {\n  digit: number;\n  delay: number;\n  duration: number;\n  blur: boolean;\n  className?: string;\n}) {\n  const reduce = useReducedMotion();\n  const columnRef = useRef<HTMLSpanElement>(null);\n\n  useEffect(() => {\n    if (reduce || !blur || !columnRef.current || !Number.isFinite(digit)) {\n      return;\n    }\n\n    const node = columnRef.current;\n    const controls = animate(\n      node,\n      { filter: [\"blur(10px)\", \"blur(0px)\"] },\n      {\n        duration: Math.min(duration * 0.75, 0.32),\n        delay,\n        ease: EASE_OUT,\n      },\n    );\n\n    return () => {\n      controls.stop();\n      node.style.filter = \"blur(0px)\";\n    };\n  }, [blur, delay, digit, duration, reduce]);\n\n  return (\n    <span\n      className={cn(\"relative inline-block overflow-hidden\", className)}\n      style={{ height: `${DIGIT_HEIGHT_EM}em`, width: \"1ch\" }}\n    >\n      <motion.span\n        ref={columnRef}\n        initial={{ y: 0 }}\n        animate={{ y: `-${digit * DIGIT_HEIGHT_EM}em` }}\n        transition={\n          reduce\n            ? { duration: 0 }\n            : { duration, delay, ease: EASE_OUT }\n        }\n        className=\"absolute inset-x-0 top-0 flex flex-col items-center will-change-[transform,filter]\"\n      >\n        {DIGITS.map((n) => (\n          <span\n            key={n}\n            className=\"flex h-[1.1em] items-center justify-center leading-none\"\n          >\n            {n}\n          </span>\n        ))}\n      </motion.span>\n    </span>\n  );\n}\n"},{"path":"components/motion/tooltip/positioner.tsx","type":"registry:component","target":"@components/motion/tooltip/positioner.tsx","content":"\"use client\";\n\nimport { useIsPresent } from \"motion/react\";\nimport { useCallback, useState, type ReactNode } from \"react\";\nimport { useTooltipPosition } from \"./use-position\";\n\ntype PositionProps = Parameters<typeof useTooltipPosition>[0];\n\n/** Readiness lives with the mounted overlay, not a trigger ref's attach/detach cycle. */\nexport function TooltipPositioner({\n  children,\n  ...position\n}: Omit<PositionProps, \"open\" | \"onPosition\"> & {\n  children: (ready: boolean, present: boolean) => ReactNode;\n}) {\n  const present = useIsPresent();\n  const [ready, setReady] = useState(false);\n  const onPosition = useCallback(() => setReady(true), []);\n  useTooltipPosition({ ...position, open: present, onPosition });\n  return (\n    <span\n      ref={position.floatingRef}\n      inert={!present}\n      aria-hidden={!present || undefined}\n      className=\"pointer-events-none fixed left-0 top-0 z-[9999] w-max\"\n      style={{ visibility: \"hidden\", maxWidth: \"calc(100vw - 16px)\" }}\n    >\n      {children(ready, present)}\n    </span>\n  );\n}\n"},{"path":"components/motion/tooltip/use-position.ts","type":"registry:component","target":"@components/motion/tooltip/use-position.ts","content":"\"use client\";\n\nimport {\n  autoUpdate,\n  computePosition,\n  flip,\n  offset,\n  shift,\n  type Placement,\n  type VirtualElement,\n} from \"@floating-ui/dom\";\nimport { useCallback, useLayoutEffect, useRef, type RefObject } from \"react\";\n\nexport type TooltipSide = \"top\" | \"right\" | \"bottom\" | \"left\";\nexport type TooltipPoint = { x: number; y: number };\n\n/** Position is geometry, not animation. One write per frame, never a spring chasing a pointer. */\nexport function useTooltipPosition({\n  open,\n  anchorRef,\n  floatingRef,\n  anchorPoint,\n  followCursor,\n  side,\n  onDismiss,\n  onPosition,\n  pointer,\n}: {\n  open: boolean;\n  anchorRef: RefObject<HTMLElement | SVGElement | null>;\n  floatingRef: RefObject<HTMLSpanElement | null>;\n  anchorPoint?: TooltipPoint;\n  followCursor: boolean;\n  side: TooltipSide;\n  onDismiss: () => void;\n  onPosition: () => void;\n  pointer: ReturnType<typeof useTooltipPointer>;\n}) {\n  const { cursor, onMove } = pointer;\n  const cursorSide = useRef<Placement | null>(null);\n  useLayoutEffect(() => {\n    cursorSide.current = open ? side : null;\n  }, [open, side]);\n  const frame = useRef<number | null>(null);\n  const version = useRef(0);\n  const update = useRef<() => void>(() => {});\n  const schedule = useCallback(() => {\n    // Invalidate older async calculations as soon as new geometry is requested.\n    version.current++;\n    if (frame.current !== null) return;\n    frame.current = requestAnimationFrame(() => {\n      frame.current = null;\n      update.current();\n    });\n  }, []);\n  useLayoutEffect(() => {\n    onMove.current = schedule;\n    return () => {\n      onMove.current = null;\n    };\n  }, [onMove, schedule]);\n  const pointX = anchorPoint?.x;\n  const pointY = anchorPoint?.y;\n\n  // Latest committed inputs are read without recreating observers for every period/content update.\n  useLayoutEffect(() => {\n    update.current = () => {\n      const anchor = anchorRef.current;\n      const floating = floatingRef.current;\n      if (!open || !anchor || !floating) return;\n      const revision = ++version.current;\n      const currentCursor = followCursor ? cursor.current : null;\n      const reference: Element | VirtualElement =\n        currentCursor || pointX !== undefined || pointY !== undefined\n          ? {\n              contextElement: anchor,\n              getBoundingClientRect: () => {\n                const rect = anchor.getBoundingClientRect();\n                const x = currentCursor?.x ?? rect.left + rect.width * (pointX ?? 0.5);\n                const y = currentCursor?.y ?? rect.top + rect.height * (pointY ?? 0.5);\n                return { x, y, left: x, right: x, top: y, bottom: y, width: 0, height: 0 };\n              },\n            }\n          : anchor;\n      void computePosition(reference, floating, {\n        strategy: \"fixed\",\n        placement: currentCursor ? (cursorSide.current ?? side) : side,\n        middleware: [offset(currentCursor ? 12 : 8), flip({ padding: 8 }), shift({ padding: 8 })],\n      }).then(({ x, y, placement }) => {\n        if (version.current !== revision || !floating.isConnected) return;\n        // Hold the chosen side for this hover session. Crossing a flip threshold\n        // repeatedly must not bounce the surface above and below the pointer.\n        if (currentCursor) cursorSide.current = placement;\n        else cursorSide.current = null;\n        const dpr = window.devicePixelRatio || 1;\n        floating.style.transform = `translate3d(${Math.round(x * dpr) / dpr}px, ${Math.round(y * dpr) / dpr}px, 0)`;\n        const origin = {\n          top: \"center bottom\",\n          bottom: \"center top\",\n          left: \"right center\",\n          right: \"left center\",\n        };\n        floating.style.setProperty(\n          \"--tooltip-origin\",\n          origin[placement.split(\"-\")[0] as TooltipSide],\n        );\n        floating.style.visibility = \"visible\";\n        floating.dataset.placement = placement;\n        onPosition();\n      });\n    };\n    if (open) schedule();\n  }, [\n    open,\n    anchorRef,\n    floatingRef,\n    followCursor,\n    pointX,\n    pointY,\n    side,\n    schedule,\n    onPosition,\n    cursor,\n  ]);\n\n  useLayoutEffect(() => {\n    const anchor = anchorRef.current;\n    const floating = floatingRef.current;\n    if (!open || !anchor || !floating) return;\n    const stop = autoUpdate(anchor, floating, schedule);\n    const onScroll = () => {\n      // A stationary pointer no longer describes the same chart point after scrolling.\n      if (followCursor && cursor.current) onDismiss();\n    };\n    window.addEventListener(\"scroll\", onScroll, true);\n    return () => {\n      stop();\n      window.removeEventListener(\"scroll\", onScroll, true);\n      version.current++;\n      if (frame.current !== null) cancelAnimationFrame(frame.current);\n      frame.current = null;\n    };\n  }, [open, anchorRef, floatingRef, followCursor, onDismiss, schedule, cursor]);\n\n  useLayoutEffect(\n    () => () => {\n      version.current++;\n      if (frame.current !== null) cancelAnimationFrame(frame.current);\n    },\n    [],\n  );\n}\n\n/** Pointer lifetime belongs to the trigger, including the opening delay. */\nexport function useTooltipPointer(\n  anchorRef: RefObject<HTMLElement | SVGElement | null>,\n  followCursor: boolean,\n) {\n  const cursor = useRef<TooltipPoint | null>(null);\n  const onMove = useRef<(() => void) | null>(null);\n  const pointerFocus = useRef(false);\n  useLayoutEffect(() => {\n    const anchor = anchorRef.current;\n    if (!anchor || !followCursor) return;\n    const point = (event: PointerEvent) => {\n      if (event.type === \"pointermove\" && event.pointerType === \"touch\" && !event.buttons) return;\n      cursor.current = { x: event.clientX, y: event.clientY };\n      if (event.type === \"pointerdown\") pointerFocus.current = true;\n      onMove.current?.();\n    };\n    const keyboard = () => {\n      cursor.current = null;\n      pointerFocus.current = false;\n      onMove.current?.();\n    };\n    const focus = () => {\n      if (!pointerFocus.current) cursor.current = null;\n      pointerFocus.current = false;\n      onMove.current?.();\n    };\n    const leave = () => {\n      cursor.current = null;\n    };\n    anchor.addEventListener(\"pointerenter\", point as EventListener, { passive: true });\n    anchor.addEventListener(\"pointermove\", point as EventListener, { passive: true });\n    anchor.addEventListener(\"pointerdown\", point as EventListener, { passive: true });\n    anchor.addEventListener(\"pointerleave\", leave);\n    anchor.addEventListener(\"pointercancel\", leave);\n    anchor.addEventListener(\"keydown\", keyboard);\n    anchor.addEventListener(\"focusin\", focus);\n    return () => {\n      cursor.current = null;\n      anchor.removeEventListener(\"pointerenter\", point as EventListener);\n      anchor.removeEventListener(\"pointermove\", point as EventListener);\n      anchor.removeEventListener(\"pointerdown\", point as EventListener);\n      anchor.removeEventListener(\"pointerleave\", leave);\n      anchor.removeEventListener(\"pointercancel\", leave);\n      anchor.removeEventListener(\"keydown\", keyboard);\n      anchor.removeEventListener(\"focusin\", focus);\n    };\n  }, [anchorRef, followCursor]);\n\n  return { cursor, onMove };\n}\n"},{"path":"components/motion/tooltip-surface.tsx","type":"registry:component","target":"@components/motion/tooltip-surface.tsx","content":"\"use client\";\n\nimport { motion, useReducedMotion } from \"motion/react\";\nimport type { ComponentProps, ReactNode, Ref } from \"react\";\nimport { EASE_OUT } from \"@/lib/ease\";\nimport { cn } from \"@/lib/utils\";\n\n/** Presentation only: the unanimated parent owns measurement and positioning. */\nexport function TooltipSurface({\n  children,\n  side: _side = \"top\",\n  className,\n  ref,\n  ready = true,\n  style,\n  ...props\n}: Omit<ComponentProps<typeof motion.span>, \"children\"> & {\n  children?: ReactNode;\n  /** Start the entrance only after the positioning layer has been measured. */\n  ready?: boolean;\n  side?: \"top\" | \"right\" | \"bottom\" | \"left\";\n  ref?: Ref<HTMLSpanElement>;\n}) {\n  const reduce = useReducedMotion();\n  const closed = { opacity: 0, scale: reduce ? 1 : 0.94 };\n  return (\n    <motion.span\n      ref={ref}\n      role=\"tooltip\"\n      initial={closed}\n      animate={{\n        ...(ready ? { opacity: 1, scale: 1 } : closed),\n        transition: { duration: 0.18, ease: EASE_OUT },\n      }}\n      exit={{ ...closed, transition: { duration: 0.12, ease: EASE_OUT } }}\n      style={{ transformOrigin: \"var(--tooltip-origin, center)\", ...style }}\n      className={cn(\n        \"block whitespace-nowrap rounded-lg border border-border bg-background px-2.5 py-1 text-xs font-medium text-foreground shadow-lg\",\n        className,\n      )}\n      {...props}\n    >\n      {children}\n    </motion.span>\n  );\n}\n"},{"path":"lib/hooks/use-dismiss.ts","type":"registry:hook","target":"@lib/hooks/use-dismiss.ts","content":"\"use client\";\n\nimport { type RefObject, useEffect } from \"react\";\n\n/**\n * What the dismissing gesture does to the control it landed on.\n *\n * `\"pass-through\"` is the platform norm (native popover light-dismiss): the\n * tap closes the overlay *and* activates whatever was under it. Use\n * `\"consume\"` where the open overlay sits over or beside controls that would\n * be costly to trigger by accident — the dismissal then swallows the\n * activation too, so the gesture only closes.\n */\nexport type DismissBehavior = \"pass-through\" | \"consume\";\n\nexport interface DismissOptions {\n  /** Default `\"pass-through\"`. */\n  behavior?: DismissBehavior;\n  /** Dismiss on Escape as well. Default true. */\n  escape?: boolean;\n  /** Return true for an outside target that should *not* dismiss. Must be stable. */\n  ignore?: (target: Element) => boolean;\n}\n\n/**\n * What every currently open dismiss scope counts as inside itself. A consumed\n * dismissal reads this to tell a stray gesture from one that belongs to an\n * overlay in front of it: overlays have no shared z-order to consult, but the\n * one the gesture landed in has said as much by registering it.\n */\nconst openScopes = new Set<(target: Element) => boolean>();\n\nfunction claimedByAnotherScope(\n  self: (target: Element) => boolean,\n  target: Element,\n) {\n  for (const scope of openScopes) {\n    if (scope !== self && scope(target)) return true;\n  }\n  return false;\n}\n\n// preventDefault on pointerdown does not suppress the click that follows, so\n// consuming a gesture means swallowing that click itself. The swallower\n// deliberately outlives the effect that installed it — the dismissal it\n// belongs to has already unmounted or re-rendered by the time the click lands.\n// It releases on that click, or on the next gesture if the pointer is dragged\n// away and no click ever arrives, so it can never eat a later one. A keydown\n// releases it too: a gesture that ends with neither a click nor a cancel would\n// otherwise leave it armed, and the click Enter synthesizes on some focused\n// control is not the one this dismissal was owed.\nfunction consumeActivation(source: Event) {\n  const swallow = (event: MouseEvent) => {\n    event.preventDefault();\n    event.stopPropagation();\n    release();\n  };\n  const restart = (event: Event) => {\n    if (event !== source) release();\n  };\n  const release = () => {\n    window.removeEventListener(\"click\", swallow, true);\n    window.removeEventListener(\"pointerdown\", restart, true);\n    window.removeEventListener(\"pointercancel\", restart, true);\n    window.removeEventListener(\"keydown\", release, true);\n  };\n  window.addEventListener(\"click\", swallow, true);\n  window.addEventListener(\"pointerdown\", restart, true);\n  window.addEventListener(\"pointercancel\", restart, true);\n  window.addEventListener(\"keydown\", release, true);\n}\n\n/**\n * Close an open overlay on Escape or a pointerdown outside `ref`. Pass `null`\n * for `ref` when what counts as inside isn't one element, and say so with\n * `ignore` instead.\n *\n * The pointerdown listener is capture-phase: a bubble-phase one is blinded by\n * any handler in between that stops propagation, and an overlay cannot know\n * what it is layered over. `onDismiss` and `ignore` must be stable (wrap in\n * useCallback) so the listeners aren't re-bound every render while open.\n */\nexport function useDismiss(\n  open: boolean,\n  onDismiss: () => void,\n  ref: RefObject<HTMLElement | SVGElement | null> | null,\n  {\n    behavior = \"pass-through\",\n    escape: dismissOnEscape = true,\n    ignore,\n  }: DismissOptions = {},\n) {\n  useEffect(() => {\n    if (!open) return;\n    const inside = (target: Element) =>\n      Boolean(ref?.current?.contains(target)) || Boolean(ignore?.(target));\n    const onKey = (event: KeyboardEvent) => {\n      if (dismissOnEscape && event.key === \"Escape\") onDismiss();\n    };\n    const onPointer = (event: PointerEvent) => {\n      const target = event.target as Element | null;\n      if (!target || inside(target)) return;\n      // Outside this overlay, but inside one that is also open: the gesture is\n      // that overlay's to answer, and swallowing its click from behind would\n      // cost the user the control they actually aimed at.\n      if (behavior === \"consume\" && !claimedByAnotherScope(inside, target)) {\n        consumeActivation(event);\n      }\n      onDismiss();\n    };\n    openScopes.add(inside);\n    window.addEventListener(\"keydown\", onKey);\n    window.addEventListener(\"pointerdown\", onPointer, true);\n    return () => {\n      openScopes.delete(inside);\n      window.removeEventListener(\"keydown\", onKey);\n      window.removeEventListener(\"pointerdown\", onPointer, true);\n    };\n  }, [open, onDismiss, ref, behavior, dismissOnEscape, ignore]);\n}\n"},{"path":"lib/hooks/use-hover-gesture.ts","type":"registry:hook","target":"@lib/hooks/use-hover-gesture.ts","content":"\"use client\";\n\nimport { useMemo, useRef } from \"react\";\nimport { isHoveringPointer } from \"@/lib/touch\";\n\ninterface BoundaryEvent {\n  pointerId: number;\n  pointerType: string;\n  buttons: number;\n}\n\nexport interface HoverGesture {\n  /** True when this enter starts a hover: the pointer arrived resting, not pressing. */\n  enter: (event: BoundaryEvent) => boolean;\n  /** True when this leave ends a hover that entered as one. */\n  leave: (event: BoundaryEvent) => boolean;\n}\n\n/**\n * Pairs a surface's enter with its leave, per pointer.\n *\n * `isHoveringPointer` answers the question the *enter* asks — is this pointer\n * resting on the surface or pressing it — and both boundary cases go wrong if\n * the leave is asked the same question again:\n *\n * - A pen with no hover never rests. It arrives in contact, taps, and the spec\n *   then requires its boundary events after `pointerup`, so the leave carries\n *   `buttons: 0` and reads as a mouse gliding off. Hover teardown then undid\n *   the tap — the panel the pen had just opened closed under it.\n * - A mouse pressed on the surface and dragged off leaves with `buttons: 1`.\n *   Skipping teardown there strands the surface open: the release happens\n *   outside, and no second leave ever comes.\n *\n * So the state a hover holds is released by the pointer that took it, whatever\n * the buttons say at the boundary, and a pointer that arrived in contact never\n * took it in the first place. Contact is the exception tracked here, not\n * hover: a leave from a pointer this surface never saw enter — mounted under\n * the cursor, say — still counts, since the alternative is state with no way\n * out.\n */\nexport function useHoverGesture(): HoverGesture {\n  const contact = useRef(new Set<number>());\n\n  return useMemo(\n    () => ({\n      enter: (event) => {\n        if (isHoveringPointer(event)) {\n          contact.current.delete(event.pointerId);\n          return true;\n        }\n        contact.current.add(event.pointerId);\n        return false;\n      },\n      leave: (event) => {\n        const arrivedInContact = contact.current.delete(event.pointerId);\n        return !arrivedInContact && event.pointerType !== \"touch\";\n      },\n    }),\n    [],\n  );\n}\n"},{"path":"lib/hooks/use-tap-gesture.ts","type":"registry:hook","target":"@lib/hooks/use-tap-gesture.ts","content":"\"use client\";\n\nimport { useMemo, useRef } from \"react\";\n\n/** What a pointerdown recorded, read back by the click that ends its gesture. */\nexport interface TapRecord<S> {\n  /** Which input started the gesture. */\n  pointerType: string;\n  /** What the surface was showing when it started. */\n  state: S;\n}\n\nexport interface TapGesture<S> {\n  /** Record the gesture a pointerdown starts, with the state it starts in. */\n  start: (event: { pointerType: string }, state: S) => void;\n  /** Read the record and clear it. `null` when no pointer is behind this click. */\n  take: () => TapRecord<S> | null;\n  /** Drop the record: this gesture will never spend it on a click. */\n  drop: () => void;\n}\n\n/**\n * The pointer gesture behind a click, recorded where the click cannot report\n * it. A `click` carries no `pointerType` in the engines that matter, so the\n * `pointerdown` before it is the only thing that says which input activated\n * the control — and whether one did at all, since keyboard activation\n * synthesizes a click with no pointer behind it.\n *\n * State goes in with the record because a click reports that no better: a\n * browser that focuses a control on contact can open the very panel the tap\n * was meant to open, and reading \"is it open\" at click time then undoes it.\n * What the gesture started against is what it acts on.\n *\n * The record is spent by one click and dropped by everything else, because a\n * record that outlives its gesture is worse than none:\n *\n * - A scroll or an OS gesture takes the touch away — `pointercancel`, no click\n *   ever — and the finger would sit in the record until some later click.\n * - That later click is often `Enter` on a keyboard, which arrives with no\n *   pointerdown of its own and would inherit the abandoned finger. A keydown\n *   is the start of a keyboard activation and never part of a tap, so it drops\n *   the record too.\n *\n * Both ends have to be wired by the surface: `drop` on `onPointerCancel` and\n * on `onKeyDown`.\n */\nexport function useTapGesture<S>(): TapGesture<S> {\n  const record = useRef<TapRecord<S> | null>(null);\n\n  return useMemo(\n    () => ({\n      start: (event, state) => {\n        record.current = { pointerType: event.pointerType, state };\n      },\n      take: () => {\n        const spent = record.current;\n        record.current = null;\n        return spent;\n      },\n      drop: () => {\n        record.current = null;\n      },\n    }),\n    [],\n  );\n}\n"},{"path":"lib/touch.ts","type":"registry:lib","target":"@lib/touch.ts","content":"// Shared touch primitives. iOS and iPadOS run their own gestures on top of the\n// page — the long-press selection callout and the selection it drags in with\n// it — and they win: once the platform claims a touch it cancels ours\n// mid-gesture, so a press-and-hold or a drag simply dies. Surfaces that own\n// their gesture have to opt out.\n//\n// What the two classes below cover, precisely:\n// - `-webkit-touch-callout: none` stops iOS's long-press callout. WebKit-only:\n//   it is not a property other engines have, so it is inert everywhere else.\n// - `user-select: none` stops the long-press selection on every engine,\n//   Android included, and stops a drag from painting a selection under the\n//   cursor. It is inherited, so it reaches every descendant — which is why the\n//   two classes differ only in whether they apply it unconditionally.\n// What neither covers:\n// - Chrome for Android's long-press menu on a link or an image. No CSS\n//   suppresses it; a gesture surface that wraps one needs its own\n//   `onContextMenu` with `preventDefault()`.\n// - The native drag of an `<img>` or `<a>` descendant. `-webkit-user-drag` is\n//   not inherited and plain divs and buttons are not drag sources, so setting\n//   it on the surface does nothing — the child itself needs `draggable={false}`.\n\n/**\n * Classes for a surface that *is* the control: a thumb, a drum, a stage, a\n * handle, a hold button. Selection is suppressed on every input, because a\n * drag that highlights the control's own label is wrong on a mouse too.\n * Compose with `touch-none` when the surface also owns the scroll axis — leave\n * it off when the page must still scroll from there.\n */\nexport const TOUCH_GESTURE_CLASS = \"select-none [-webkit-touch-callout:none]\";\n\n/**\n * The same opt-out for a gesture surface that wraps content the consumer owns:\n * a scroller, a context-menu trigger, a sheet header, a list row. Selection is\n * suppressed only where the platform runs its own press gestures — a coarse\n * pointer — so a mouse user can still select and copy that content. If the\n * gesture itself would paint a selection under the cursor, add `select-none`\n * for the duration of the gesture rather than reaching for\n * `TOUCH_GESTURE_CLASS`.\n *\n * `pointer: coarse` describes the *primary* pointer and nothing else, so a\n * hybrid machine reads it wrong in both directions: a tablet with a mouse\n * plugged in keeps touch as primary and loses mouse selection, and a laptop\n * with a touchscreen keeps the mouse as primary and leaves selection live\n * under a finger. No media query can answer per interaction — the query is\n * about the device, and the question is about the gesture in progress. The\n * default stays here because it is right on the machines that are one thing or\n * the other, and losing a selection is a nuisance; where the miss costs a\n * *gesture* instead, the surface pairs it with `holdSelection` on the press.\n */\nexport const TOUCH_GESTURE_CONTENT_CLASS =\n  \"[-webkit-touch-callout:none] pointer-coarse:select-none\";\n\n/**\n * Suppress selection on `element` for as long as a gesture is running on it,\n * whatever the primary pointer of the machine happens to be. Returns the\n * release. Inline, so it wins over the class above and is gone again the\n * moment the gesture ends.\n *\n * For the press gestures a native selection would otherwise steal — a\n * long-press that opens a menu. Elsewhere prefer the classes: a surface that\n * takes selection away for the whole session is a surface whose text nobody\n * can copy.\n */\nexport function holdSelection(element: HTMLElement) {\n  element.style.setProperty(\"user-select\", \"none\");\n  element.style.setProperty(\"-webkit-user-select\", \"none\");\n  return () => {\n    element.style.removeProperty(\"user-select\");\n    element.style.removeProperty(\"-webkit-user-select\");\n  };\n}\n\n/**\n * Pointer capture, best effort. WebKit throws `NotFoundError` when the pointer\n * is already gone by the time the handler runs — routine on iOS, where the\n * system can claim the touch first — and an uncaught throw takes the rest of\n * the handler, the gesture included, down with it. Touch pointers carry\n * implicit capture anyway, so losing it is never fatal.\n */\nexport function capturePointer(element: Element, pointerId: number) {\n  try {\n    element.setPointerCapture(pointerId);\n  } catch {\n    // Pointer is no longer active — implicit capture still applies on touch.\n  }\n}\n\n/** Release a capture taken with `capturePointer`, ignoring a stale pointer. */\nexport function releasePointer(element: Element, pointerId: number) {\n  try {\n    if (element.hasPointerCapture(pointerId)) {\n      element.releasePointerCapture(pointerId);\n    }\n  } catch {\n    // Capture was already dropped by the browser.\n  }\n}\n\n/**\n * Whether this event came from a pointer that is *hovering*: not a touch, and\n * not currently pressed. Which input the user is holding right now is not\n * something a device capability can answer — a touchscreen laptop hovers and\n * taps, and iPadOS reports a fine hovering pointer for a finger — so both\n * paths stay live and each handler branches on the event it was given.\n *\n * A pen resting on the glass is making contact, not hovering: `buttons` is the\n * tell, and it sends a pen tap down the same route a finger takes.\n *\n * This answers what an *enter* asks. A leave is the other half of a pair and\n * has to be read against the enter that started it — `useHoverGesture` in\n * `lib/hooks/use-hover-gesture` does that, and hover surfaces should use it\n * rather than asking this question twice.\n */\nexport const isHoveringPointer = (event: {\n  pointerType: string;\n  buttons: number;\n}) => event.pointerType !== \"touch\" && event.buttons === 0;\n"}]}