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

@mgomezw/bioma

v0.1.0

Published

Bioma 2.0 Design System - Angular component library with comprehensive design tokens

Readme

Bioma 2.0 Design System

Angular License npm version

A comprehensive Angular component library with a robust design token system for building consistent, accessible user interfaces.

Features

  • 🎨 Comprehensive Design Tokens - 150+ semantic and foundation tokens for colors, spacing, typography, shadows, and more
  • 🧩 Angular 21.1 Standalone Components - Modern, tree-shakeable components
  • Accessibility First - WCAG-compliant components with built-in a11y features
  • 📱 Responsive - Mobile-first design with Bootstrap 5.3 integration
  • 🎭 Theming Support - Light/dark mode ready with semantic tokens
  • 📚 Storybook Documentation - Interactive component playground and documentation
  • 🔤 Material Symbols - 2,500+ icons via Google's Material Symbols

Installation

npm install @mgomezw/bioma

Peer Dependencies

This library requires the following peer dependencies:

npm install @angular/common @angular/core @angular/platform-browser rxjs

Quick Start

1. Import Components

Import standalone components directly into your Angular application:

import { Component } from '@angular/core';
import { ButtonComponent } from '@mgomezw/bioma';

@Component({
  selector: 'app-root',
  standalone: true,
  imports: [ButtonComponent],
  template: `
    <bio-button
      label="Click Me"
      variant="filled"
      size="large"
      (clicked)="handleClick($event)">
    </bio-button>
  `
})
export class AppComponent {
  handleClick(event: MouseEvent) {
    console.log('Button clicked!', event);
  }
}

2. Import Design Tokens

Add the design tokens stylesheet to your global styles:

// src/styles.scss
@import '@mgomezw/bioma/src/styles/tokens';

Or import in your angular.json:

{
  "projects": {
    "your-app": {
      "architect": {
        "build": {
          "options": {
            "styles": [
              "node_modules/@mgomezw/bioma/src/styles/tokens.scss",
              "src/styles.scss"
            ]
          }
        }
      }
    }
  }
}

3. Use Design Tokens

Access design tokens via CSS custom properties:

.my-component {
  color: var(--text-primary);
  background-color: var(--bg-default);
  padding: var(--spacing-4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

Available Components

Button Component

Full-featured button with multiple variants, sizes, and states:

import { ButtonComponent } from '@mgomezw/bioma';

Properties:

  • label - Button text
  • variant - 'filled' | 'outlined' | 'flat' | 'link'
  • size - 'small' | 'medium' | 'large'
  • disabled - Boolean
  • fullWidth - Boolean
  • iconStart, iconEnd - Material Symbol icon names
  • (clicked) - Click event emitter

Example:

<bio-button
  label="Submit"
  variant="filled"
  size="large"
  [iconStart]="true"
  iconStartName="send"
  (clicked)="onSubmit()">
</bio-button>

IconFont Component

Material Symbols icon component:

import { IconFontComponent } from '@mgomezw/bioma';

Example:

<bio-icon-font
  icon="home"
  size="24"
  type="rounded">
</bio-icon-font>

Token Documentation Components

For building design system documentation:

import { TokenTableComponent, TokenDocComponent } from '@mgomezw/bioma';

Design Tokens Reference

Color Tokens

// Neutral palette
--neutral-50, --neutral-100, ..., --neutral-950
--neutral-white, --neutral-black

// Brand palette (Bioma Red)
--brand-50, --brand-100, ..., --brand-950

// Semantic colors
--text-primary, --text-secondary, --text-muted
--bg-default, --bg-subtle, --bg-muted
--border-subtle, --border-default, --border-strong

Spacing Tokens

--spacing-0  // 0px
--spacing-1  // 4px
--spacing-2  // 8px
--spacing-3  // 12px
--spacing-4  // 16px (base)
--spacing-6  // 24px
--spacing-8  // 32px
--spacing-12 // 48px
--spacing-16 // 64px

Typography, Shadows, and More

See the full token documentation in Storybook.

Development

Running Storybook Locally

git clone https://github.com/sapuk-ai/bioma.git
cd bioma
npm install
npm run storybook

Visit http://localhost:6006 to explore components.

Building the Library

npm run build:lib

Output: dist/bioma/

Browser Support

  • Chrome (latest)
  • Firefox (latest)
  • Safari (latest)
  • Edge (latest)

License

Copyright © 2026 Bioma. All rights reserved.

This is proprietary software. See LICENSE for details.

Support

For issues, questions, or feature requests, please contact the Bioma development team.


Built with ❤️ using Angular 21.1 and modern web standards.