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 🙏

© 2026 – Pkg Stats / Ryan Hefner

tailwind-zag

v1.1.0

Published

TailwindCSS plugin for zag-powered components

Downloads

2,289

Readme

tailwind-zag

A TailwindCSS plugin to style zag-powered-components using their data attributes.

Installation

npm install -D tailwind-zag

Usage

Add the plugin to your tailwind config

// tailwind.config.ts
import type {Config} from 'tailwindcss';
import zag from 'tailwind-zag';

export default {
  content: ['./src/**/*.{js,ts,jsx,tsx}'],
  plugins: [
    // using the default prefix: "ui"
    zag,

    // or using a custom prefix
    zag({
      prefix: 'custom-prefix',
    }),
  ],
} satisfies Config

If you are using tailwind v4, you can add the plugin to your css file like this:

@plugin 'tailwind-zag';

Style your components

import {Field} from '@ark-ui/react';

export function Component() {
  return (
    <Field.Root>
      <Field.Input className="ui-invalid:border-red-300 ui-readonly:border-gray-200" />
    </Field.Root>
  );
}

Example using Ark UI react components

// tailwind.config.js
import zag from 'tailwind-zag';

/** @type {import('tailwindcss').Config} */
export default {
  content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
  theme: {
    extend: {
      keyframes: {
        'fade-in': {
          from: {opacity: '0'},
          to: {opacity: '1'},
        },
        'fade-out': {
          from: {opacity: '1'},
          to: {opacity: '0'},
        },
      },
      animation: {
        'fade-in': 'fade-in 250ms ease-in-out',
        'fade-out': 'fade-out 150ms ease-in-out',
      },
    },
  },
  plugins: [zag],
};
// App.tsx
import {Dialog, Portal} from '@ark-ui/react';

export function App() {
  return (
     <div className="p-4">
      <Dialog.Root>
        <Dialog.Trigger className="bg-neutral-900 rounded text-white font-semibold h-11 px-4">
          Open
        </Dialog.Trigger>
        <Portal>
          <Dialog.Backdrop className="fixed inset-0 bg-black/50 ui-open:animate-fade-in ui-closed:animate-fade-out" />
          <Dialog.Positioner>
            <Dialog.Content className="fixed max-w-[24rem] rounded w-full left-1/2 -translate-x-1/2 my-16 p-4 bg-white ui-open:animate-fade-in ui-closed:animate-fade-out">
              <Dialog.Title className="text-neutral-800 text-xl font-bold">Title</Dialog.Title>
              <Dialog.Description className="text-neutral-600">Description</Dialog.Description>
              <Dialog.CloseTrigger className="border border-neutral-300 h-11 w-full rounded mt-4">
                Close
              </Dialog.CloseTrigger>
            </Dialog.Content>
          </Dialog.Positioner>
        </Portal>
      </Dialog.Root>
    </div>
  );
}

Using inverse variants

To apply the style to the component only when the data attribute is not present, you can add the -not prefix before the variant.

<Component className="ui-not-hover:bg-gray-50" />

Using group variants

You can add -group before the variant to apply the style to the component if its parent has the specific data attribute present.

<ParentComponent className="group">
  <ChildComponent className="ui-group-hover:bg-gray-50" />
</ParentComponent>

Using peer variants

You can add -peer before the variant to apply the style to the component if its sibling has the specific data attribute present.

<ParentComponent>
  <ChildComponent className="ui-peer-hover:bg-gray-50" />
  <ChildComponent className="peer ui-hover:bg-gray-50" />
</ParentComponent>

Variants and their equivalent data attributes

| Variant | Data attributes | |---------------------------|--------------------------------------------| | hover | data-hover | | focus | data-focus | | focus-visible | data-focus-visible | | focusable | data-focusable | | active | data-active | | invalid | data-invalid | | disabled | data-disabled | | readonly | data-readonly | | current | data-current | | inview | data-inview | | copied | data-copied | | collapsible | data-collapsible | | highlighted | data-highlighted | | selected | data-selected | | placeholder-shown | data-placeholder-shown | | autoresize | data-autoresize | | required | data-required | | dragging | data-dragging | | complete | data-complete | | incomplete | data-incomplete | | expanded | data-expanded | | half | data-half | | first | data-first | | mounted | data-mounted | | overlap | data-overlap | | sibling | data-sibling | | paused | data-paused | | pressed | data-pressed | | on | data-state="on" | | off | data-state="off" | | open | data-state="open" | | closed | data-state="closed" | | hidden | data-state="hidden" | | visible | data-state="visible" | | checked | data-checked, data-state="checked" | | unchecked | data-unchecked, data-state="unchecked" | | indeterminate | data-state="indeterminate" | | vertical | data-orientation="vertical" | | horizontal | data-orientation="horizontal" | | placement-top | data-placement="top" | | placement-top-end | data-placement="top-end" | | placement-top-start | data-placement="top-start" | | placement-left | data-placement="left" | | placement-left-end | data-placement="left-end" | | placement-left-start | data-placement="left-start" | | placement-right | data-placement="right" | | placement-right-end | data-placement="right-end" | | placement-right-start | data-placement="right-start" | | placement-bottom | data-placement="bottom" | | placement-bottom-end | data-placement="bottom-end" | | placement-bottom-start | data-placement="bottom-start" | | side-top | data-side="top" | | side-left | data-side="left" | | side-right | data-side="right" | | side-bottom | data-side="bottom" | | align-center | data-align="center" | | align-start | data-align="start" | | align-end | data-align="end" | | today | data-today | | weekend | data-weekend | | in-range | data-in-range | | range-start | data-range-start | | range-end | data-range-end | | view-day | data-view="day" | | view-month | data-view="month" | | view-year | data-view="year" | | under-value | data-state="under-value" | | over-value | data-state="over-value" | | delete-intent | data-delete-intent | | unit-hour | data-unit="hour" | | unit-minute | data-unit="minute" | | unit-second | data-unit="second" | | unit-period | data-unit="period" | | channel-hue | data-channel="hue" | | channel-saturation | data-channel="saturation" | | channel-brightness | data-channel="brightness" | | channel-lightness | data-channel="lightness" | | channel-red | data-channel="red" | | channel-green | data-channel="green" | | channel-blue | data-channel="blue" | | channel-alpha | data-channel="alpha" | | channel-hex | data-channel="hex" | | channel-css | data-channel="css" | | tour-highlighted | data-tour-highlighted | | scroll-lock | data-scroll-lock | | inert | data-inert | | scope-<value> | data-scope="<value>" | | part-<value> | data-part="<value>" | | value-<value> | data-value="<value>" | | valuetext-<value> | data-valuetext="<value>" | | index-<value> | data-index="<value>" | | columns-<value> | data-columns="<value>" | | branch-<value> | data-branch="<value>" | | depth-<value> | data-depth="<value>" | | path-<value> | data-path="<value>" | | type-<value> | data-type="<value>" |

Credits