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

@camtomlabs/malix-design-system

v0.1.7

Published

Malix Design System combined package with components, tokens, and bundled styles.

Readme

@camtomlabs/malix-design-system

Malix Design System — a React component library by Camtom Labs. Ships pre-built with full TypeScript types, design tokens, and ready-to-use CSS.

Installation

npm install @camtomlabs/malix-design-system
# or
pnpm add @camtomlabs/malix-design-system
# or
yarn add @camtomlabs/malix-design-system

Peer dependencies — make sure your project has these installed:

npm install react react-dom

Setup

Import the bundled stylesheet once in your app's entry point (e.g. main.tsx, layout.tsx, or _app.tsx):

import '@camtomlabs/malix-design-system/styles.css';

That's it. All components are styled and ready to use.

Usage

import { Button, Input, Card } from '@camtomlabs/malix-design-system';

export function MyPage() {
  return (
    <Card>
      <Input placeholder="Enter your email" />
      <Button hierarchy="primary">Continue</Button>
    </Card>
  );
}

Design Tokens

Malix uses a CSS custom-property token system for colors, spacing, typography, and radius. You can also import the tokens stylesheet separately:

import '@camtomlabs/malix-design-system/tokens.css';

Or access the token registry programmatically:

import { tokenRegistry } from '@camtomlabs/malix-design-system';

Components

Atoms

| Component | Description | |-----------|-------------| | Avatar | User avatar with image or initials fallback | | Badge | Status or count indicator | | Divider | Horizontal or vertical separator | | Pill | Compact label/tag element | | StatusDot | Small colored status indicator |

Buttons

| Component | Description | |-----------|-------------| | Button | Primary action button with hierarchy and variant props |

Form Inputs

| Component | Description | |-----------|-------------| | Checkbox | Checkbox input with label | | DateInput | Date picker input | | Input | Text input field | | InputGroup | Grouped inputs with shared label/error | | Radio | Radio button input | | SearchInput | Input with built-in search icon | | Select | Dropdown select | | SelectGroup | Grouped select options | | Textarea | Multi-line text input | | Toggle | On/off toggle switch |

Navigation

| Component | Description | |-----------|-------------| | Breadcrumb | Breadcrumb trail navigation | | FilterTabs | Horizontal tab filters | | FlyoutMenu | Flyout dropdown navigation menu | | Header | Top-level app header | | SidebarItem | Individual sidebar navigation item | | SidebarPanel | Full sidebar navigation panel | | TabBar | Tab bar with multiple items |

Layout

| Component | Description | |-----------|-------------| | Card | Surface container with elevation levels | | SectionHeader | Page section heading with optional action | | SplitPane | Resizable two-panel layout |

Data Display

| Component | Description | |-----------|-------------| | DataTable | Sortable data table with columns/rows | | FileCard | File attachment preview card | | Pagination | Page navigation controls | | StatCard | Metric card with change indicator | | Stepper | Multi-step progress tracker |

Feedback

| Component | Description | |-----------|-------------| | Banner | Full-width informational banner | | EmptyState | Placeholder for empty content areas | | OperationStatus | Async operation status display | | ProgressBar | Linear progress indicator | | Tooltip | Contextual hover tooltip | | ValidationAlert | Inline form validation message |

Overlays

| Component | Description | |-----------|-------------| | GlassPopover | Glassmorphism-styled popover | | Modal | Full-screen modal dialog | | OnboardingPopover | Guided onboarding popover | | Overlay | Backdrop overlay layer |

Interactive / Composite

| Component | Description | |-----------|-------------| | Accordion | Collapsible content sections | | ChatInput | Rich chat message input | | CreditsIndicator | Usage credits display | | Dropzone | File drag-and-drop upload area | | LanguageSelector | Locale/language switcher | | PricingCard | Subscription plan pricing card | | SegmentedControl | Multi-option segmented selector | | SelectionCard | Selectable card option | | UserProfilePopover | User profile menu popover | | ChatBubble | AI/user message bubble for chat UIs | | AIAssistantPanel | Full AI chat panel with messages and input |

TypeScript

All components ship with TypeScript declarations. Named types are also exported for use in your own code:

import type { ButtonProps, ButtonHierarchy, ButtonVariant } from '@camtomlabs/malix-design-system';

Package Exports

| Import path | Description | |-------------|-------------| | @camtomlabs/malix-design-system | All components and types | | @camtomlabs/malix-design-system/styles.css | Full component stylesheet | | @camtomlabs/malix-design-system/tokens.css | Design tokens only | | @camtomlabs/malix-design-system/tokens.registry.json | Token registry JSON |

License

MIT © Camtom Labs