npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@uifn/svelte

v0.0.2

Published

GA Svelte adapter for uifn primitives

Readme

@uifn/svelte

Unstyled, accessible Svelte primitives built on @uifn/core.

Status

GA. This package is release-blocking together with @uifn/core and @uifn/react.

The canonical package matrix and compatibility matrix live in the root uifn/README.md.

Installation

npm install @uifn/core @uifn/svelte

Usage

<script lang="ts">
  import { Checkbox, CheckboxIndicator } from "@uifn/svelte";
</script>

<Checkbox>
  <CheckboxIndicator>✓</CheckboxIndicator>
</Checkbox>

Public Surface

@uifn/svelte currently ships the family names Accordion, AlertDialog, Avatar, Badge, Checkbox, Collapsible, Combobox, ContextMenu, Dialog, DropdownMenu, HoverCard, Label, MenuBar, Popover, Progress, RadioGroup, ScrollArea, Select, Separator, Slider, Switch, Tabs, Toast, Toggle, ToggleGroup, Toolbar, Tooltip, and VirtualizedList.

The root Svelte entry point is the authoritative source for the exact currently shipped symbols. This README intentionally names family roots only; it does not imply unsupported extras such as TooltipProvider, TooltipArrow, ComboboxEmpty, combobox multiple selection, or unshipped ContextMenu checkbox/radio/submenu parts.

Display-helper contract:

  • Avatar, Badge, Label, Separator, and VirtualizedList are part of the GA Svelte adapter surface.
  • AvatarFallback rendering is deterministic: fallback remains visible until avatar status becomes loaded, and optional delayMs postpones fallback visibility until that delay elapses.
  • VirtualizedList is adapter-only and not part of @uifn/core.
  • VirtualizedList defaults overscan to 3.

Packaging note:

  • @uifn/svelte intentionally ships src/index.ts, src/*.svelte, and supporting src/internal/*.ts implementation files because the public Svelte entry point compiles from source.
  • Those supporting files are not stable public subpath APIs.

Release Policy

See the root uifn/README.md for the compatibility matrix, the release-blocking package matrix, and the verify:uifn-release contract.

Example Playground

The Svelte playground lives in uifn/examples/svelte-playground and is documented from the shared example hub at uifn/examples/README.md.

Run it from the repository root with:

npm --workspace @uifn/examples run dev:svelte

License

MIT