@vue-dnd-kit/core 2.4.1 → 2.4.2

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.
@@ -23,7 +23,7 @@ declare function __VLS_template(): {
23
23
  toJSON: () => any;
24
24
  };
25
25
  initialOuterHTML: string;
26
- id: string | number | symbol;
26
+ id?: string | number | symbol | undefined;
27
27
  render?: Component;
28
28
  events?: {
29
29
  onSelfDragStart?: ((event: import('..').IDragEvent) => void) | undefined;
@@ -178,7 +178,7 @@ export interface IDragActivation {
178
178
  export type TCondition = 'any' | 'both';
179
179
 
180
180
  export interface IDraggableEntity extends IBaseEntity {
181
- id: string | number | symbol;
181
+ id?: string | number | symbol;
182
182
  render?: Component;
183
183
  events?: IDraggableEvents;
184
184
  payload?: TDraggablePayload;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue-dnd-kit/core",
3
- "version": "2.4.1",
3
+ "version": "2.4.2",
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",