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

direction-mixins

v1.4.7

Published

A set of mixins and functions to handle values for both RTL and LTR layouts

Downloads

6

Readme

direction-mixins

Direction-mixins is a collection of mixins and functions you can use to have two separate css files but only have to write (and thus maintain) one file. Instead of using the traditional declarations you can use mixins that will transform your values based on a variable.

Setup

Step 1

Download them or add them to your project with npm:

npm install --save direction-mixins

Step 2

Create a partial which will contain all your styling and import the mixins as you were creating a stylesheet for one direction (e.g _screen.scss).

Step 3

Create two files (e.g. screen-ltr.scss and screen-rtl.scss and set the direction variable to the correct direction. Your file will look something like this:

$direction: rtl;
@import "screen";

Step 4

Start using mixins and functions for your declarations that depend on horizontal position (e.g. margins, paddings, left and right positions. Don't forget to add the direction variable to body.

body {
	direction: $direction;
}

Basic examples for declarations

This package contains a set of mixins that can be used for both short-hand and single-hand properties. Let's say you want to have a margin on the left of 20 pixels:

Shorthand properties

@include margin(0 0 0 20px);

This will be transformed to:

margin: 0 0 0 20px; /* LTR direction */

And for the RTL version of your styling:

margin: 0 20px 0 0; /* RTL direction */

Single properties

Or you could use the margin-right mixin

@include margin-right(20px);

This will change the right margin to a left one on RTL

margin-right: 20px; /* LTR direction */
margin-left: 20px; /* RTL direction */

Basic examples of transform values

In order to add direction-aware transform you can use functions:

transform: translate-xy(-50%, -50%);
transform: translate-x(-50%);

This will change the x-offset to a positive number for RTL

transform: translate(50%, -50%);
transform: translateX(50%);

If you need to flip an element (e.g. an icon used in breadcrumbs) you can add the flip function to the transform properties:

transform: flip();

This will use transform: scaleX(-1) in order to flip the element on the x-axis. Please note that this might cause conflicts when using scale within the same declaration.

List of Mixins and Functions

To-do

  • transform-origin