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

@noveo/uikit

v0.3.1

Published

Noveo design system for React — Base UI primitives and components styled to the company's Figma system.

Readme

@noveo/uikit

Noveo's React design system: Base UI primitives restyled with the company's tokens, and batteries-included components composed on top of them and styled to Figma.

Documentation · Storybook

Install

npm install @noveo/uikit
# pnpm add @noveo/uikit
# yarn add @noveo/uikit
# bun add @noveo/uikit

React ^18.3.1 || ^19.0.0 and a matching react-dom are peer dependencies.

Use

import { Button, Dialog, Select } from '@noveo/uikit/ui';
import { Checkbox, Tooltip } from '@noveo/uikit/primitives';
import { SearchIcon, PlusIcon } from '@noveo/uikit/icons';

<Button variant="primary" size="md">
  Save
</Button>;

Wrap the app in AppProvider once. Components render without it, but it mounts the toast viewport — toast.success(…) is callable from anywhere and renders nothing until that viewport exists — and it carries the CSP nonce, text direction and portal container:

import { AppProvider } from '@noveo/uikit/ui';

<AppProvider>
  <App />
</AppProvider>;

Importing from /ui or /primitives pulls the stylesheet and the typeface in for you, and tree-shaking still works — a bundle with one Button carries one Button, not the whole kit. Both are exported directly if you want to control the order:

import '@noveo/uikit/styles.css';
import '@noveo/uikit/fonts.css';

Skip fonts.css if the app already serves Nunito Sans. The faces ship as separate WOFF2 files, so a browser downloads only the weights a page renders.

Two layers

| Import | What it is | | -------------------------- | ----------------------------------------------------------------------- | | @noveo/uikit/primitives | Base UI parts restyled with design tokens — used like Base UI | | @noveo/uikit/ui | Design-system components composed from the primitives, styled to Figma | | @noveo/uikit/icons | Tree-shakeable named icon exports | | @noveo/uikit/base-ui | The whole unstyled Base UI surface, for what the kit does not cover |

Form controls render only the control. Titles, descriptions, required markers and error text belong to the Field wrapper — compose it around any control.

The package ships 96 modules marked "use client", so it works under React Server Components. Plain Rollup warns once per module about the directive; see the installation page for the one-line filter.