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

@bvs-tech/material

v0.1.1

Published

`bvs-lib` is the generic design system library of BVSTech, built with Angular standalone components and a dynamic, theme-responsive SASS tokens design system.

Readme

BvsLib — BVSTech Design System Library

bvs-lib is the generic design system library of BVSTech, built with Angular standalone components and a dynamic, theme-responsive SASS tokens design system.


🚀 Design Principles

  1. Strict Genericity: Components inside bvs-lib are domain-agnostic. No business logic (e.g. keycloak auth, user profile services, occurrence calculations) is allowed here. Business contexts are handled by local wrapper components in applications.
  2. Open Composition & Transclusion: Molecules and organisms are designed to support open composition using <ng-content> slots (transclusion).
  3. Responsive Themes & Mode Adaptability: All components automatically adapt their colors, borders, and shadows to the light/dark mode and active brand configuration (default, emerald, sunset, amethyst, ruby).

📦 Components Library

🔹 Atoms

AvatarComponent (<bvs-avatar>)

  • Purpose: Displays user initials in a styled circle.
  • Selector: bvs-avatar
  • Inputs:
    • fullName: string (required): Full name used to extract initials (e.g., 'John Doe' -> 'JD').
  • Styling: Gradient background derived from active brand colors.

BadgeComponent ([bvs-badge])

  • Purpose: Displays a status label with semantic coloring and size.
  • Selector: [bvs-badge] (attribute)
  • Inputs:
    • color: 'info' | 'success' | 'warning' | 'danger' | 'neutral'
    • size: 'sm' | 'md' | 'lg'

ButtonComponent ([bvs-button])

  • Purpose: Generic interactive button.
  • Selector: [bvs-button] (attribute)
  • Inputs:
    • variant: 'primary' | 'secondary' | 'danger' | 'ghost'
    • size: 'sm' | 'md' | 'lg'
    • block: boolean: Whether the button takes full width.

CardComponent ([bvs-card])

  • Purpose: Premium glassmorphism container for dashboard widgets/content.
  • Selector: [bvs-card] (attribute)
  • Styling: Adaptable glassmorphism backdrop filter and border thickness.

ErrorMessageComponent ([bvs-error-message])

  • Purpose: Displays a styled, animated validation error message.
  • Selector: [bvs-error-message] (attribute)
  • Styling: Slide-in animation, adapts background and text color to theme.

InputComponent (input[bvs-input], textarea[bvs-input])

  • Purpose: Reusable input and textarea fields.
  • Selector: input[bvs-input], textarea[bvs-input] (attribute)
  • Inputs:
    • variant: 'primary' | 'secondary' | 'danger'
    • size: 'sm' | 'md' | 'lg'
    • block: boolean

🔸 Molecules

FormFieldComponent (<bvs-form-field>)

  • Purpose: Combines label, input, and errors, featuring a premium floating label animation.
  • Selector: bvs-form-field
  • Inputs:
    • label: string (required)
    • forId: string (optional)
  • Usage:
    <bvs-form-field label="E-mail" forId="email-input">
      <input bvs-input id="email-input" placeholder=" " />
    </bvs-form-field>

🌐 Organisms

NavbarComponent (<bvs-navbar>)

  • Purpose: Header container exposing brand and action slots.
  • Selector: bvs-navbar
  • Slots:
    • [navbar-brand]: Main title/logo
    • [navbar-actions]: User menus, buttons, action items
  • Usage:
    <bvs-navbar>
      <div navbar-brand>⬡ BVSTech</div>
      <div navbar-actions>
        <button bvs-button variant="secondary">Login</button>
      </div>
    </bvs-navbar>

🛠️ CLI Commands

Build

To build the library, run the following in frontend/bvs-material:

npm run build

Unit Tests

To run unit tests via Vitest:

npm run test

Storybook Showcase

To start the Storybook sandbox to preview all configurations and brand presets:

npm run storybook