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

@povio/ui

v2.1.20

Published

UI Components that match Povio's Atlas Design System.

Readme

@povio/ui

UI Components that match Povio's Atlas Design System.

Installation

yarn add @povio/ui

Versioning

Major and minor version will correspond to the Atlas version (v2.1.0 corresponds Atlas 2.1) and patch versions are fixes/updates within that Atlas version.

Requirements

Tailwind 4

@povio/ui is using Tailwind 4 for styling so your project should also use Tailwind version 4. This is especially noticable with modifier classes (important modifier or child selectors) which changed between version 3 and 4.

Tailwind version 4 also defaults to cursor: default for buttons which differs from version 3. In order to alleviate that add the following snippet to your base styles:

@layer base {
  button:not(:disabled),
  [role="button"]:not(:disabled) {
    cursor: pointer;
  }
}

This is required for buttons to behave as expected. It is based on Tailwind Upgrade Guide.

In order for Tailwind to also compile classes for @povio/ui package, you need to include @source directive in Tailwind config. In your globals.css add (make sure path is correct):

@source "../../node_modules/@povio/ui/dist";

React Aria

We are using react-aria-components for our UI components including their plugin for Tailwind that makes classes for modifiers a bit shorter. As such, make sure to install and setup tailwindcss-react-aria-components

Translations

We're using i18next for translations. Make sure the package versions match in your project. Out of sync major version might cause issues.

Overriding translations

To override the translations, add a partial ui-translation.json file for the locale (same structure as the translation.json in @povio/ui package) and merge it into the UI namespace.

// src/config/locales/en/ui-translation.json
{
  "ui": {
    "fileUpload": {
      "emptyText": "Upload file"
    }
  }
}
// src/config/i18n.ts
import { resources as uiDefaultResources, ns as uiNs } from "@povio/ui";
import deepMerge from "deepmerge";

import uiTranslationEN from "./locales/en/ui-translation.json";

const uiResources = deepMerge(uiDefaultResources, { en: { [uiNs]: uiTranslationEN } });
export const resources = deepMerge(defaultResources, uiResources);

Misc

We're using a helper class for flex, so make sure to add this into your base css as well:

.flex-fill {
  flex: 1 0 0;
}