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

@tensor_1/tokens

v2.7.0

Published

UIx v2 design tokens — the --uix-* contract for house products (Tensor, POSx, SHOPx). One DTCG source -> CSS variables, Tailwind theme, and typed TS constants.

Readme

@tensor_1/tokens

UIx v2 design tokens — the --uix-* contract (colors, typography, spacing, radii, motion, light/dark) for the house products. One DTCG source generates CSS variables, a Tailwind theme, and typed TS constants.

Stack-neutral. Drop the CSS into any project (HTML, React, Vue, Tailwind, server-rendered). The --uix-* names are the contract — override values, never names.

Install

npm i @tensor_1/tokens

Use

Tailwind / shadcn:

@import "@tensor_1/tokens/css";            /* the --uix-* contract (light + dark) */
@import "@tensor_1/tokens/themes/tensor";  /* a product brand */
@import "@tensor_1/tokens/tailwind";       /* @theme — bg-uix-accent, rounded-uix-md, … */
@import "tailwindcss";

(Tailwind v3: presets: [require('@tensor_1/tokens/tailwind/preset')].)

Plain CSS: link @tensor_1/tokens/css, then a product theme.

TS / ECharts / React Native:

import { cssVar, light, dark, num } from "@tensor_1/tokens/ts";

cssVar in the browser (respects brand + dark); light / dark / num for non-DOM (SSR, RN, server-rendered charts).

Brand a project

Override the write-only brand slots; accent / link / ring / brand-muted re-chain automatically:

:root { --uix-brand: #16A34A; --uix-brand-fg: #FFFFFF; }
:root:where(.dark,[data-theme="dark"]) { --uix-brand: #22C55E; }

Exports

| Subpath | What | |---|---| | ./css | the --uix-* contract (:root light, dark selector) | | ./styles | component CSS (use with the tokens + a theme) | | ./tailwind · ./tailwind/preset | Tailwind v4 @theme / v3 preset | | ./ts | typed cssVar / light / dark / num | | ./themes/{tensor,posx,shopx,mission-control} | per-product brand |

Source of truth: tokens/*.json (DTCG) → Style Dictionary. Part of the UIx v2 styleguide.

Primitives — consume, don't fork

The following CSS primitives (and their @tensor_1/react wrappers) are the intended consumption point for the tokens below. If your codebase reimplements any of these, replace it with the primitive so theme/brand overrides, dark mode, and WCAG contrast all apply automatically.

| Primitive | CSS file | Key --uix-* tokens | |---|---|---| | Row selection | table.css tr[aria-selected] | --uix-row-selected-bg | | Table column sizing | table.css .uix-col--w-* / --flex / --truncate / --num · <Table fixed> | --uix-col-w-xs…xl, --uix-col-title-min | | Selection bulk bar | table.css .uix-bulkbar · <BulkBar> | --uix-brand-muted, --uix-accent | | Row hover actions / kebab | table.css .uix-table__actions / .uix-rowact · <RowActions> / <RowAction> | --uix-bg-active, --uix-text-muted | | Expandable row detail | table.css .uix-table__detail / .uix-kv · <ExpandToggle> | --uix-bg-subtle | | Inline cell edit | table.css .uix-cell-edit | --uix-ring, --uix-success | | Column resize grip | table.css .uix-table__resize | --uix-accent | | Search-match highlight | table.css .uix-mark · <Mark> / <Highlighted> | --uix-warning-bg, --uix-warning | | Cell content vocabulary | table.css .uix-cell-strong / -sub / -mono · <CellStrong> / <CellSub> | --uix-text-muted, --uix-font-mono | | Responsive table ladder | table.css .uix-table--priority / --cards | --uix-border, --uix-surface, --uix-shadow-sm | | Record compare view | table.css .uix-compare | --uix-border, --uix-surface, --uix-bg-subtle | | Utilization / threshold bar | meter.css · <Meter> | --uix-attention, --uix-overdue, --uix-warning, --uix-danger | | Triage inbox | inbox.css · <Inbox> / <InboxItem> | --uix-brand-muted, --uix-accent (accent stripe) | | Status + SLA + priority pill | status-pill.css · <StatusPill> | --uix-sla-ok/at-risk/breached, --uix-p1--uix-p5, --uix-attention, --uix-overdue | | Entity detail related-panels | <DetailLayout> (@tensor_1/react) | --uix-surface, --uix-border | | App-shell nav width tiers | app-shell.css .uix-shell[data-nav="full\|rail\|hidden"] · <AppShell nav> | --uix-sidebar-w, --uix-sidebar-w-rail | | Shell focus / full-bleed | app-shell.css .uix-shell[data-focus] / .uix-shell__main--bleed · <AppShell focus mainBleed> | --uix-z-overlay, --uix-space-7 | | Table logic engine | @tensor_1/react table-engine (multiSort / applyFilters / searchRows / serializeView / virtualWindow / selection) | — behaviour primitive; keeps vanilla + React grids identical |

If you reach for var(--uix-danger) or var(--uix-warning) to render SLA urgency or severity, use <StatusPill tone="sla-breached"> or <StatusPill tone="p1"> instead — the component handles WCAG contrast, dark mode, and brand overrides; a raw literal does not.

Likewise, don't fork the data grid: a product-local data-table.tsx (bespoke sort/filter/selection/resize + hand-coded column widths) should be replaced by <Table> + the subcomponents above, composed over the framework-agnostic table-engine (or the useTable hook). Sorting, filtering, search highlighting, saved views, and virtualization then match the vanilla styleguide exactly, and every visual affordance re-themes with the tokens listed here.

Documentation site

A build-free component explorer lives in docs/ — a no-bundler HTML shell (docs/explorer.html) with a left component nav and a per-component page whose regions (overview, live-example, props-table, do-dont, a11y-notes) are keyed by data-region and filled in incrementally. It reuses the styleguide's theming verbatim (the no-flash data-theme script + [data-uix-theme-toggle]) and links the same --uix-* contract via ../styles/main.css, so light/dark behaves identically to index.html. docs/docs.js exposes pure, unit-tested helpers (slugify, componentNav, renderPropsTable) behind a typeof document DOM guard; run node --test docs/docs.test.js.

Serve it from the repo root (the styleguide's static root) so relative asset paths resolve:

npm run docs:serve
# → http://localhost:4178/packages/tokens/docs/explorer.html