mirror of
https://github.com/vform666/variant-form3-vite.git
synced 2025-06-21 00:39:57 +08:00
初步完成库文件打包配置。
This commit is contained in:
21
lib/vuedraggable/LICENSE
Normal file
21
lib/vuedraggable/LICENSE
Normal file
@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2016-2019 David Desmaisons
|
||||
|
||||
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.
|
424
lib/vuedraggable/README.md
Normal file
424
lib/vuedraggable/README.md
Normal file
@ -0,0 +1,424 @@
|
||||
<p align="center"><img width="140"src="https://raw.githubusercontent.com/SortableJS/Vue.Draggable/master/logo.svg?sanitize=true"></p>
|
||||
<h1 align="center">vue.draggable.next</h1>
|
||||
|
||||
[](https://circleci.com/gh/SortableJS/Vue.Draggable)
|
||||
[](https://codecov.io/gh/SortableJS/Vue.Draggable)
|
||||
[](https://codebeat.co/projects/github-com-sortablejs-vue-draggable-master)
|
||||
[](https://github.com/SortableJS/Vue.Draggable/issues?q=is%3Aopen+is%3Aissue)
|
||||
[](https://www.npmjs.com/package/vuedraggable)
|
||||
[](https://www.npmjs.com/package/vuedraggable)
|
||||
[](https://www.npmjs.com/package/vuedraggable/v/next)
|
||||
[](https://github.com/SortableJS/vue.draggable.next/blob/master/LICENSE)
|
||||
|
||||
|
||||
Vue component (Vue.js 3.0) allowing drag-and-drop and synchronization with view model array.
|
||||
|
||||
For Vue 2 and Vue 1 version check: https://github.com/SortableJS/Vue.Draggable
|
||||
|
||||
Based on and offering all features of [Sortable.js](https://github.com/RubaXa/Sortable)
|
||||
|
||||
## Demo
|
||||
|
||||

|
||||
|
||||
## Live Demos
|
||||
|
||||
https://sortablejs.github.io/vue.draggable.next/
|
||||
|
||||
## Features
|
||||
|
||||
* Full support of [Sortable.js](https://github.com/RubaXa/Sortable) features:
|
||||
* Supports touch devices
|
||||
* Supports drag handles and selectable text
|
||||
* Smart auto-scrolling
|
||||
* Support drag and drop between different lists
|
||||
* No jQuery dependency
|
||||
* Keeps in sync HTML and view model list
|
||||
* Compatible with Vue.js 3.0 transition-group
|
||||
* Cancellation support
|
||||
* Events reporting any changes when full control is needed
|
||||
* Reuse existing UI library components (such as [vuetify](https://vuetifyjs.com), [element](http://element.eleme.io/), or [vue material](https://vuematerial.io) etc...) and make them draggable using `tag` and `componentData` props
|
||||
|
||||
|
||||
## Donate
|
||||
|
||||
Find this project useful? You can buy me a :coffee: or a :beer:
|
||||
|
||||
[](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=GYAEKQZJ4FQT2¤cy_code=USD&source=url)
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
### With npm or yarn
|
||||
|
||||
```bash
|
||||
yarn add vuedraggable@next
|
||||
|
||||
npm i -S vuedraggable@next
|
||||
```
|
||||
|
||||
### with direct link
|
||||
```html
|
||||
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/vue/3.0.2/vue.min.js"></script>
|
||||
<!-- CDNJS :: Sortable (https://cdnjs.com/) -->
|
||||
<script src="//cdn.jsdelivr.net/npm/sortablejs@1.10.2/Sortable.min.js"></script>
|
||||
<!-- CDNJS :: Vue.Draggable (https://cdnjs.com/) -->
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/Vue.Draggable/4.0.0/vuedraggable.umd.min.js"></script>
|
||||
|
||||
```
|
||||
|
||||
[cf example section](https://github.com/SortableJS/Vue.Draggable/tree/master/example)
|
||||
|
||||
|
||||
## Typical use:
|
||||
``` html
|
||||
<draggable
|
||||
v-model="myArray"
|
||||
group="people"
|
||||
@start="drag=true"
|
||||
@end="drag=false"
|
||||
item-key="id">
|
||||
<template #item="{element}">
|
||||
<div>{{element.name}}</div>
|
||||
</template>
|
||||
</draggable>
|
||||
```
|
||||
``` js
|
||||
import draggable from 'vuedraggable'
|
||||
...
|
||||
export default {
|
||||
components: {
|
||||
draggable,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
drag: false,
|
||||
}
|
||||
},
|
||||
...
|
||||
```
|
||||
|
||||
The `item` slot should be used to display items of the list. It receives the element value and the element index as slot-props.
|
||||
|
||||
### With `transition-group`:
|
||||
``` html
|
||||
<draggable v-model="myArray" tag="transition-group" item-key="id">
|
||||
<template #item="{element}">
|
||||
<div> {{element.name}} </div>
|
||||
</template>
|
||||
</draggable>
|
||||
```
|
||||
|
||||
### With footer slot:
|
||||
``` html
|
||||
<draggable v-model="myArray" item-key="id">
|
||||
<template #item="{element}">
|
||||
<div> {{element.name}} </div>
|
||||
</template>
|
||||
<template #footer>
|
||||
<button @click="addPeople">Add</button>
|
||||
</template>
|
||||
</draggable>
|
||||
```
|
||||
### With header slot:
|
||||
``` html
|
||||
<draggable v-model="myArray" item-key="id">
|
||||
<template #item="{element}">
|
||||
<div> {{element.name}} </div>
|
||||
</template>
|
||||
<template #header>
|
||||
<button @click="addPeople">Add</button>
|
||||
</template>
|
||||
</draggable>
|
||||
```
|
||||
|
||||
### With Vuex:
|
||||
|
||||
```html
|
||||
<draggable v-model='myList'>
|
||||
```
|
||||
|
||||
```javascript
|
||||
computed: {
|
||||
myList: {
|
||||
get() {
|
||||
return this.$store.state.myList
|
||||
},
|
||||
set(value) {
|
||||
this.$store.commit('updateList', value)
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Migrate from vue 2 version:
|
||||
|
||||
Breaking changes:
|
||||
1) Use `item` slot instead of default to display elements
|
||||
2) Provide a key for items using `itemKey` props
|
||||
|
||||
From:
|
||||
``` html
|
||||
<!-- vue 2 version -->
|
||||
<draggable v-model="myArray">
|
||||
<div v-for="element in myArray" :key="element.id">{{element.name}}</div>
|
||||
</draggable>
|
||||
```
|
||||
To:
|
||||
``` html
|
||||
<draggable v-model="myArray" item-key="id">
|
||||
<template #item="{element}">
|
||||
<div>{{element.name}}</div>
|
||||
</template>
|
||||
</draggable>
|
||||
```
|
||||
|
||||
Breaking changes:
|
||||
3) When using transition, you should now use the `tag` props and `componentData` to create the transition
|
||||
|
||||
From
|
||||
``` html
|
||||
<!-- vue 2 version -->
|
||||
<draggable v-model="myArray">
|
||||
<transition-group name="fade">
|
||||
<div v-for="element in myArray" :key="element.id">
|
||||
{{element.name}}
|
||||
</div>
|
||||
</transition-group>
|
||||
</draggable>
|
||||
```
|
||||
to
|
||||
``` html
|
||||
<draggable v-model="myArray" tag="transition-group" :component-data="{name:'fade'}">
|
||||
<template #item="{element}">
|
||||
<div>{{element.name}}</div>
|
||||
</template>
|
||||
</draggable>
|
||||
```
|
||||
|
||||
### Props
|
||||
#### modelValue
|
||||
Type: `Array`<br>
|
||||
Required: `false`<br>
|
||||
Default: `null`
|
||||
|
||||
Input array to draggable component. Typically same array as referenced by inner element v-for directive.<br>
|
||||
This is the preferred way to use Vue.draggable as it is compatible with Vuex.<br>
|
||||
It should not be used directly but only though the `v-model` directive:
|
||||
```html
|
||||
<draggable v-model="myArray">
|
||||
```
|
||||
|
||||
#### list
|
||||
Type: `Array`<br>
|
||||
Required: `false`<br>
|
||||
Default: `null`
|
||||
|
||||
Alternative to the `modelValue` prop, list is an array to be synchronized with drag-and-drop.<br>
|
||||
The main difference is that `list` prop is updated by draggable component using splice method, whereas `modelValue` is immutable.<br>
|
||||
**Do not use in conjunction with modelValue prop.**
|
||||
|
||||
#### itemKey
|
||||
Type: `String` or `Function`<br>
|
||||
Required: `true`<br>
|
||||
|
||||
The property to be used as the element key. Alternatively a function receiving an element of the list and returning its key.
|
||||
|
||||
#### All sortable options
|
||||
Sortable options can be set directly as vue.draggable props since version 2.19.
|
||||
|
||||
This means that all [sortable option](https://github.com/RubaXa/Sortable#options) are valid sortable props with the notable exception of all the method starting by "on" as draggable component expose the same API via events.
|
||||
|
||||
kebab-case property are supported: for example `ghost-class` props will be converted to `ghostClass` sortable option.
|
||||
|
||||
Example setting handle, sortable and a group option:
|
||||
```HTML
|
||||
<draggable
|
||||
v-model="list"
|
||||
handle=".handle"
|
||||
:group="{ name: 'people', pull: 'clone', put: false }"
|
||||
ghost-class="ghost"
|
||||
:sort="false"
|
||||
@change="log"
|
||||
>
|
||||
<!-- -->
|
||||
</draggable>
|
||||
```
|
||||
|
||||
#### tag
|
||||
Type: `String`<br>
|
||||
Default: `'div'`
|
||||
|
||||
HTML node type of the element that draggable component create as outer element for the included slot.<br>
|
||||
It is also possible to pass the name of vue component as element. In this case, draggable attribute will be passed to the create component.<br>
|
||||
See also [componentData](#componentdata) if you need to set props or event to the created component.
|
||||
|
||||
#### clone
|
||||
Type: `Function`<br>
|
||||
Required: `false`<br>
|
||||
Default: `(original) => { return original;}`<br>
|
||||
|
||||
Function called on the source component to clone element when clone option is true. The unique argument is the viewModel element to be cloned and the returned value is its cloned version.<br>
|
||||
By default vue.draggable reuses the viewModel element, so you have to use this hook if you want to clone or deep clone it.
|
||||
|
||||
#### move
|
||||
Type: `Function`<br>
|
||||
Required: `false`<br>
|
||||
Default: `null`<br>
|
||||
|
||||
If not null this function will be called in a similar way as [Sortable onMove callback](https://github.com/RubaXa/Sortable#move-event-object).
|
||||
Returning false will cancel the drag operation.
|
||||
|
||||
```javascript
|
||||
function onMoveCallback(evt, originalEvent){
|
||||
...
|
||||
// return false; — for cancel
|
||||
}
|
||||
```
|
||||
evt object has same property as [Sortable onMove event](https://github.com/RubaXa/Sortable#move-event-object), and 3 additional properties:
|
||||
- `draggedContext`: context linked to dragged element
|
||||
- `index`: dragged element index
|
||||
- `element`: dragged element underlying view model element
|
||||
- `futureIndex`: potential index of the dragged element if the drop operation is accepted
|
||||
- `relatedContext`: context linked to current drag operation
|
||||
- `index`: target element index
|
||||
- `element`: target element view model element
|
||||
- `list`: target list
|
||||
- `component`: target VueComponent
|
||||
|
||||
HTML:
|
||||
```HTML
|
||||
<draggable :list="list" :move="checkMove">
|
||||
```
|
||||
javascript:
|
||||
```javascript
|
||||
checkMove: function(evt){
|
||||
return (evt.draggedContext.element.name!=='apple');
|
||||
}
|
||||
```
|
||||
See complete example: [Cancel.html](https://github.com/SortableJS/Vue.Draggable/blob/master/examples/Cancel.html), [cancel.js](https://github.com/SortableJS/Vue.Draggable/blob/master/examples/script/cancel.js)
|
||||
|
||||
#### componentData
|
||||
Type: `Object`<br>
|
||||
Required: `false`<br>
|
||||
Default: `null`<br>
|
||||
|
||||
This props is used to pass additional information to child component declared by [tag props](#tag).<br>
|
||||
Value: an object corresponding to the attributes, props and events we would pass to the component.
|
||||
|
||||
Example (using [element UI library](http://element.eleme.io/#/en-US)):
|
||||
```HTML
|
||||
<draggable tag="el-collapse" :list="list" :component-data="getComponentData()" item-key="name">
|
||||
<template #item="{element}">
|
||||
<el-collapse-item :title="element.title" :name="element.name">
|
||||
<div>{{element.description}}</div>
|
||||
</el-collapse-item>
|
||||
</template>
|
||||
</draggable>
|
||||
```
|
||||
```javascript
|
||||
methods: {
|
||||
handleChange() {
|
||||
console.log('changed');
|
||||
},
|
||||
inputChanged(value) {
|
||||
this.activeNames = value;
|
||||
},
|
||||
getComponentData() {
|
||||
return {
|
||||
onChange: this.handleChange,
|
||||
onInput: this.inputChanged,
|
||||
wrap: true,
|
||||
value: this.activeNames
|
||||
};
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Events
|
||||
|
||||
* Support for Sortable events:
|
||||
|
||||
`start`, `add`, `remove`, `update`, `end`, `choose`, `unchoose`, `sort`, `filter`, `clone`<br>
|
||||
Events are called whenever onStart, onAdd, onRemove, onUpdate, onEnd, onChoose, onUnchoose, onSort, onClone are fired by Sortable.js with the same argument.<br>
|
||||
[See here for reference](https://github.com/RubaXa/Sortable#event-object-demo)
|
||||
|
||||
Note that SortableJS OnMove callback is mapped with the [move prop](https://github.com/SortableJS/Vue.Draggable/blob/master/README.md#move)
|
||||
|
||||
HTML:
|
||||
```HTML
|
||||
<draggable :list="list" @end="onEnd">
|
||||
```
|
||||
|
||||
* change event
|
||||
|
||||
`change` event is triggered when list prop is not null and the corresponding array is altered due to drag-and-drop operation.<br>
|
||||
This event is called with one argument containing one of the following properties:
|
||||
- `added`: contains information of an element added to the array
|
||||
- `newIndex`: the index of the added element
|
||||
- `element`: the added element
|
||||
- `removed`: contains information of an element removed from to the array
|
||||
- `oldIndex`: the index of the element before remove
|
||||
- `element`: the removed element
|
||||
- `moved`: contains information of an element moved within the array
|
||||
- `newIndex`: the current index of the moved element
|
||||
- `oldIndex`: the old index of the moved element
|
||||
- `element`: the moved element
|
||||
|
||||
### Slots
|
||||
|
||||
#### item
|
||||
The `item` slot is used to display one element of the list. Vue.draggable will iterate the list and call this slot for each element.
|
||||
|
||||
Slot props:
|
||||
- `element` the element in the list
|
||||
- `index` the element index
|
||||
|
||||
It is the only required slot.
|
||||
|
||||
|
||||
```html
|
||||
<draggable v-model="myArray" item-key="id">
|
||||
<template #item="{element, index}">
|
||||
<div> {{index}} - {{element.name}} </div>
|
||||
</template>
|
||||
</draggable>
|
||||
```
|
||||
|
||||
#### Header
|
||||
Use the `header` slot to add none-draggable element inside the vuedraggable component.
|
||||
Ex:
|
||||
|
||||
``` html
|
||||
<draggable v-model="myArray" item-key="id">
|
||||
<template #item="{element}">
|
||||
<div> {{element.name}} </div>
|
||||
</template>
|
||||
<template #header>
|
||||
<button @click="addPeople">Add</button>
|
||||
</template>
|
||||
</draggable>
|
||||
```
|
||||
|
||||
#### Footer
|
||||
Use the `footer` slot to add none-draggable element inside the vuedraggable component.
|
||||
Ex:
|
||||
|
||||
``` html
|
||||
<draggable v-model="myArray" item-key="id">
|
||||
<template #item="{element}">
|
||||
<div> {{element.name}} </div>
|
||||
</template>
|
||||
<template #footer>
|
||||
<button @click="addPeople">Add</button>
|
||||
</template>
|
||||
</draggable>
|
||||
```
|
||||
|
||||
### Example
|
||||
* [Clone](https://sortablejs.github.io/vue.draggable.next/#/custom-clone)
|
||||
* [Handle](https://sortablejs.github.io/vue.draggable.next/#/handle)
|
||||
* [Transition](https://sortablejs.github.io/vue.draggable.next/#/transition-example-2)
|
||||
* [Nested](https://sortablejs.github.io/vue.draggable.next/#/nested-example)
|
||||
* [Table](https://sortablejs.github.io/vue.draggable.next/#/table-example)
|
126
lib/vuedraggable/package.json
Normal file
126
lib/vuedraggable/package.json
Normal file
@ -0,0 +1,126 @@
|
||||
{
|
||||
"_from": "vuedraggable@^4.1.0",
|
||||
"_id": "vuedraggable@4.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-FU5HCWBmsf20GpP3eudURW3WdWTKIbEIQxh9/8GE806hydR9qZqRRxRE3RjqX7PkuLuMQG/A7n3cfj9rCEchww==",
|
||||
"_location": "/vuedraggable",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "vuedraggable@^4.1.0",
|
||||
"name": "vuedraggable",
|
||||
"escapedName": "vuedraggable",
|
||||
"rawSpec": "^4.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^4.1.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/vuedraggable/-/vuedraggable-4.1.0.tgz",
|
||||
"_shasum": "edece68adb8a4d9e06accff9dfc9040e66852270",
|
||||
"_spec": "vuedraggable@^4.1.0",
|
||||
"_where": "D:\\dev2021\\vform-next\\variant-form3-vite",
|
||||
"browserslist": [
|
||||
"> 1%",
|
||||
"last 2 versions",
|
||||
"not ie <= 8"
|
||||
],
|
||||
"bugs": {
|
||||
"url": "https://github.com/SortableJS/Vue.Draggable/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"sortablejs": "1.14.0"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "draggable component for vue",
|
||||
"devDependencies": {
|
||||
"@vue/cli-plugin-babel": "~4.5.0",
|
||||
"@vue/cli-plugin-eslint": "~4.5.0",
|
||||
"@vue/cli-plugin-unit-jest": "^4.5.4",
|
||||
"@vue/cli-service": "~4.5.0",
|
||||
"@vue/compiler-sfc": "^3.0.0",
|
||||
"@vue/eslint-config-prettier": "6.0.0",
|
||||
"@vue/server-renderer": "^3.0.0",
|
||||
"@vue/test-utils": "^2.0.0-beta.6",
|
||||
"babel-core": "7.0.0-bridge.0",
|
||||
"babel-eslint": "^10.0.1",
|
||||
"babel-jest": "^24.6.0",
|
||||
"bootstrap": "^4.3.1",
|
||||
"codecov": "^3.2.0",
|
||||
"element-plus": "^1.0.1-alpha.12",
|
||||
"eslint": "^6.7.2",
|
||||
"eslint-plugin-prettier": "^3.1.0",
|
||||
"eslint-plugin-vue": "^7.0.0-0",
|
||||
"font-awesome": "^4.7.0",
|
||||
"jquery": "^3.5.1",
|
||||
"popper.js": "^1.16.1",
|
||||
"typescript": "^4.0.3",
|
||||
"vue": "^3.0.1",
|
||||
"vue-jest": "^5.0.0-alpha.5",
|
||||
"vue-router": "^4.0.0-beta.13",
|
||||
"vuex": "4.0.0-beta.4"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"root": true,
|
||||
"env": {
|
||||
"node": true
|
||||
},
|
||||
"extends": [
|
||||
"plugin:vue/essential",
|
||||
"@vue/prettier"
|
||||
],
|
||||
"rules": {},
|
||||
"parserOptions": {
|
||||
"parser": "babel-eslint"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"dist/*.css",
|
||||
"dist/*.map",
|
||||
"dist/*.js",
|
||||
"src/*"
|
||||
],
|
||||
"homepage": "https://github.com/SortableJS/Vue.Draggable#readme",
|
||||
"keywords": [
|
||||
"vue",
|
||||
"vuejs",
|
||||
"drag",
|
||||
"and",
|
||||
"drop",
|
||||
"list",
|
||||
"Sortable.js",
|
||||
"component",
|
||||
"nested"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/vuedraggable.umd.min.js",
|
||||
"module": "dist/vuedraggable.umd.js",
|
||||
"name": "vuedraggable",
|
||||
"peerDependencies": {
|
||||
"vue": "^3.0.1"
|
||||
},
|
||||
"postcss": {
|
||||
"plugins": {
|
||||
"autoprefixer": {}
|
||||
}
|
||||
},
|
||||
"private": false,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/SortableJS/Vue.Draggable.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "vue-cli-service build --name vuedraggable --entry ./src/vuedraggable.js --target lib",
|
||||
"build:doc": "vue-cli-service build ./example/main.js --dest docs --mode development",
|
||||
"lint": "vue-cli-service lint src example",
|
||||
"prepublishOnly": "npm run lint && npm run test:unit && npm run build:doc && npm run build",
|
||||
"serve": "vue-cli-service serve ./example/main.js --open --mode local",
|
||||
"test:coverage": "vue-cli-service test:unit --coverage --verbose && codecov",
|
||||
"test:unit": "vue-cli-service test:unit --coverage"
|
||||
},
|
||||
"types": "src/vuedraggable.d.ts",
|
||||
"version": "4.1.0"
|
||||
}
|
Reference in New Issue
Block a user