From 72021ece3c29725e8393b73cb83bfdff390a7f90 Mon Sep 17 00:00:00 2001 From: meh Date: Sun, 16 Aug 2026 17:41:44 +0700 Subject: [PATCH] docs(readme): stop documenting a subpath that no longer ships useVirtualRows went out with TanStack solid-virtual, and the primitives/ virtualizer directory went with it, but the subpath-exports example still imported from it. The release job's package check caught it against the tarball, which is what that gate is for: a README naming a module that does not exist would have shipped to npm unpublishable. Swapped for hooks/table, which ships and makes the same point about narrowing an import. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0aa0e457..38f450f6 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ Everything is available from the root barrel. These exist when you want to be na ```ts import { Button } from "@pathscale/ui/components/button"; -import { useVirtualRows } from "@pathscale/ui/primitives/virtualizer"; +import { useAnchoredOverlayPosition } from "@pathscale/ui/hooks/table"; import { runMotion, enablePopmotion } from "@pathscale/ui/motion"; ```