budtags/skills/tanstack-virtual/SKILL.md
TanStack Virtual patterns for virtualized lists, tables, and grids with high-performance rendering of large datasets
npx skillsauth add jwilly246/budtags-claude-plugin tanstack-virtualInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
High-performance virtualization for rendering large lists, tables, and grids. Only render what's visible.
01-installation-setup.md - Installation, basic setup02-basic-list.md - useVirtualizer hook, simple list03-table-integration.md - TanStack Table + Virtual integration04-dynamic-heights.md - Variable row heights05-horizontal-virtualization.md - Horizontal scrolling06-grid-virtualization.md - 2D virtualization07-window-scrolling.md - Window as scrollElement08-sticky-items.md - Sticky headers/footers09-performance-optimization.md - Overscan, throttling10-scroll-restoration.md - Restore scroll position11-testing.md - Testing virtualized components12-budtags-integration.md - DataTable.tsx examplesimport { useVirtualizer } from '@tanstack/react-virtual'
const virtualizer = useVirtualizer({
count: items.length,
getScrollElement: () => parentRef.current,
estimateSize: () => 35,
})
development
Use this skill when generating ZPL code, working with ZPL commands, creating Zebra printer labels, or troubleshooting ZPL syntax and formatting issues.
development
Use this skill to verify that code aligns with BudTags coding standards, architectural patterns, and conventions before or after implementation.
development
Use this skill when working with Unleashed Software inventory/order management API integration, syncing inventory, importing orders, managing stock adjustments, or handling customer/product data from Unleashed.
testing
Use when working with TanStack Table for data tables, datagrids, sorting, filtering, pagination, row selection, column customization, or virtualization. Load specific pattern files based on the feature needed.