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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@vue-dnd-kit/components

v0.6.1

Published

Components for Vue DnD Kit

Readme

Vue Drag & Drop Library - Components Package

Beta

⚠️ Warning: This project is in active development (beta). The API may change between minor versions. Not recommended for production use until version 1.0.0.

Project Status

This project is in active development. We're working toward a stable API, but until version 1.0.0, there may be breaking changes.

Roadmap:

  • [x] Basic drag & drop components
  • [x] Table component
  • [x] Kanban board
  • [x] Tree component
  • [x] SortableList
  • [ ] FormBuilder
  • [ ] HTMLBuilder
  • [x] Dashboard
  • [ ] Grid
  • [ ] Tests
  • [ ] Stable API (version 1.0.0)

Features

Component Presets

  • 📋 Table Component

    • Customizable structure
    • Flexible column handling
    • Minimal styling for easy customization
    • Full control over drag & drop behavior
  • 📊 Kanban Board

    • Simple column and item structure
    • Unopinionated styling
    • Flexible data handling
    • Customizable drag & drop logic
  • 🌳 Tree Component

    • Hierarchical tree structure with unlimited nesting levels
    • Expandable/collapsible tree nodes
    • Visual indicators for items with and without children
    • Drag and drop functionality for reordering and moving items
    • Empty zone highlighting for drop targets
  • 🧩 Base Components

    • Draggable
    • Droppable
    • DragHandle

Design Philosophy

  • 🎨 Minimal Styling

    • Components come with minimal styling
    • Full freedom to implement your own design
    • No CSS dependencies
    • Easy to integrate with any UI framework
  • 🔧 Maximum Flexibility

    • Components don't enforce specific data structures
    • Custom event handling
    • Write your own drag & drop logic
    • Extend components as needed

Integration

  • 🔌 Framework Integration
    • Vue 3 Composition API
    • TypeScript support
    • Works with Nuxt.js
    • Compatible with any styling approach

Installation

Choose your preferred package manager:

npm install @vue-dnd-kit/components @vue-dnd-kit/core
yarn add @vue-dnd-kit/components @vue-dnd-kit/core
pnpm install @vue-dnd-kit/components @vue-dnd-kit/core

CLI

Vue DnD Kit provides a CLI to quickly install components.

We recommend using pnpm to run the CLI:

# List available components
pnpm dlx @vue-dnd-kit/components list

# Add a component to your project
pnpm dlx @vue-dnd-kit/components add <component-name>

# Add a component to a specific directory
pnpm dlx @vue-dnd-kit/components add <component-name> --dir src/shared/components

# Debug information (for developers)
pnpm dlx @vue-dnd-kit/components debug

Note: Some Node.js versions may have compatibility issues when using npx. We recommend using pnpm dlx or yarn dlx instead of npx.

Available Commands

  • list: Show available components
  • add <component-name>: Add a component to your project
    • Options:
      • -d, --dir <directory>: Directory to install the component (default: src/components)
  • debug: Debug information (for developers)

Available Components

  • Table - Draggable table with sortable rows and columns
  • Kanban - Kanban board with draggable columns and items
  • Tree - Hierarchical tree structure with drag and drop functionality

📄 License

MIT © ZiZiGY