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

@coleqiu/vue-drag-select

v2.0.6-beta.1

Published

Drag select component for Vue3

Downloads

1,255

Readme

🔧Installation

npm i @coleqiu/vue-drag-select
yarn add @coleqiu/vue-drag-select

📘Demo

Storybook

Edit vue-drag-select-example

🧭Quick Guide

⚙Import

import { createApp } from "vue";
import VueDragSelect from "@coleqiu/vue-drag-select";

const app = createApp(App);
app.use(VueDragSelect);

🚀Usage

<script setup lang="ts">
import { ref } from 'vue';

const selection = ref([]);
const options = [ "item1", "item2", "item3" ];
</script>

<template>
  <drag-select v-model="selection">
    <drag-select-option v-for="item in options" :value="item" :key="item">{{item}}</drag-select-option>
  </drag-select>
</template>

<style>
.drag-select-option {
  width: 100px;
  height: 100px;
  color: #ffffff;
  background: #E37E26;
}

.drag-select-option--selected {
  color: #000000;
  background: #5fdddc;
}
</style>

📖Ducumentation

DragSelect Attributes

Attribute | Description | Type | Default -|-|-|- modelValue / v-model | binding value | Array | Set<string | number> | --(required) background | background color of drag area, 'none' represent hide this style to avoid override background color of class | string | rgba(66, 153, 225, 0.5 | draggableOnOption | can draggable when dragstart event target on DragSelectOption | boolean | true clickOptionToSelect | whether to enable the click item selection function | boolean | true clickBlankToClear | whether to enable clicking on blank content to clear the option | boolean | true dragAreaClass | the class names of drag area | string | -- dragAreaStyle | the class styles of drag area | string | -- selectedOptionClass | the class names of selected DragSelectOption | string | -- selectedOptionStyle | the selected styles of selected DragSelectOption | string | -- multiple | whether to keep the previously selected | boolean | -- activeMultipleKeys | after pressing a certain key, multiple mode will be activated | 'meta' | 'shift' | 'ctrl' | 'alt' | 'meta' | 'ctrl' | 'shift' deselectRepeated | in multiple mode, deselect options that are repeatedly selected | boolean | --

DragSelectOption Attributes

Attribute | Description | Type | Default -|-|-|- value | binding value | string | index | --(required) disabled | whether DragSelectOption is disabled | boolean | false selectedClass | the class names of selected option | boolean | --

Component classNames

this package havn't enough styles,you can use following classNames to add styles. name | Description -|- drag-select__wrapper | the className of DragSelect itself drag-select | the className of the container of dragSelectOption drag-select__area | the className of drag area drag-select-option | the className of dragSelectOption component drag-select-option--selected | the className of dragSelectOption component which are selected drag-select-option--disabled | the className of dragSelectOption component which are disabled