@vue-dnd-kit/core 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +3 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -67,6 +67,7 @@ The library is built with flexibility as a core principle, allowing you to imple
67
67
  ### Accessibility
68
68
 
69
69
  - ♿ **Keyboard Navigation**
70
+
70
71
  - Start and control drag operations with keyboard
71
72
  - Arrow keys for movement
72
73
  - Space/Enter for selection and dropping
@@ -74,6 +75,7 @@ The library is built with flexibility as a core principle, allowing you to imple
74
75
  - Tab navigation between draggable elements
75
76
 
76
77
  - 🔍 **Screen Reader Support**
78
+
77
79
  - ARIA attributes for drag and drop operations
78
80
  - Descriptive announcements during interactions
79
81
  - Semantic HTML structure
@@ -185,7 +187,6 @@ This will make all the components and composables globally available in your app
185
187
  ```vue
186
188
  <script setup lang="ts">
187
189
  import { ref } from 'vue';
188
- import { DragOverlay } from '@vue-dnd-kit/core';
189
190
  import Draggable from './components/Draggable.vue';
190
191
  import Droppable from './components/Droppable.vue';
191
192
 
@@ -207,8 +208,6 @@ This will make all the components and composables globally available in your app
207
208
  im in drop zone
208
209
  </Draggable>
209
210
  </Droppable>
210
-
211
- <DragOverlay />
212
211
  </div>
213
212
  </template>
214
213
  ```
@@ -303,4 +302,4 @@ This will make all the components and composables globally available in your app
303
302
  ---
304
303
 
305
304
  <p align="center">🎉 Congratulations on the official release! 🎉</p>
306
- <p align="center">Made with ❤️ for the Vue.js community</p>
305
+ <p align="center">Made with ❤️ for the Vue.js community</p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue-dnd-kit/core",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
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",