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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@jambonz/ui-kit

v0.0.21

Published

A minimal, light-weight UI design package for developing frontends for jambonz apps.

Downloads

152

Readme

Overview

A minimal, light-weight UI design system for developing frontends for jambonz apps. It's a kit-of-parts including fonts, a small set of CSS styles, a source set of SASS styles and JavaScript components. Whether you're developing a custom dev stack with tools like vite or webpack you should have no issues utilizing the resources available in the Jambonz UI library package.

Jambonz UI aims to provide foundational design materials like colors, fonts and typography as well as atomic design materials like buttons, icons etc. Currently the library is very lean but is expected to grow thoughtfully as jambonz frontend development continues to mature along this line of thinking. A primary goal of the library is to have a small footprint.

View on bundlephobia.

Installation

Installing the package is easy. You can use any typical package manager for frontend stacks.

npm i @jambonz/ui-kit # or yarn add @jambonz/ui-kit

Developing

Clone this repo and run npm i to install packages.

Before you begin pushing code also run npx husky install for pre-commit hooks.

A note on styles

While we use sass with scss syntax it should be stated that the primary objective is to simply write generally pure css. We take advantage of a few nice features of sass like nesting for BEM module style etc. Here's an example of the BEM style we use:

.example {
  // This is the block

  &--modifier {
    // This is a modifier of the block
  }

  &__item {
    // This is an element

    &--modifer {
      // This a modifer of the element
    }
  }
}

Wherever possible we use css custom properties with our variables but there are a few places in which this is not possible so we use the sass vars there instead, namely for @font-face font-family definitions and @media queries.

Our css variables are defined in sass and we use a simple method for providing them as :root custom properties:

@use "vars";

$root-vars: module-variables("vars");

:root {
  @each $key, $val in $root-vars {
    --#{$key}: #{$val};
  }
}

Overall this approach is convenient as it provides the best of both worlds for users:

  • source sass with variables and mixins for direct import
  • pure css dist with :root custom properties and available selectors

Storybook

You can run and build storybook with the following.

You can view the storybook static site here.

# run local storybook
npm run storybook

# build local storybook
npm run build-storybook

Publishing

Always follow these steps to publish this package: jambonz-ui.

# build and package
# generates the `pkg` directory
npm run build

# publish the `pkg`
cd pkg && npm publish

Documentation

Best to just check out the jambonz-ui docs for a more in-depth resource.