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

patternlab-plugin-darkmode

v1.0.2

Published

A PatternLab plugin to toggle dark mode in your pattern CSS. Works with Tailwind or any CSS based on a body class.

Downloads

185

Readme

Darkmode Plugin for Pattern Lab Node

Do you ever build your components with a light and dark theme, to use depending on a user's prefers-color-scheme or a dynamically set class, or just want to toggle between how components would look in two themes you're developing? I found this difficult to do with Pattern Lab, so I added a button to the left of the configuration button that would toggle a dark mode class on a top level element across my entire pattern library.

The configuration options are easy, but should be versatile enough to use with most CSS frameworks, including TailwindCSS.

Installation

To add the UI Extension Plugin to your project using npm type:

npm install patternlab-plugin-darkmode --save

Or add it directly to your project's package.json file and run npm install

As far as I can tell, the next big of functionality is no longer supported by Pattern Lab, or at least I couldn't get it to work with any plugins I tried. I'm leaving it here for legacy purposes.

During installation, the plugin is added as a key to the plugins object in your main Pattern Lab project's patternlab-config.json file

If you don't see this object, manually add it as per the example below.

Configuration

Post-installation, you will see the following in your patternlab-config.json:

Example:

"plugins": {
  "patternlab-plugin-darkmode": {
    "enabled": true,
    "initialized": false,
    "options": {
      "className": "dark-mode",
      "targetElement": "body",
    }
  }
}

The two configuration options are fairly self explanatory. className is whatever class you want to appear when the button is pushed. targetElement is whichever element you want the class to appear on within the iFrame that loads all your patterns. targetElement can take an element name, like "body" or "html", a class selector, such as ".content" or any string that can be passed into .querySelector().