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

@mixerx/uikit

v0.1.14

Published

MixerX UI Kit

Readme

MixerX UI Kit

Company: DAI Project: MixerX Scope: Shared UI component library (@mixerx/uikit)


A React TypeScript UI kit for MixerX applications. Provides production-ready, accessible components with SCSS Modules, Storybook documentation, and dual-format (ESM + CJS) distribution via npm.

Components

Button, Checkbox, Dot, Dropdown, EditorToolbar, Input, Loader, Notification, Modal, Pagination, Radio, SliderPagination, Table, Tabs, Tag, Toggle, Tooltip, Typography.

Full documentation and interactive examples available in Storybook.

Tech Stack

  • Framework: React 18 with TypeScript (strict mode)
  • Styling: SCSS Modules + clsx
  • Icons: @icon-park/react
  • Font: IBM Plex Mono (@fontsource/ibm-plex-mono)
  • Build: Rollup (ESM + CJS + .d.ts)
  • Documentation: Storybook 8 (React + Vite) with A11y addon
  • Testing: Jest + @testing-library/react + jest-axe
  • Code Quality: ESLint, Prettier, TypeScript strict

Requirements

  • Node.js: >= 18.0.0
  • npm: >= 9.0.0

Getting Started

Install

npm install

Run Storybook

npm run storybook

Open http://localhost:6006.

Useful commands

npm run build            # Rollup build (ESM + CJS + types)
npm run storybook        # Storybook dev server (port 6006)
npm run build-storybook  # Static Storybook build
npm run test             # Jest tests (a11y)
npm run lint             # ESLint
npm run type-check       # TypeScript check
npm run format           # Prettier check
npm run format:fix       # Prettier fix

Installation (as dependency)

npm install @mixerx/uikit

Peer dependencies

npm install react react-dom

Usage

import { Button, Input } from '@mixerx/uikit';

const App = () => (
  <div>
    <Button variant="primary" size="md" onClick={() => {}}>
      Click me
    </Button>
    <Input label="Email" placeholder="[email protected]" mask="email" />
  </div>
);

SCSS tokens

Design tokens (colors, typography, spacing) are exported as SCSS variables:

@use '@mixerx/uikit/styles/variables' as *;

.my-button {
  background: $color-primary-900;
  font-family: $font-family-primary;
  font-size: $text-md-size;
}

Branch rule naming

[feat/bug][YY][MM]/[jira-id]-[jira issue title]
  • feat - for features
  • bug - for bugs/fixes
  • YY - year in 2 digits
  • MM - month in 2 digits
  • jira-id - jira identificator of issue like MXR-5

Example of branch name:

feat2512/mxr-17-frontend-prototype-version-for-ipfs

If you have one large task, branches can share the same name with a numeric suffix:

feat2512/mxr-17-frontend-prototype-version-for-ipfs-1
feat2512/mxr-17-frontend-prototype-version-for-ipfs-2

PullRequest rule naming

Get the Jira issue ID and use the format "JIRA-ID: Issue Title".

Example of PR name:

MXR-5: Frontend prototype version for IPFS

Branch cleanup

After merging a PR into develop, delete the feature branch.

Publishing

npm run build
npm publish --access public

Requires npm access to @mixerx organization with publish permissions.