@vue-dnd-kit/core 0.0.23 → 0.0.24-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{README.txt → README.md} +12 -7
- package/package.json +1 -1
package/{README.txt → README.md}
RENAMED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Vue Drag & Drop Library - Core Package
|
|
2
2
|
|
|
3
3
|
[](https://github.com/zizigy/vue-dnd-kit)
|
|
4
|
+
> ⚠️ **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.
|
|
4
5
|
|
|
5
6
|
<p align="center">
|
|
6
7
|
<a href="https://zizigy.github.io/vue-dnd-hooks/">
|
|
@@ -22,6 +23,16 @@
|
|
|
22
23
|
Inspired by the popular <a href="https://dndkit.com/" target="_blank">React DnD Kit</a> library, adapted for Vue.js
|
|
23
24
|
</p>
|
|
24
25
|
|
|
26
|
+
## Project Status
|
|
27
|
+
|
|
28
|
+
This project is in active development. We're working toward a stable API, but until version 1.0.0, there may be breaking changes.
|
|
29
|
+
|
|
30
|
+
Roadmap:
|
|
31
|
+
- [x] Basic drag & drop functionality
|
|
32
|
+
- [x] Complete documentation
|
|
33
|
+
- [ ] Tests
|
|
34
|
+
- [ ] Stable API (version 1.0.0)
|
|
35
|
+
|
|
25
36
|
## Features
|
|
26
37
|
|
|
27
38
|
### Core Capabilities
|
|
@@ -31,14 +42,12 @@
|
|
|
31
42
|
- Intuitive hooks-based approach
|
|
32
43
|
- Clean and declarative syntax
|
|
33
44
|
- Minimal boilerplate code
|
|
34
|
-
|
|
35
45
|
- 🎨 **Full Customization**
|
|
36
46
|
|
|
37
47
|
- Custom drag overlays
|
|
38
48
|
- Flexible styling system
|
|
39
49
|
- Animation support
|
|
40
50
|
- Custom drag handles
|
|
41
|
-
|
|
42
51
|
- 📱 **Advanced Input Support**
|
|
43
52
|
|
|
44
53
|
- Touch devices support
|
|
@@ -53,7 +62,6 @@
|
|
|
53
62
|
- Minimal re-renders
|
|
54
63
|
- Efficient DOM updates
|
|
55
64
|
- Memory leak prevention
|
|
56
|
-
|
|
57
65
|
- 🔄 **Smart Auto-scrolling**
|
|
58
66
|
|
|
59
67
|
- Smooth scroll animations
|
|
@@ -69,7 +77,6 @@
|
|
|
69
77
|
- Type inference
|
|
70
78
|
- IDE autocompletion
|
|
71
79
|
- Type-safe events
|
|
72
|
-
|
|
73
80
|
- 📐 **Layout Features**
|
|
74
81
|
|
|
75
82
|
- Grid system support
|
|
@@ -85,14 +92,12 @@
|
|
|
85
92
|
- Zone filtering
|
|
86
93
|
- Nested groups
|
|
87
94
|
- Dynamic group validation
|
|
88
|
-
|
|
89
95
|
- 📊 **Rich Events System**
|
|
90
96
|
|
|
91
97
|
- Comprehensive lifecycle events
|
|
92
98
|
- Custom event handlers
|
|
93
99
|
- Drag state tracking
|
|
94
100
|
- Position coordinates
|
|
95
|
-
|
|
96
101
|
- 🛡️ **Built-in Utilities**
|
|
97
102
|
|
|
98
103
|
- Geometry calculations
|
|
@@ -195,7 +200,7 @@ pnpm install @vue-dnd-kit/core
|
|
|
195
200
|
</style>
|
|
196
201
|
```
|
|
197
202
|
|
|
198
|
-
### Droppable.vue
|
|
203
|
+
### Droppable.vue
|
|
199
204
|
|
|
200
205
|
<sup>🧩 components/Droppable.vue</sup>
|
|
201
206
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue-dnd-kit/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.24-beta",
|
|
4
4
|
"description": "Core functionality for Vue DnD Kit - a lightweight Vue 3 library for building performant and accessible drag and drop interfaces",
|
|
5
5
|
"author": "ZiZIGY",
|
|
6
6
|
"license": "MIT",
|