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

headlessui-stimulus

v0.0.4

Published

Stimulus components for Headless UI

Downloads

14

Readme

Headless UI - Stimulus

Please see the demo page for some examples.

Status: implementing the components as I need them. Just started and a long way to go :)

This is a set of Stimulus controllers for Headless UI's components.

They all come with keyboard navigation and focus management, and automatically manage relevant ARIA attributes.

Installation

bin/importmap pin headlessui-stimulus

Usage

Register the components with your Stimulus application. For example, to register the Menu (Dropdown) component:

  import { Application } from '@hotwired/stimulus'
+ import { Menu } from 'headlessui-stimulus'

  const application = Application.start()
+ application.register('menu', Menu)

Note: you must have a hidden CSS class for elements to show and hide:

.hidden {
  display: none;
}

If you use Tailwind CSS's @headlessui/tailwindcss plugin, you can use modifiers like ui-open:* and ui-active:* to style these components.

If you don't use the plugin, you can use the data-headlessui-state attributes directly to conditionally apply different styles.

Menu (Dropdown)

See Headless UI: Menu.

Use the following markup (the classes and ARIA attributes are omitted for clarity).

<div data-controller="menu">
    <button
        type="button"
        data-menu-target="button"
        data-action="click->menu#toggle keydown->menu#keydownButton"
    >
        ...
    </button>
    <div
        class="hidden"
        role="menu"
        tabindex="-1"
        data-menu-target="menuItems"
        data-action="keydown->menu#keydownItems"
    >
        <a
            href="..."
            role="menuitem"
            tabindex="-1"
            data-menu-target="menuItem"
            data-action="mouseover->menu#activate"
        >
            ...
        </a>
        <!-- more menu item links -->
    </div>
</div>

Optionally you can specify classes for the active and inactive menu items like this:

<div
    data-controller="menu"
    data-menu-active-class="..."
    data-menu-inactive-class="..."
>

Dialog (Modal)

See Headless UI: Dialog.

Use the following markup (the classes and ARIA attributes are omitted for clarity).

<div data-controller="dialog">
    <!-- optional backdrop -->
    <div data-dialog-target="backdrop"></div>

    <div data-dialog-target="panel" data-action="keydown->dialog#keydown">
        <h1 data-dialog-target="title">An important notice</h1>
        <p data-dialog-target="description">Blah blah blah.</p>
        ...
        <button data-action="dialog#close">...</button>
        ...
    </div>
</div>

To open the dialog:

  • either call dialog#open on the controller;
  • or set data-dialog-open-value="true" on the controller's element.

To close the dialog:

  • either call dialog#close on the controller;
  • or set data-dialog-open-value="false" on the controller's element;
  • or click outside the panel;
  • or press Escape.

If your dialog has a title and a description, use data-dialog-target="title" and data-dialog-target="description" to provide the most accessible experience. This will link your title and description to the controller element via the aria-labelledby and aria-describedby attributes.

When the dialog opens, the panel's first focusable element by DOM order receives focus. To specify that a different element should receive focus initially, give it the data attribute data-dialog-target="initialFocus".

You can configure your dialog with the following attributes. Declare them on the controller as data-dialog-[name]-value.

| Name | Default | Description | |--|--|--| | open | false | Whether the dialog is open (true) or closed (false). | | unmount | false | On closing the dialog, whether to remove it from the DOM (true) or hide it (false). |

You can specify transitions on the backdrop and the panel.

Popover

See Headless UI: Popover.

Use the following markup (the classes and ARIA attributes are omitted for clarity).

<div data-controller="popover" data-action="keydown.esc->popover#close">
    <button
        type="button"
        data-popover-target="button"
        data-action="popover#toggle"
    >
        ...
    </button>

    <!-- optional -->
    <div data-popover-target="overlay" data-action="click->popover#close"></div>

    <div data-popover-target="panel" data-action="keydown->popover#keydownPanel">
        ...
    </div>
</div>

To open the popover:

  • either call popover#open on the controller;
  • or set data-popover-open-value="true" on the controller's element.

To close the popover:

  • either call popover#close on the controller;
  • or set data-popover-open-value="false" on the controller's element.
  • or Tab out of the panel;
  • or click outside the panel;
  • or press Escape.

When the popover opens, the panel does not receive focus until you Tab into it. If you would prefer the first focusable element in the panel to receive focus when the panel opens, set the data-popover-focus-panel="true" data attribute on the controller's element.

When the popover closes (unless you Tab out), focus returns to the button target. If you want another element to receive focus, set the data-popover-focus-on-close-value="...". The value should be a CSS selector.

You can configure your popover with the following attributes. Declare them on the controller as data-popover-[name]-value.

| Name | Default | Description | |--|--|--| | open | false | Whether the popover is open (true) or closed (false). | | focus-panel | false | On opening the popover, whether to focus the panel's first focusable element. | | focus-on-close | "" | On closing the popover (except by using Tab), the element to focus, expressed as a CSS selector. "" focuses the button target. | | unmount | false | On closing the popover, whether to remove it from the DOM (true) or hide it (false). |

You can specify transitions on the overlay and the panel.

Popover groups are not supported yet (because I'm not sure how they are supposed to behave.)

Transitions

Transitions are supported by each component. Specify the transitions you want with these data attributes:

data-transition-enter="..."
data-transition-enter-start="..."
data-transition-enter-end="..."
data-transition-leave="..."
data-transition-leave-start="..."
data-transition-leave-end="..."

If you are using Tailwind UI components, you can pretty much copy and paste the the transitions specified in the code comments.

For example, a sidebar component might include this comment in its source code:

<!--
      Off-canvas menu backdrop, show/hide based on off-canvas menu state.

      Entering: "transition-opacity ease-linear duration-300"
        From: "opacity-0"
        To: "opacity-100"
      Leaving: "transition-opacity ease-linear duration-300"
        From: "opacity-100"
        To: "opacity-0"
-->

Here are the corresponding data attributes you would use:

data-transition-enter="transition-opacity ease-linear duration-300"
data-transition-enter-start="opacity-0"
data-transition-enter-end="opacity-100"
data-transition-leave="transition-opacity ease-linear duration-300"
data-transition-leave-start="opacity-100"
data-transition-leave-end="opacity-0"

Intellectual Property

This package is copyright Andrew Stewart.

This package is available as open source under the terms of the MIT licence.