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

@precisa-saude/ui

v1.8.0

Published

Shared React components and hooks for Precisa Saúde sites and apps.

Readme

@precisa-saude/ui

Shared React components, hooks, and utilities for Precisa Saúde sites and apps.

Built on Base UI (shadcn base-nova style) for headless primitives. Uses the tokens from @precisa-saude/themes for styling; consumers should import that package's CSS first.

Status

In early development. Current surface:

  • utils/cn() — Tailwind class merger (clsx + tailwind-merge)
  • hooks/useMediaQuery — SSR-safe matchMedia subscription
  • hooks/useWideGrid / useDesktop — viewport breakpoints aligned with @precisa-saude/themes/grid.css
  • hooks/useGridCol — inline-style builder for the 14/16-col grid
  • hooks/useReducedMotionprefers-reduced-motion subscription
  • decorative/CornerSquares — two-square corner accents on the responsive grid
  • decorative/DuotoneFilter — SVG filter for duotone image treatments (dark shadows → light highlights, configurable)
  • decorative/GridOverlay — dev-mode fixed overlay that visualizes the 14/16-col grid (press g to cycle)
  • decorative/MosaicBg — canvas-based animated mosaic background with OKLCh color interpolation
  • primitives/Button — Base UI button with CVA variants (default/outline/secondary/ghost/destructive/link × xs/sm/default/lg/icon sizes)
  • primitives/Badge — pill label with CVA variants (default/secondary/destructive/outline + success/warning/elevated/critical/info semantic variants)
  • primitives/Tooltip — Base UI tooltip (Provider/Root/Trigger/Content sub-components + convenience Tooltip wrapper)
  • primitives/Select — Base UI select with full sub-component set (Trigger/Content/Item/Label/Separator/Group/Value/ScrollUp/ScrollDown)
  • primitives/Dialog — Base UI dialog with built-in backdrop + close button (Root/Trigger/Portal/Backdrop/Content/Header/Footer/Title/Description/Close)
  • primitives/Tabs — Base UI tabs (Root/List/Trigger/Panel/Indicator)
  • primitives/Accordion — Base UI accordion with chevron that rotates on open (Root/Item/Header/Trigger/Panel)
  • primitives/Popover — Base UI popover (Root/Trigger/Portal/Content/Close)
  • primitives/Switch — Base UI toggle switch
  • primitives/Checkbox — Base UI checkbox with determinate + indeterminate states
  • primitives/Field — Base UI form field (Root/Label/Control/Description/Error/Validity)
  • layout/PageContainer — top-level 14/16-col grid wrapper
  • layout/SectionContainer — section wrapper with configurable vertical spacing
  • marketing/Marquee — seamless horizontally-scrolling container with edge fade + reduced-motion support
  • marketing/Callout — info/success/warning/critical/note alert block (maps to --status-* tokens)
  • marketing/StatsGrid — responsive grid of label/value stat cards
  • marketing/FeatureGrid — responsive grid of icon/title/description feature cards
  • cards/ActionCard — icon + title + subtitle + chevron clickable card (renders as <a> or <button>)
  • cards/NewsCard — news/blog card with compact and hero layouts (tag badge, title, date, excerpt, tag pills, optional hero image)
  • navigation/Breadcrumbs — simple segmented breadcrumbs with customizable separator
  • navigation/NavigationalBreadcrumbs — breadcrumbs where each segment opens a searchable Popover of sibling options (with status dots, icons, check indicator)
  • navigation/SlidingTabs — pill-shaped tabs with an animated indicator (built on Base UI Tabs)
  • navigation/Pagination — numbered pagination with prev/next + optional page-size selector
  • primitives/Menu — Base UI dropdown menu with Item / CheckboxItem / RadioItem / Group / Label / Separator / Shortcut / SubmenuRoot + SubmenuTrigger
  • primitives/Toast — Base UI toast system (Provider + Viewport + Root + Title + Description + Action + Close). Use useToastManager() from @base-ui/react/toast to emit imperatively.
  • layout/Header — fixed top nav with logo slot, desktop nav items, action slot, mobile-toggle button
  • layout/Footer — site footer with logo / socials / legal links / app-store badges / version pill (click to copy)
  • layout/MobileDrawer — slide-out drawer with profile header (avatar + name + email), menu list (icon + label + optional danger color), and footer slot (typically a version string)
  • marketing/Hero — layout shell with eyebrow + title + subtitle + primary/secondary CTAs + optional side slot; bring your own background
  • marketing/CodeExample — syntax-highlighted code block with optional copy button. Shiki is an optional peer: pass a pre-built highlighter, pre-rendered HTML, or skip both for plain-text fallback.
  • charts/ChartContainer — recharts ResponsiveContainer wrapper that applies token-backed grid/axis/tooltip styling. Recharts is an optional peer — consumers pass ResponsiveContainer in as a prop.
  • charts/ChartTooltip — shared contentStyle / itemStyle / labelStyle / cursor presets for recharts <Tooltip> + a ChartTooltipBox helper for custom tooltips.
  • charts/ParticleCanvas, charts/WaveCanvas — pure canvas animation primitives (promoted from platform's radar-chart). Honor prefers-reduced-motion.

Install

pnpm add @precisa-saude/ui @precisa-saude/themes

Peer dependencies: react@^19, react-dom@^19.

Use

Utilities

import { cn } from '@precisa-saude/ui/utils';

<div className={cn('px-4 py-2', isActive && 'bg-primary')} />;

Hooks

import { useGridCol, useMediaQuery, useReducedMotion, useWideGrid } from '@precisa-saude/ui/hooks';

function Hero() {
  const col = useGridCol();
  const reduced = useReducedMotion();

  return (
    <section className="grid grid-cols-[repeat(var(--grid-cols),1fr)] gap-4">
      <h1 style={col(3, 10)}>Welcome</h1>
      {!reduced && <video autoPlay loop muted src="/hero.webm" />}
    </section>
  );
}

Convenience root import

import { cn, useWideGrid } from '@precisa-saude/ui';

Sub-path exports

| Path | Contents | | ------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | | @precisa-saude/ui | Everything (re-exports from all sub-paths) | | @precisa-saude/ui/utils | cn | | @precisa-saude/ui/hooks | useMediaQuery, useWideGrid, useDesktop, useGridCol, useReducedMotion | | @precisa-saude/ui/decorative | CornerSquares, DuotoneFilter, GridOverlay, MosaicBg | | @precisa-saude/ui/primitives | Button, Badge, Tooltip, Select, Dialog, Tabs, Accordion, Popover, Switch, Checkbox, Field, Menu, Toast (+ sub-components / variants) | | @precisa-saude/ui/layout | PageContainer, SectionContainer, Header, Footer, MobileDrawer | | @precisa-saude/ui/marketing | Marquee, Callout, StatsGrid, FeatureGrid, Hero, CodeExample | | @precisa-saude/ui/cards | ActionCard, NewsCard | | @precisa-saude/ui/navigation | Breadcrumbs, NavigationalBreadcrumbs, SlidingTabs, Pagination | | @precisa-saude/ui/charts | ChartContainer, ChartTooltipBox, chartTooltipStyles, ParticleCanvas, WaveCanvas |

Tree-shakable: bundle only what you import.

License

Apache-2.0