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

@spatika/react

v2.3.0

Published

Spatika UI — React design system: semantic tokens, density, application shell, data tables, forms, and overlays

Readme

@spatika/react

React primitives, composites and application patterns for Spatika UI — a calm, information-first design system for SaaS, finance, productivity and admin software. Semantic tokens, four themes, density control, an application shell, data tables, metrics, charts, a calendar and an editor.

Docs: spatika.sweyam.com · Machine index: llms.txt

Install

npm install @spatika/react @spatika/tokens

Peer dependencies: react and react-dom (^18 or ^19).

Quick start

import "@spatika/tokens/styles.css";
import { AppShell, Button, NavItem, NavSection, Sidebar, TopBar } from "@spatika/react";

export function App() {
  return (
    <AppShell
      sidebar={
        <Sidebar>
          <NavSection>
            <NavItem label="Overview" active />
            <NavItem label="Customers" meta="1,284" />
          </NavSection>
        </Sidebar>
      }
      topbar={<TopBar title="Overview" actions={<Button size="sm">New</Button>} />}
    >
      <Page />
    </AppShell>
  );
}

Themes

Set a theme class on <html>: default Mukta, neelam, usha, or sandhya.

import { applyTheme, SpatikaThemeProvider } from "@spatika/react";

applyTheme("neelam");

// or wrap the app
<SpatikaThemeProvider defaultTheme="neelam">
  <App />
</SpatikaThemeProvider>

Button sizes include touch / icon-touch (≥44px) for mobile-first chrome.

What's included

  • Primitives — Button, ButtonGroup, Accordion, Autocomplete, Grid, Menu, Dialog, Stepper, List, Fab, and more
  • Composites — AppHeader, AppSidebar, Card, EntityCard, FloatingPageChrome, CoverHero, FilterSheet, MobileTabBar, CommandSearchField, NotificationBell, Timeline, EventCalendar, EventTimeline, AmountInput, SegmentedControl, Toaster, media cards, PIN/lock chrome, SiteNav, SiteFooter, SectionHeading, Tag
  • Charts — install @spatika/charts (also re-exported from @spatika/react). SVG plots covering the MUI X catalog, plus ChartContainer composition (mixed plots, zoom/pan, brush, syncId, shared tooltips, dual axes, toolbar export)

Utility classes

Prefer @spatika/tokens/styles.css. It includes Spatika's semantic tokens, component recipes, and the utility classes used by the React package. No external CSS framework is required.

Docs

Human docs and live previews: spatika.sweyam.com

Run the documentation site from the monorepo root:

npm run dev

Packages on npm: spatika scope

License

MIT