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

@fylgja/utilpack

v1.2.1

Published

Build and use your own CSS utility classes with Sass using the Fylgja utilpack.

Downloads

65

Readme

Fylgja - utilpack

NPM version license

Build and use your own CSS utility classes with Sass using the Fylgja utilpack.

Installation

npm install @fylgja/utilpack

Then include the component in to your code via;

@use "@fylgja/utilpack";
// Or via PostCSS import
@import "@fylgja/utilpack";

How to use

The util pack comes out of the box with some commonly used utility classes, that can be used directly.

Read the docs to see what is available and see the default utilities classes here.

Config

If you want to add or configure the utility classes to your own taste, look no further, its down here.

Adding util classes

Change the SCSS variable $utilpack(), and use one of the following sample use cases in this map.

By default the key will be used with the value for the class name. If you want to change this behavior, use the key value. See example Sample with number/key values.

Simple Sample

@use "@fylgja/utilpack" with ($utilpack: (
    "text-align": (
        "values": right left
    )
));
// Output =
// .text-align-right{ text-align:right; }
// .text-align-left{ text-align:left; }

Sample with number/key values

@use "@fylgja/utilpack" with ($utilpack: (
    "font-weight": (
        "values": (
            "normal": 400,
            "bold": 700
        )
    )
));
// Output =
// .font-weight-normal{ font-weight:400; }
// .font-weight-bold{ font-weight:700; }

Sample with class

If you want to use a different value for the class, then what the util key name is.

@use "@fylgja/utilpack" with ($utilpack: (
    "text-align": (
        "class": "text",
        "values": right left
    )
));
// Output =
// .text-right{ text-align:right; }
// .text-left{ text-align:left; }

Sample with property

If you want to use a different value for the class, then what the util key name is.

@use "@fylgja/utilpack" with ($utilpack: (
    "flex-fill": (
        "property": "flex",
        "class": "flex",
        "values": (
            "fill": 1 1 auto
        )
    )
));
// Output = .flex-fill{ flex:1 1 auto; }

Sample responsive

@use "@fylgja/utilpack" with ($utilpack: (
    "text-align": (
        "values": right,
        "responsive": true
    )
));
// Output =
// .text-align-right{ text-align:right; }
// @media(min-width: 768px){.md-text-align-right{ text-align:right; }}

Sample print

@use "@fylgja/utilpack" with ($utilpack: (
    "text-align": (
        "values": right,
        "print": true
    )
));
// Output =
// .text-align-right{ text-align:right; }
// @media print{.md-text-align-right{ text-align:right; }}

Sample important

@use "@fylgja/utilpack" with ($utilpack: (
    "text-align": (
        "values": right,
        "important": true
    )
));
// Output = .text-align-right{ text-align:right !important; }

Sample with states (e.g. focus, hover, etc)

@use "@fylgja/utilpack" with ($utilpack: (
    "text-align": (
        "values": right,
        "states": hover focus
    )
));
// Output =
// .focus-text-right:focus,
// .hover-text-right:hover,
// .text-right{ text-align: right; }

Changing the default util classes

You can start fresh by setting the $utilpack-defaults map to false or to a empty map.

@use "@fylgja/utilpack" with (
    $utilpack-defaults: false
);

Or unset a specific default, like the typography.

@use "@fylgja/utilpack" with (
    $utilpack-defaults-typography: false
);

You can also quickly edit various default settings without changing the config, this can be done via;

$enable-utilpack-UTIL-responsive: false;
$enable-utilpack-UTIL-print: false;
$enable-utilpack-UTIL-important: false;
// Sample:
$enable-utilpack-typography-responsive: true;
  • border
  • divider
  • box-alignment
  • color
  • flex
  • display
  • float
  • object
  • overflow
  • visibility
  • index
  • position
  • width
  • height
  • margin
  • padding
  • space
  • typography

Breakpoints

The responsive mode will use the breakpoint values set in the map $utilpack-breakpoints, these are the defaults from the component @fylgja/mq;

// $utilpack-breakpoints: $mq-breakpoints !default;
$mq-breakpoints: (
    "xs": 420px,   // Mobile larger
    "sm": 640px,   // Tablet
    "md": 768px,   // Tablet large
    "lg": 1024px,  // Laptop
    "xl": 1440px,  // Desktop
    "xxl": 2200px, // Large Desktop / TV
) !default;

The key will be used as the prefix name for the utility, and the value is always the min-width media query.

@media (min-width: 420px) {
    .xs-text-bolder {
        font-weight: bolder;
    }
}

It will use the hyphen as default separator, but if you prefer the same separator as seen in TailwindCSS, you can use $utilpack-separator: "\:".

The Tailwind separator can conflict with specific tools and linters, since it uses specific characters that are normally marked as unsafe and needs escaping.

FAQ

If you are using the CSS version instead of the SCSS version, then yes for sure.

If you are using the SCSS version, use the map remove function instead, keeping your dependencies small.

If you plan to use this for all of your CSS needs, similar to TailwindCSS, then yes use it.

We do advice against a utility only approach, always combine it with CSS components for a better HTML and CSS.

We advice to use CSS variables for color management.

If you want to use utils for almost everything, consider adding the following utilpack config, instead using static colors.

@use "@fylgja/utilpack" with ($utilpack: (
    "color": (
        "values": (
            "theme": "var(--color-theme)",
            "accent": "var(--color-accent)"
        )
    )
));

Most grid solutions still rely on the older grid solution, like 12 columns, but now via the CSS grid spec instead. Its is considered a bad solution for handling layouts, and creates a lot of 1 time uses, even with utilities.

If you really must rely on a utility class, we would advise to build your own. Or even better use the @fylgja/autogrid, that uses the power of CSS variables and the grid spec.