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

ungic-sass-utils

v1.1.5

Published

Dart SASS module which contains a set of helper methods.

Downloads

272

Readme

Ungic SASS utils

ungic-sass-utils - this is a Dart SASS module which contains a set of helper methods.

Get Started

First add ungic-sass-utils npm package to your project

npm install "ungic-sass-utils"

and use it as a module in your sass projects:

@use "ungic-sass-utils" as un-utils;

// or
@use "ungic-sass-utils" as *;

Documentation

str-replace

  • Type: function

  • Parameters:

    • $string - string to be searched
    • $search - search value
    • $replace - replacement value
    • $global Boolean - global replacement, if false - replace only the first matching element
  • Usage: un-utils.str-replace($string, $search, $replace: '', $global: true)

    This method searches and replaces the value in the string and returns the result.

insert-nth

  • Type: function

  • Parameters:

    • $list List - sass list to which the item should be inserted
    • $index Number - list item index where the new item will be inserted
    • $value - new value to be inserted
  • Usage: un-utils.insert-nth($list, $index, $value)

    This method inserts a new item by index into the sass list and returns the result.

    $list: (1,3,4);
    
    // 1, 2, 3, 4
    @debug un-utils.insert-nth($list, 2, 2);

remove-nth

  • Type: function

  • Parameters:

    • $list List - sass list from which to remove the item by its index
    • $index Number - index of list item
  • Usage: un-utils.remove-nth($list, $index)

This method removes a value from the list by its index

replace-nth($list, $index, $replaceable_value)

  • Type: function

  • Parameters: $list List - sass list in which to replace the list item $index Number - index of the item to be replaced $replaceable_value - New list item

  • Usage: un-utils.replace-nth($list, $index, $replaceable_value)

    Replace a specific list item by its index

deep-merge

  • Type: function

  • Parameters:

    • $source-map - Map
    • $secondary-map - Map
  • Usage: un-utils.deep-merge($source-map, $secondary-map)

    Method for deep merging of two sass maps

merge

  • Type: function

  • Parameters:

    • $maps... - Maps
  • Usage: un-utils.merge($maps...)

    Merge any number of sass maps using the deep-merge method

px

  • Type: function

  • Parameters:

    • $num - Number
  • Usage: un-utils.px($num)

    Return value in px

    @use "ungic.utils" as un-utils;
    
    // the result will be 16px
    @debug un-utils.px(16px);
    @debug un-utils.px(16em);
    @debug un-utils.px(16vh);
    @debug un-utils.px(16%);
    @debug un-utils.px(16);

em

  • Type: function

  • Parameters:

    • $px - Number - the value to be converted
    • $def - Number - relative to this number
  • Usage: un-utils.em($px, $def)

    @use "ungic.utils" as un-utils;
    
    @debug un-utils.em(16px, 18px); // 0.8888888889em

inv

  • Type: function

  • Parameters:

    • $number Number
  • Usage: un-utils.inv($number)

    Returns an inverted number

negative

  • Type: function

  • Parameters:

    • $number Number
  • Usage: un-utils.negative($number)

    Returns a negative number

unit-merge

  • Type: function

  • Parameters:

    • $number Number
    • $unit Unit
  • Usage: un-utils.unit-merge($number, $unit)

    Returns the merged number with the unit

strip-unit

  • Type: function

  • Parameters:

    • $number Number
  • Usage: un-utils.strip-unit($number)

    Returns a number without a unit

char

  • Type: function

  • Parameters:

    • $character-code Charcode
  • Usage: un-utils.char($character-code)

    Adds a backslash to the charcode

    @use "ungic.utils" as un-utils;
    
    @debug un-utils.char(f10); // "\f10"

Utils for RTLCSS plugin

Note! These tools use comments as required by the RTLCSS plugin, and therefore, in order for this to work, you need to enable the "save comments" option in the sass compiler!

Webpack and sass-loader the configuration could be as follows:

module: {
    rules: [
        {
            test: /\.scss$/,
            use: [
                "style-loader",
                {
                    loader: "css-loader",
                    options: {
                    url: false,
                    import: false,
                    },
                },
                {
                    loader: "postcss-loader",
                    options: {
                    postcssOptions: (loaderContext) => {
                        let plugins = [
                            require("postcss-rtl")(), // you can use this plugin, it also uses the RTLCSS plugin
                            require("autoprefixer")()
                        ]
                        return {
                            plugins
                        }
                    
                    }
                },
                {
                    loader: "sass-loader",
                    options: {
                        implementation: require("sass"),
                        sassOptions: {
                            outputStyle: "expanded", // Perhaps this can also help keep the structure of the comments
                            sourceComments: true // Saving comments 
                        }
                    }
                }
            ]
        }
    ]
}

dir

  • Type: function

  • Parameters:

    • $ltr value for LTR
    • $rtl value for RTL
  • Usage: un-utils.dir($ltr, $rtl)

    Returns the value depending on the direction mode

    @use "ungic.utils" as un-utils;
    
    body {
    	font-family: un-utils.dir("Roboto", "Rubik")
    }
    [dir=ltr] body {
    	font-family: "Roboto"
    }
    
    [dir=rtl] body {
    	font-family: "Rubik"
    }

rtli, rtl-ignore

  • Type: function

  • Parameters:

    • $val
  • Usage: un-utils.rtli($val)

    This function indicates that this property will be ignored by the rtlcss plugin

    @use "ungic.utils" as *;
    
    body {
    	border-left: 10px;
    	margin-left: rtli(10px);
    }
    [dir=ltr] body {
    	border-left: 10px
    }
    [dir=rtl] body {
    	border-right: 10px
    }
      
    body {
    	/* This property was not processed */
    	margin-left: 10px
    }

rtl-prepend

  • Type: function

  • Parameters:

    • $value - the default value to be assigned in LTR mode
    • $rtl-prepend - the value to be prepended into the RTL mode
    • $sep - separator
  • Usage: un-utils.rtl-prepend($value, $rtl-prepend, $sep:' ')

    Insert the value before the default value in RTL mode

    @use "ungic.utils" as un-utils;
    
    $font-family: un-utils.rtl-prepend('-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"', 'Heebo', ',');

rtl-append

  • Type: function

  • Parameters:

    • $value - the default value to be assigned in LTR mode
    • $rtl-prepend - the value to be appended into the RTL mode
    • $sep - separator
  • Usage: un-utils.rtl-append($value, $rtl-append, $sep: ' ')

    Insert the value after the default value in RTL mode