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

@version14/ui

v0.7.3

Published

V14 internal UI component library built on Ark UI and PandaCSS

Readme

@version14/ui

CI License: MIT

V14's internal React component library — accessible, headless primitives from Ark UI styled with PandaCSS.


Table of Contents


Overview

@version14/ui provides a curated set of React components used across V14 products. Components are built on top of Ark UI for accessibility and behavior, styled through PandaCSS recipes for full design-token integration.

Key properties:

  • Fully typed — strict TypeScript throughout
  • Accessible — ARIA compliance via Ark UI primitives
  • Themeable — all visual variants are PandaCSS sva() recipes
  • Tree-shakeable JS — dual ESM/CJS build with explicit CSS entrypoints

Getting Started

Prerequisites

| Tool | Version | Install | |------|---------|---------| | Node | >= 20 | nodejs.org | | pnpm | >= 10 | npm i -g pnpm |

Installation

For app usage:

npm install @version14/ui

Import the generated component styles once in your app root:

import "@version14/ui/styles.css";

If you want the bundled Geist and Nyght font faces, import the font stylesheet too:

import "@version14/ui/fonts.css";

For PandaCSS token integration, add the preset to your app's Panda config:

import { defineConfig } from "@pandacss/dev";
import { v14Preset } from "@version14/ui/preset";

export default defineConfig({
  presets: [v14Preset],
});

For local component development:

git clone https://github.com/v14/ui.git
cd ui

git config core.hooksPath .githooks

pnpm install

See docs/getting-started/README.md for the full setup guide.


Development

# Generate PandaCSS styled-system
pnpm prepare

# Start Storybook (component explorer)
pnpm storybook

# Type-check without emitting
pnpm check-types

# Run tests
pnpm test

# Run tests in watch mode
pnpm test:watch

# Build the library
pnpm build

Architecture

.
├── src/
│   ├── components/        # UI components (one folder per component)
│   ├── styled-system/     # PandaCSS generated output — do not edit
│   ├── test/              # Vitest setup and shared test utilities
│   ├── global.css         # PandaCSS layer declarations
│   └── index.ts           # Public API barrel export
├── .storybook/            # Storybook configuration
├── docs/                  # Developer documentation
├── tsconfig.json          # TypeScript — strict mode + path aliases
├── tsup.config.ts         # Library build (dual ESM + CJS)
├── vite.config.ts         # Vite for Storybook
├── vitest.config.ts       # Test runner
└── panda.config.mjs       # PandaCSS configuration

Path aliases available everywhere (IDE, build, tests, Storybook):

| Alias | Resolves to | |-------|-------------| | @/* | src/* | | @styled-system/* | src/styled-system/* |


Contributing

Read CONTRIBUTING.md before opening a pull request.


License

Distributed under the MIT License.