0.0.16 • Published 3 days ago

tailwindcss-selector-patterns v0.0.16

Weekly downloads
-
License
MIT
Repository
github
Last release
3 days ago

minified size license version twitter

This Tailwind CSS plugin introduces a custom variant enabling dynamic targeting of elements matching patterns that would otherwise require multiple CSS selectors, in most cases where this plugin would be especially useful. The more complex selectors are generated by the Tailwind CSS JIT engine at build time, so using this plugin is only as expensive—in terms of performance—as the selectors a developer uses it to generate.

Some advantages of using this plugin include:

  • Markup size: Reduces the number of Tailwind CSS utilities required to target specific element(s) based on their relationship(s) to the current element within the DOM tree
  • Simplicity: Shorthand syntax, making it easy to use, and the intent easy to convey and understand
  • Precision: Simple to target a sibling N nodes away in a specified direction
  • Bidirectionality: Match siblings in prev/next direction (or both), or a parent/child N nodes away in either asc/desc direction (or both). Combining this with the precision benefit allows for truly powerful selectors, while still keeping the syntax simple and easy to understand.
  • Single source of truth: Avoid coupling custom variants to match elements in different directions (e.g. pattern-[%]:underline vs. [&>*]:underline [:has(>&)]:underline).

The majority of the magic behind this plugin lies in the Tailwind CSS JIT engine, allowing for the dynamic processing of custom variants, and the the CSS :has() selector, which can be used in many ways to target elements based on their relationship to the current element, even if the element you are targeting precedes the current element in the DOM tree. No run-time JS is needed.

Syntax

pattern-[{combinator}{nth-index?}{inclusion-direction?}{;selector?}]
  • combinator (required): Specifies the relationship between the selected element and the target element(s). Available combinators are:
    • +: Select the next sibling element
    • ++: Select all next sibling elements
    • -: Select the previous sibling element
    • --: Select all previous sibling elements
    • %: Select the parent element
    • %%: Select all ancestor elements
    • >: Select direct child elements
    • >>: Select all descendant elements
    • <: Select direct parent element
    • <<: Select all ancestor elements
    • ^: Select both parent and child elements
    • ^^: Select both ancestor and descendant elements
  • nth-index (optional): Specifies the index of the target element(s) relative to the selected element. It starts at 1 and defaults to 1 if omitted. Not valid if used with a "double combinator".
  • inclusion-direction (optional): Only valid if nth-index is specified. Determines the direction of including matching elements.
    • <: Includes matching elements from the specified nth-index toward the element (inner/closer elements)
    • >: Includes matching elements from the specified nth-index away from the element (outer/farther elements)
  • selector (optional): Specifies a selector to match against the target element(s). If not provided, any selector will match.

    ⚠️ Keep in mind that you cannot use any spaces characters in your utility, so if your selector requires a space, use an underscore _ instead, (e.g. pattern-[+3<;div_a]:underline).

Getting started

Installation

npm install tailwindcss-selector-patterns

Tailwind CSS Configuration

// tailwind.config.js
module.exports = {
  theme: {
    // ...
  },
  plugins: [
    require('tailwindcss-selector-patterns'),
    // ...
  ],
}

Usage

<!-- targeting div descendants of the selected element, starting 3 DOM tree levels deeper than the current element --> 
<div class="pattern-[>3>;div]">
  <div> <!-- ❌ excluded, nth-index is less than 3 -->
    <div> <!-- ❌ excluded, nth-index is less than 3 -->
      <div> <!-- ✅ included, nth-index is at least 3 -->
        <div> <!-- ✅ included, nth-index is at least 3 -->
          <!-- ... -->
        </div>
        <section> <!-- ❌ excluded, not div -->
          <div> <!-- ✅ included, nth-index is at least 3 -->
            <!-- ... -->
          </div>
        </section>
      </div>
    </div>
  </div>
</div>

Examples

Want to try it out for yourself? Take tailwindcss-selector-patterns for a spin on Tailwind Play.


I hope you find tailwindcss-selector-patterns a valuable addition to your projects. If you have any issues or suggestions, don't hesitate to open an issue or pull request.

If you liked this, you might also like my other Tailwind CSS plugins:

0.0.16

3 days ago

0.0.15

6 days ago

0.0.11

10 days ago

0.0.12

10 days ago

0.0.13

10 days ago

0.0.14

10 days ago

0.0.10

11 days ago

0.0.9

15 days ago

0.0.8

15 days ago

0.0.5

1 month ago

0.0.7

1 month ago

0.0.6

1 month ago

0.0.3

1 month ago

0.0.4

1 month ago

0.0.1

2 months ago

0.0.2

2 months ago

0.0.0

2 months ago