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

@urbanstudio/ua-sortable

v1.0.4

Published

Pointer-Events-based drag-and-drop sorting for lists and grids. No dependencies.

Readme

ua-sortable

Pointer-Events-based drag-and-drop sorting for lists and grids.
No dependencies. No jQuery. No CDN required. Pure browser APIs.

npm license CDN


What it does

UA_Sortable makes any list or grid container sortable by drag-and-drop using native Pointer Events. Works with mouse, touch, and stylus — no special handling needed.

new UA_Sortable(document.getElementById("myList"));

That is: one line to get a sortable list, one callback to persist the order, zero dependencies.


Install

npm:

npm install @urbanstudio/ua-sortable

CDN (jsDelivr — ESM):

<script type="module">
  import { UA_Sortable } from "https://cdn.jsdelivr.net/npm/@urbanstudio/ua-sortable/src/Sortable.js";
</script>

CDN (jsDelivr — browser global <script>):

<script src="https://cdn.jsdelivr.net/npm/@urbanstudio/ua-sortable/dist/ua-sortable.js"></script>

CDN (unpkg):

<script src="https://unpkg.com/@urbanstudio/ua-sortable/dist/ua-sortable.js"></script>

Quick start

import { UA_Sortable } from "@urbanstudio/ua-sortable";

new UA_Sortable(document.querySelector("ul"), {
    handle:    ".drag-handle",
    animation: 150,
    onSort:    (ids) => console.log("new order:", ids),
});

Or with the shorthand:

import { uaMakeSortable } from "@urbanstudio/ua-sortable";

const sortable = uaMakeSortable(document.querySelector("ul"), {
    handle: ".drag-handle",
});

Or declarative HTML — auto-initialized by UA_Sortable.observe():

<ul data-ua-sortable data-sortable-handle=".drag-handle" data-sortable-group="tasks">
  <li data-id="1">Item 1 <span class="drag-handle">⠿</span></li>
  <li data-id="2">Item 2 <span class="drag-handle">⠿</span></li>
</ul>

<script type="module">
  import { UA_Sortable } from "@urbanstudio/ua-sortable";
  UA_Sortable.observe(document.body);
</script>

Options

| Option | Type | Default | Description | |--------|------|---------|-------------| | handle | string\|null | null | CSS selector for drag handle. null = whole item is draggable. | | filter | string\|null | null | CSS selector for items excluded from drag. | | group | string\|null | null | Group name for cross-list drag. | | direction | string | "auto" | "vertical", "horizontal", or "auto" (detects flex-direction; grid/inline-grid containers are treated as grid). | | animation | number | 150 | Layout animation duration in ms when items shift around the placeholder. 0 = disabled. | | dataIdAttr | string | "data-id" | Attribute used to identify items in callbacks. | | delay | number | 0 | ms before drag starts after pointerdown. | | delayOnTouchOnly | boolean | false | Apply delay only for touch input. | | disabled | boolean | false | Disable drag on this instance. | | dragClass | string | "ua-sortable-drag" | Class added to the dragged item while dragging. | | confirm | function\|null | null | (movedId, from, to) => Promise<bool> — called before cross-list drop. Return false to cancel. | | onDragStart | function\|null | null | (el) — drag begins. | | onDragEnd | function\|null | null | (el, didMove: bool) — drag ends. | | onSort | function\|null | null | (ids[], container) — order changed within same list. | | onMove | function\|null | null | (movedId, from, to, fromIds[], toIds[]) => bool\|Promise<bool> — item moved to other list. |


Instance methods

| Method | Description | |--------|-------------| | toArray() | IDs of all draggable children in current DOM order. | | enable() | Enable drag. | | disable() | Disable drag. | | refresh() | Re-scan draggable children (after manual DOM changes). | | destroy() | Remove all listeners, disconnect observers, unregister. | | option(name) | Get option value. | | option(name, value) | Set option value at runtime. |


Static methods

| Method | Description | |--------|-------------| | UA_Sortable.get(el) | Instance for a container element. | | UA_Sortable.getGroup(name) | All instances with this group name. | | UA_Sortable.snapshot(group?) | [{container, ids, group}] — current order of all grouped instances. | | UA_Sortable.initAll(root?) | Initialize all [data-ua-sortable] in root. | | UA_Sortable.observe(root) | MutationObserver — auto-init new [data-ua-sortable] containers. |


Cross-list drag

Containers sharing the same group name accept each other's items:

const opts = {
    group: "tasks",
    onMove: (id, from, to, fromIds, toIds) => {
        api.moveTask(id, to.dataset.listId);
    },
};
new UA_Sortable(document.querySelector("#todo"),  opts);
new UA_Sortable(document.querySelector("#doing"), opts);
new UA_Sortable(document.querySelector("#done"),  opts);

With a confirmation dialog before cross-list drop:

new UA_Sortable(el, {
    group: "rooms",
    confirm: async (id, from, to) => confirm(`Move item to "${to.dataset.label}"?`),
    onMove:  (id, from, to) => api.moveToSection(id, to.dataset.sectionId),
});

Snapshot

// Read current order of all containers in a group
const state = UA_Sortable.snapshot("tasks");
// [{ container: HTMLElement, ids: ["id1", "id2"], group: "tasks" }, ...]

state.forEach(({ container, ids }) => {
    api.saveOrder(container.dataset.listId, ids);
});

CSS

Minimal styles are injected automatically on first use — no stylesheet to include.

.ua-sortable-drag        { opacity: .95; box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.ua-sortable-placeholder { border: 2px dashed rgba(0,0,0,.18); border-radius: 3px; background: rgba(0,0,0,.03); }
.ua-drag-handle          { cursor: grab; touch-action: none; }
.ua-drag-handle:active   { cursor: grabbing; }

The drop indicator uses --accent (CSS custom property) with fallback #2563eb.
Override any of these in your own stylesheet.


HTML attributes

When using UA_Sortable.observe() or UA_Sortable.initAll():

| Attribute | Option | |-----------|--------| | data-ua-sortable | triggers init | | data-sortable-handle | handle | | data-sortable-filter | filter | | data-sortable-group | group | | data-sortable-direction | direction | | data-sortable-animation | animation | | data-sortable-delay | delay |


Browser support

Pointer Events: Chrome 55+, Firefox 59+, Safari 13+, Edge 79+.
No polyfills required.


Design principles

ua-sortable tries to stay small and predictable.

It does not try to replace SortableJS.
It does not try to support IE11.
It does not ship a bundler, a build step, or a runtime dependency.

It simply:

  1. listens for pointer events
  2. moves a placeholder element as you drag
  3. calls your callback with the new order

For everything else, use the onMove / onSort callbacks.


License

MIT License

Copyright (c) 2026 Marian Feiler, urbanstudio GmbH

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.